/* ==========================================================================
   ESTILOS ULTRA-PREMIUM - SECÇÃO VANTAGENS (CORRIGIDO)
   ========================================================================== */
   .vantagens {
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.vantagens-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ==========================================================================
   BLOCO DA IMAGEM ESTILIZADA
   ========================================================================== */
.vantagens-imagem {
    flex: 1;
    position: relative;
}

.imagem-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    cursor: pointer;
}

.vantagens-imagem img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    display: block;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Moldura geométrica vermelha decorativa por trás da foto */
.imagem-decoracao {
    position: absolute;
    top: 25px;
    left: -25px;
    width: 100%;
    height: 100%;
    border: 3px solid #D4AF37;
    border-radius: 16px;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Correção: Efeito interativo baseado no wrapper ativo */
.imagem-wrapper:hover img {
    transform: translate(12px, -12px);
    box-shadow: -10px 25px 50px rgba(0, 0, 0, 0.18);
}

.imagem-wrapper:hover .imagem-decoracao {
    transform: translate(-12px, 12px);
    background-color: rgba(255, 30, 39, 0.02);
}

/* ==========================================================================
   CONTEÚDO E TEXTOS
   ========================================================================== */
.vantagens-conteudo {
    flex: 1.2;
}

.subtitulo-premium {
    color: #D4AF37;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.titulo-premium {
    color: #0a0a0a;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 45px;
}

.titulo-premium span {
    color: #D4AF37;
}

/* ==========================================================================
   GRELHA DE CARTÕES (VANTAGENS)
   ========================================================================== */
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vantagem-card {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Linha de design que surge no hover */
.vantagem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: #D4AF37;
    border-radius: 16px 0 0 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Contentor do Ícone */
.vantagem-card .icon-box {
    background-color: #0a0a0a;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vantagem-card .icon-box i {
    color: #ffffff;
    font-size: 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vantagem-card h3 {
    color: #0a0a0a;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.vantagem-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* Hover Otimizado nos cartões */
.vantagem-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.vantagem-card:hover::before {
    height: 100%;
}

.vantagem-card:hover h3 {
    color: #D4AF37;
}

.vantagem-card:hover .icon-box {
    background-color: #D4AF37;
    transform: scale(1.05);
    box-shadow: 0 8px 20px #D4AF37(255, 30, 39, 0.3);
}

/* ==========================================================================
   RESPONSIVIDADE (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
    .vantagens {
        padding: 80px 0;
    }
    
    .vantagens-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .vantagens-imagem, .vantagens-conteudo {
        width: 100%;
    }

    .vantagens-imagem img {
        height: 420px;
    }

    .imagem-decoracao {
        top: 20px;
        left: -20px;
    }
}

@media (max-width: 768px) {
    .titulo-premium {
        font-size: 34px;
        margin-bottom: 35px;
        text-align: center;
    }

    .subtitulo-premium {
        text-align: center;
    }

    .vantagens-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vantagem-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .vantagens {
        padding: 60px 0;
    }

    .vantagens-imagem img {
        height: 300px;
    }

    .imagem-decoracao {
        display: none; 
    }
}
