﻿/* =========================================================
   VIDA PLENA — SITE INSTITUCIONAL
   ========================================================= */

:root {

    /* Azul petróleo */
    --blue-950: #102f40;
    --blue-900: #173a4e;
    --blue-800: #20495e;
    --blue-700: #28566d;
    --blue-500: #6e91a2;
    --blue-300: #b8ccd5;
    --blue-100: #e8f0f3;
    --blue-50: #f3f7f8;

    /* Dourado */
    --gold-800: #806027;
    --gold-700: #92712f;
    --gold-500: #b49148;
    --gold-300: #d2ba83;
    --gold-100: #f5efe2;

    /* Neutros */
    --cream: #faf8f3;
    --white: #ffffff;

    --text: #26343b;
    --muted: #69777d;
    --border: #dde6e9;

    --shadow:
        0 18px 45px rgba(23, 58, 78, 0.10);

    --shadow-lg:
        0 26px 60px rgba(23, 58, 78, 0.16);

    --radius-lg: 28px;
    --radius-md: 18px;

    --container: 1380px;
}


/* =========================================================
   RESET / BASE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 100;

    background:
        rgba(255, 255, 255, 0.96);

    border-bottom:
        1px solid var(--border);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 4px 18px rgba(23, 58, 78, 0.035);
}

.header-inner {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


/* =========================================================
   MARCA — VIDA PLENA
   ========================================================= */

.brand {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;
}

.brand-logo {
    display: block;

    width: auto;
    height: 64px;

    max-width: 310px;

    object-fit: contain;
}


/* =========================================================
   NAVEGAÇÃO
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 28px;

    font-size: 0.88rem;
    font-weight: 700;

    color: var(--blue-900);
}

.main-nav a {
    position: relative;

    padding: 34px 0;

    transition:
        color 0.2s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 24px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background: var(--gold-500);

    transform: translateX(-50%);

    transition:
        width 0.2s ease;
}

.main-nav a:hover {
    color: var(--gold-700);
}

.main-nav a:hover::after {
    width: 28px;
}

/* =========================================================
   LINK INÍCIO — DESKTOP
   ========================================================= */

.nav-link-home {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-home-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0;

    font-size: 0.82em;
    line-height: 1;

    color: inherit;
}

.nav-link-home span {
    line-height: 1;
}


/* Tablet e mobile */
@media (max-width: 992px) {
    .nav-home-icon {
        display: none;
    }
}

/* =========================================================
   BOTÕES
   ========================================================= */

.btn-header,
.btn-primary,
.btn-secondary {
    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


/* Primário */

.btn-primary {
    background: var(--blue-900);
    color: var(--white);

    box-shadow:
        0 10px 24px rgba(23, 58, 78, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);

    background: var(--blue-700);

    box-shadow:
        0 14px 30px rgba(23, 58, 78, 0.24);
}

.btn-whatsapp {
    gap: 10px;
}


/* Botão do header */

.btn-header {
    background:
        linear-gradient(
            135deg,
            var(--gold-500),
            var(--gold-700)
        );

    color: var(--white);

    box-shadow:
        0 10px 24px rgba(146, 113, 47, 0.22);
}

.btn-header:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            var(--gold-700),
            var(--gold-500)
        );

    box-shadow:
        0 14px 30px rgba(146, 113, 47, 0.28);
}


/* Secundário */

.btn-secondary {
    background:
        rgba(255, 255, 255, 0.90);

    border:
        1px solid var(--border);

    color: var(--blue-900);
}

.btn-secondary:hover {
    transform: translateY(-2px);

    border-color:
        var(--blue-300);

    box-shadow: var(--shadow);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(184, 204, 213, 0.30),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #faf8f3 0%,
            #f4f7f7 48%,
            #e9f0f2 100%
        );
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(460px, 0.95fr);

    align-items: center;

    gap: clamp(48px, 5vw, 90px);
}

.hero-content {
    padding: 88px 0;
}


/* Pequena legenda */

.hero-eyebrow,
.section-heading span,
.section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--blue-700);

    font-size: 0.78rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.14em;
}

/* =========================================================
   LINHA DOURADA — LEGENDAS
   ========================================================= */

.hero-eyebrow,
.section-heading span,
.section-label {
    position: relative;

    margin-bottom: 26px;
    padding-bottom: 14px;
}


/* =========================================================
   HERO + SEÇÕES ALINHADAS À ESQUERDA
   ========================================================= */

.hero-eyebrow::after,
.section-label::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 42px;
    height: 3px;

    border-radius: 999px;

    background: var(--gold-500);
}


/* =========================================================
   SEÇÕES CENTRALIZADAS
   ========================================================= */

.section-heading span::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 42px;
    height: 3px;

    border-radius: 999px;

    background: var(--gold-500);

    transform: translateX(-50%);
}

/* Seções alinhadas à esquerda — igual ao Hero */
.section-label::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 42px;
    height: 3px;

    border-radius: 999px;

    background: var(--gold-500);

    transform: none;
}


/* Título */

.hero h1 {
    max-width: 720px;

    margin:
        0 0 26px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(3rem, 5.8vw, 5.35rem);

    line-height: 0.99;

    letter-spacing:
        -0.045em;

    color: var(--blue-900);
}


/* Texto principal */

.hero-content > p {
    max-width: 660px;

    margin:
        0 0 34px;

    font-size: 1.10rem;
    line-height: 1.65;

    color: var(--muted);
}

.hero-actions {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


/* =========================================================
   HERO — FOTO
   ========================================================= */

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo {
    position: relative;

    width:
        min(
            100%,
            680px
        );

    aspect-ratio:
        4 / 3;

    overflow: hidden;

    border-radius: 32px;

    background:
        var(--blue-100);

    box-shadow:
        var(--shadow-lg);
}

.hero-photo::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(16, 47, 64, 0.32) 0%,
            rgba(23, 58, 78, 0.06) 40%,
            transparent 68%
        );

    pointer-events: none;
}

.hero-photo > img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        center 40%;

    transition:
        transform 0.6s ease;
}

.hero-photo:hover > img {
    transform: scale(1.025);
}


/* =========================================================
   HERO — CARD GLASS VIDA PLENA
   ========================================================= */

.hero-photo-card {
    position: absolute;

    left: 22px;
    bottom: 18px;

    z-index: 3;

    width: min(80%, 440px);

    padding: 9px 16px 10px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.42);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.30),
            rgba(232, 240, 243, 0.14)
        );

    backdrop-filter:
        blur(9px) saturate(112%);

    -webkit-backdrop-filter:
        blur(9px) saturate(112%);

    box-shadow:
        0 10px 26px rgba(16, 47, 64, 0.12);
}


/* =========================================================
   CONTEÚDO
   ========================================================= */

.hero-card-content {
    position: relative;

    z-index: 2;

    width: 100%;

    padding: 0;
}

.hero-card-content::before {
    content: none;
    display: none;
}


/* =========================================================
   LOGO — CARD DO HERO
   ========================================================= */

.hero-card-brandline {
    display: flex;
    align-items: center;

    margin-bottom: 10px;
}

.hero-card-logo {
    display: block;

    width: 230px;
    max-width: 48%;

    height: auto;

    object-fit: contain;
}


.hero-photo-label {
    display: block;

    margin: 0;

    color: var(--gold-700);

    font-size: 0.68rem;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.18em;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.hero-card-content strong {
    display: block;

    margin: 0 0 4px;

    max-width: 380px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--blue-900);

    font-size: 1.16rem;
    font-weight: 700;

    line-height: 1.10;

    text-shadow: none;
       
}


/* =========================================================
   DESCRIÇÃO
   ========================================================= */

.hero-card-content p {
    max-width: 365px;

    margin: 0;

    color: #415964;

    font-size: 0.74rem;
    font-weight: 500;

    line-height: 1.35;

    text-shadow: none;
       
}


/* =========================================================
   SEÇÕES
   ========================================================= */

.section {
    padding:
        110px 0;
}

.section-soft {
    background:
        var(--cream);
}

.section-heading {
    max-width: 720px;

    margin:
        0 auto 52px;

    text-align: center;
}

.section-heading h2,
.two-columns h2,
.contact-card h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(2.2rem, 4vw, 3.5rem);

    line-height: 1.08;

    letter-spacing:
        -0.03em;

    color:
        var(--blue-900);
}


/* =========================================================
   ESPECIALIDADES
   ========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;
}


/* =========================================================
   ESPECIALIDADES — CARDS
   ========================================================= */

.service-card {
    position: relative;

    min-height: 345px;
    padding: 34px 30px 28px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background:
        linear-gradient(
            145deg,
            var(--white),
            var(--blue-50)
        );

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color: var(--gold-300);

    box-shadow:
        0 20px 42px rgba(23, 58, 78, 0.12);
}


/* =========================================================
   ÍCONE
   ========================================================= */

.service-icon {
    width: 104px;
    height: 104px;

    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
}

.service-icon img {
    display: block;

    width: 100px;
    height: 100px;

    object-fit: contain;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.service-card h3 {
    width: 100%;
    max-width: 290px;

    margin: 0 auto 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--blue-900);

    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.08;
}


/* =========================================================
   DESCRIÇÃO
   ========================================================= */

.service-card p {
    width: 100%;
    max-width: 320px;

    margin: 0 auto 22px;

    color: var(--muted);

    font-size: 0.94rem;
    line-height: 1.55;
}


/* =========================================================
   SABER MAIS
   ========================================================= */

.service-link {
    margin: auto auto 0;
    padding: 7px 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    color: var(--blue-900);

    font-size: 0.90rem;
    font-weight: 800;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.service-link i {
    color: var(--gold-500);

    font-size: 0.75rem;

    transition:
        transform 0.2s ease;
}

.service-link:hover {
    color: var(--gold-700);

    gap: 12px;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* =========================================================
   NOSSO ESPAÇO
   ========================================================= */

.two-columns {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 72px;
}

.two-columns p {
    color:
        var(--muted);

    font-size:
        1.04rem;
}

.space-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius:
        var(--radius-lg);

    background:
        var(--blue-100);

    box-shadow:
        0 20px 50px rgba(23, 58, 78, 0.14);
}

.space-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.space-image:hover img {
    transform:
        scale(1.025);
}

/* =========================================================
   PROFISSIONAL
   ========================================================= */

.professional-feature {
    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(320px, 0.90fr)
        minmax(0, 1.10fr);

    align-items: center;

    gap: 64px;
}


/* FOTO */

.professional-feature-photo {
    position: relative;

    overflow: hidden;

    aspect-ratio: 4 / 5;

    border-radius: 28px;

    background: var(--blue-100);

    box-shadow:
        0 24px 55px rgba(23, 58, 78, 0.14);
}

.professional-feature-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* CONTEÚDO */

.professional-feature-content {
    max-width: 520px;
}

.professional-feature-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold-700);

    font-size: 0.74rem;
    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.professional-feature-content h3 {
    margin: 0 0 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--blue-900);

    font-size:
        clamp(2rem, 3vw, 2.8rem);

    line-height: 1.08;
}

.professional-feature-specialty {
    margin: 0 0 24px;

    color: var(--gold-700);

    font-size: 0.95rem;
    font-weight: 700;
}

.professional-feature-content p:not(.professional-feature-specialty) {
    margin: 0 0 16px;

    color: var(--muted);

    font-size: 1rem;
    line-height: 1.7;
}

.professional-feature-content .btn-primary {
    margin-top: 14px;
}


/* =========================================================
   DEPOIMENTOS — MARCA-D'ÁGUA
   ========================================================= */

.testimonials-section::before {
    content: "";

    position: absolute;

    top: 54%;
    right: -15px;

    width: 340px;
    height: 340px;

    background-image:
        url("../img/logo/vida-plena-simbolo.png");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.045;

    transform: translateY(-50%);

    pointer-events: none;
}

/* =========================================================
   CONTATO
   ========================================================= */

.contact-section {
    padding-top:
        40px;
}

.contact-card {
    padding:
        60px;

    display: grid;

    grid-template-columns:
        1.4fr 0.6fr;

    align-items: center;

    gap: 50px;

    border-radius:
        var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            var(--blue-900),
            var(--blue-800)
        );

    color:
        var(--white);

    box-shadow:
        0 24px 55px rgba(23, 58, 78, 0.18);
}

.contact-card h2 {
    color:
        var(--white);
}

.contact-card p {
    max-width:
        680px;

    color:
        rgba(255, 255, 255, 0.76);
}

.contact-card .section-label {
    color:
        var(--gold-300);
}

.contact-actions {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.contact-card .btn-primary {
    background:
        var(--white);

    color:
        var(--blue-900);
}

.contact-card .btn-secondary {
    background:
        transparent;

    border-color:
        rgba(255, 255, 255, 0.35);

    color:
        var(--white);
}


/* =========================================================
   FOOTER — VIDA PLENA
   ========================================================= */

.site-footer {
    width: 100%;
    margin: 0;

    border-top: 4px solid var(--gold-500);

    background: var(--blue-900);
}


/* =========================================================
   ESTRUTURA
   ========================================================= */

.footer-card {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(190px, 14vw)
        minmax(0, 1fr)
        minmax(190px, 14vw);

    background: var(--white);
}


/* =========================================================
   LATERAIS AZUIS
   ========================================================= */

.footer-side {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #12394c,
            var(--blue-900)
        );
}


/* árvore como marca-d'água */

.footer-side img {
    display: block;

    width: clamp(230px, 17vw, 330px);
    height: auto;

    opacity: 0.16;

    object-fit: contain;

    pointer-events: none;

    user-select: none;
}


/* posicionamento semelhante ao desenho */

.footer-side-left img,
.footer-side-right img {
    transform: scale(1.08);
}


/* divisórias */

.footer-side-left {
    border-right:
        1px solid rgba(191, 139, 45, 0.40);
}

.footer-side-right {
    border-left:
        1px solid rgba(191, 139, 45, 0.40);
}


/* =========================================================
   ÁREA CENTRAL
   ========================================================= */

.footer-main {
    min-height: 430px;

    padding:
        44px
        clamp(36px, 5vw, 90px)
        40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 70%,
            #faf8f3 100%
        );
}


/* =========================================================
   MARCA
   ========================================================= */

.footer-brand {
    width: 100%;

    margin-bottom: 18px;

    text-align: center;
}


.footer-brand img {
    display: block;

    width: min(430px, 75%);

    height: auto;

    margin: 0 auto;
}


.footer-specialties {
    margin: 22px 0 0;

    color: var(--gold-700);

    font-size: 0.83rem;
    font-weight: 800;

    line-height: 1.5;

    letter-spacing: 0.10em;

    text-transform: uppercase;
}


.footer-specialties span {
    margin: 0 6px;

    color: var(--gold-500);
}


/* =========================================================
   FOOTER — REDES SOCIAIS
   ========================================================= */

.footer-social-block {
    margin-top: 12px;
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social-title {
    margin-bottom: 12px;

    color: var(--blue-700);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--white);

    font-size: 1.15rem;

    box-shadow:
        0 6px 18px rgba(23, 58, 78, 0.10);

    transition:
        transform 0.20s ease,
        box-shadow 0.20s ease,
        background 0.20s ease,
        color 0.20s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 22px rgba(23, 58, 78, 0.15);
}

.footer-social-link {
    color: var(--gold-500);
}


.footer-social-link.instagram:hover {
    color: #fff;
    background: #E4405F;
}


.footer-social-link.facebook:hover {
    color: #fff;
    background: #1877F2;
}

/* =========================================================
   CONTATOS
   ========================================================= */

.footer-contacts {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(
        3,
        minmax(0, 1fr)
    );

    align-items: stretch;

    margin-top: 20px;

    border-top:
        1px solid
        rgba(180, 145, 72, 0.18);
}


/* item */

.footer-contact-item {
    min-height: 118px;

    padding:
        20px
        28px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    text-align: center;

    color: var(--blue-900);

    border-right:
        1px solid
        rgba(180, 145, 72, 0.28);
}

.footer-contact-item:last-child {
    border-right: 0;
}


/* links */

a.footer-contact-item {
    transition:
        color 0.20s ease,
        transform 0.20s ease;
}


a.footer-contact-item:hover {
    color: var(--gold-700);

    transform: translateY(-3px);
}


/* ícones */

.footer-contact-item i {
    display: block;

    margin-bottom: 4px;

    color: var(--gold-700);

    font-size: 1.75rem;

    line-height: 1;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

a.footer-contact-item:hover i {
    color: var(--gold-500);

    transform: translateY(-2px);
}

.footer-contact-item span {
    max-width: 100%;

    overflow-wrap: break-word;
    word-break: normal;
}


/* endereço */

.footer-address {
    cursor: default;
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.footer-bottom {
    padding: 18px 24px;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);

    background: #0c2c3c;
}


.footer-bottom p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 0.76rem;

    text-align: center;
}



/* =========================================================
   DEPOIMENTOS
   ========================================================= */

.testimonials-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(180, 145, 72, 0.06),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 80%,
            rgba(23, 58, 78, 0.07),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #f9fbfb 0%,
            var(--blue-50) 55%,
            #f7fafb 100%
        );

    border-top:
        1px solid rgba(23, 58, 78, 0.05);

    border-bottom:
        1px solid rgba(23, 58, 78, 0.05);
}


/* Conteúdo acima da marca-d'água */

.testimonials-section > .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   MARCA-D'ÁGUA
   ========================================================= */

.testimonials-section::before {
    content: "";

    position: absolute;

    top: 54%;
    right: 4%;

    width: 300px;
    height: 300px;

    background:
        url("../img/logo/vida-plena-simbolo.png")
        center / contain
        no-repeat;

    opacity: 0.05;

    transform: translateY(-50%);

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   INTRODUÇÃO
   ========================================================= */

.testimonials-intro {
    max-width: 650px;

    margin:
        18px auto
        0;

    color: var(--muted);

    font-size: 1rem;
    line-height: 1.7;

    text-align: center;
}


/* =========================================================
   GRID
   ========================================================= */

.testimonials-grid {
    margin-top: 58px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;
}


/* =========================================================
   CARD
   ========================================================= */

.testimonial-card {
    position: relative;

    min-height: 340px;

    padding:
        34px
        30px
        30px;

    display: flex;
    flex-direction: column;

    border:
        1px solid var(--border);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 16px 40px
        rgba(23, 58, 78, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.testimonial-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(180, 145, 72, 0.50);

    box-shadow:
        0 24px 50px
        rgba(23, 58, 78, 0.12);
}


/* Card central em destaque */

.testimonial-card:nth-child(2) {
    transform: translateY(-10px);

    border-color:
        rgba(180, 145, 72, 0.32);

    box-shadow:
        0 24px 50px
        rgba(23, 58, 78, 0.10);
}


.testimonial-card:nth-child(2):hover {
    transform: translateY(-16px);
}


/* =========================================================
   ASPAS
   ========================================================= */

.testimonial-quote {
    position: absolute;

    top: 24px;
    right: 28px;

    color:
        rgba(180, 145, 72, 0.20);

    font-size: 3.2rem;
    line-height: 1;
}


/* =========================================================
   ESTRELAS
   ========================================================= */

.testimonial-stars {
    margin-bottom: 24px;

    display: flex;

    gap: 6px;

    color: var(--gold-500);

    font-size: 0.88rem;
}


/* =========================================================
   TEXTO
   ========================================================= */

.testimonial-card blockquote {
    position: relative;

    z-index: 1;

    margin:
        0
        0
        30px;

    color: var(--blue-900);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.08rem;
    line-height: 1.7;

    font-style: normal;
}


/* =========================================================
   CLIENTE
   ========================================================= */

.testimonial-client {
    margin-top: auto;

    padding-top: 22px;

    display: flex;
    align-items: center;

    gap: 14px;

    border-top:
        1px solid var(--border);
}


.testimonial-avatar {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(180, 145, 72, 0.38);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--blue-50),
            var(--white)
        );

    color: var(--gold-700);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.15rem;
    font-weight: 700;
}


.testimonial-client strong {
    display: block;

    margin-bottom: 3px;

    color: var(--blue-900);

    font-size: 0.96rem;
    font-weight: 800;
}


.testimonial-client span {
    display: block;

    color: var(--muted);

    font-size: 0.78rem;
}

/* =========================================================
   DESKTOP GRANDE
   ========================================================= */

@media (min-width: 1800px) {

    /* HERO */

    .hero {
        min-height: 760px;
    }

    .hero h1 {
        max-width: 760px;
    }

    .hero-photo {
        width: min(100%, 700px);
    }


    /* FOOTER */

    .footer-card {
        grid-template-columns:
            minmax(210px, 14vw)
            minmax(0, 1fr)
            minmax(210px, 14vw);
    }

    .footer-main {
        min-height: 440px;

        padding:
            44px
            clamp(60px, 5vw, 100px)
            42px;
    }

    .footer-side {
        min-height: 440px;
    }

    .footer-side img {
        width: clamp(250px, 17vw, 340px);
    }

    .footer-brand img {
        width: min(450px, 72%);
    }

    .footer-contacts {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 0;
    }
}

/* =========================================================
   MENU MOBILE
   ========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.92);

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.menu-toggle:hover {
    border-color: var(--gold-500);
    background: var(--white);
}

.menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    border-radius: 999px;

    background: var(--blue-900);

    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    /* =====================================================
       HEADER
       ===================================================== */

    .header-inner {
        position: relative;

        min-height: 82px;

        gap: 16px;
        }

        .brand-logo {
            height: 56px;
            max-width: 260px;
        }

        .btn-header {
            margin-left: auto;
        }

        .menu-toggle {
            display: inline-flex;

            flex-shrink: 0;
        }

    .main-nav {
        position: absolute;

        top: calc(100% + 1px);
        left: 50%;
        right: auto;

        width: 100vw;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px;

        background: #ffffff;

        border:
            1px solid var(--border);

        border-top: 0;

        border-radius:
            0
            0
            18px
            18px;

        box-shadow:
            0 18px 40px rgba(23, 58, 78, 0.12);

        opacity: 0;
        visibility: hidden;

        transform:
            translate(-50%, -10px);

        pointer-events: none;

        transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            visibility 0.2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;

        transform:
             translate(-50%, 0);

        pointer-events: auto;
    }

    .main-nav a {
        width: 100%;

        padding: 14px 16px;

        border-radius: 10px;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover {
        background:
            var(--blue-100);
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /* =====================================================
       ESTRUTURAS GERAIS
       ===================================================== */

    .hero-grid,
    .two-columns,
    .contact-card {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .hero-grid {
        gap: 30px;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 70px 0 20px;
    }

    .hero-visual {
        padding-bottom: 80px;
    }

    .hero-photo {
        width: min(100%, 650px);
    }


    /* =====================================================
       ESPECIALIDADES
       ===================================================== */

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* =====================================================
       PROFISSIONAL
       ===================================================== */

    .professional-feature {
        grid-template-columns: 1fr;

        max-width: 650px;

        gap: 38px;
    }

    .professional-feature-photo {
        width: 100%;
        max-width: 460px;

        margin: 0 auto;
    }

    .professional-feature-content {
        max-width: none;

        text-align: center;
    }

    /* =====================================================
    DEPOIMENTOS
    ===================================================== */

    .testimonials-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .testimonials-section::before {
        right: -40px;

        width: 250px;
        height: 250px;
    }


/* =========================================================
   INTRODUÇÃO
   ========================================================= */

.testimonials-intro {
    max-width: 650px;

    margin:
        18px auto
        0;

    color: var(--muted);

    font-size: 1rem;

    line-height: 1.7;

    text-align: center;
}


/* =========================================================
   GRID
   ========================================================= */

.testimonials-grid {
    margin-top: 48px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;
}


/* =========================================================
   CARD
   ========================================================= */

.testimonial-card {
    position: relative;

    min-height: 340px;

    padding:
        34px
        30px
        30px;

    display: flex;
    flex-direction: column;

    border:
        1px solid var(--border);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.92);

    box-shadow:
        0 16px 40px
        rgba(23, 58, 78, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.testimonial-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(191, 139, 45, 0.45);

    box-shadow:
        0 24px 50px
        rgba(23, 58, 78, 0.11);
}


/* =========================================================
   ASPAS
   ========================================================= */

.testimonial-quote {
    position: absolute;

    top: 26px;
    right: 28px;

    color:
        rgba(191, 139, 45, 0.18);

    font-size: 3.2rem;

    line-height: 1;
}


/* =========================================================
   ESTRELAS
   ========================================================= */

.testimonial-stars {
    margin-bottom: 22px;

    display: flex;

    gap: 5px;

    color: var(--gold-500);

    font-size: 0.84rem;
}


/* =========================================================
   TEXTO
   ========================================================= */

.testimonial-card blockquote {
    position: relative;

    z-index: 1;

    margin:
        0
        0
        30px;

    color: var(--blue-900);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.08rem;

    line-height: 1.7;

    font-style: normal;
}


/* =========================================================
   CLIENTE
   ========================================================= */

.testimonial-client {
    margin-top: auto;

    padding-top: 22px;

    display: flex;
    align-items: center;

    gap: 14px;

    border-top:
        1px solid var(--border);
}


.testimonial-avatar {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(191, 139, 45, 0.35);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--blue-50),
            #ffffff
        );

    color: var(--gold-700);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.15rem;
    font-weight: 700;
}


.testimonial-client strong {
    display: block;

    margin-bottom: 3px;

    color: var(--blue-900);

    font-size: 0.94rem;
}


.testimonial-client span {
    display: block;

    color: var(--muted);

    font-size: 0.78rem;
}


 /* =====================================================
       DEPOIMENTO
  ===================================================== */
.testimonials-grid {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}


    /* =====================================================
       FOOTER
       ===================================================== */

    .footer-card {
        grid-template-columns:
            105px
            minmax(0, 1fr)
            105px;
    }

    .footer-side {
        min-height: 470px;

        padding: 14px;
    }

    .footer-side img {
        width: 180px;

        opacity: 0.16;
    }

    .footer-side-left img {
        transform:
            translateX(-28%)
            scale(1.10);
    }

    .footer-side-right img {
        transform:
            translateX(28%)
            scale(1.10);
    }

    .footer-main {
        min-height: 470px;

        padding:
            38px
            28px;
    }

    .footer-brand {
        margin-bottom: 32px;
    }

    .footer-brand img {
        width: min(360px, 82%);
    }

    .footer-specialties {
        margin-top: 18px;

        font-size: 0.75rem;

        line-height: 1.55;
    }

    .footer-contacts {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 0;
    }

    .footer-contact-item {
        min-height: 105px;

        padding:
            18px
            16px;

        justify-content: center;
    }

    /*
       Item 3 começa uma nova linha,
       portanto não deve ter borda esquerda.
    */
    .footer-contact-item:nth-child(3) {
        border-left: 0;
    }

    /*
       Segunda linha ganha separação horizontal.
    */
    .footer-contact-item:nth-child(3) {
        border-right: 0;

        border-top:
            1px solid
            rgba(191, 139, 45, 0.30);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    /* =====================================================
       HEADER — MOBILE
       ===================================================== */

    .header-inner {
        min-height: 68px;

        padding-left: 18px;
        padding-right: 18px;

        justify-content: center;

        gap: 28px;
    }

    .brand-logo {
        height: 48px;
        max-width: 230px;
    }

    .btn-header {
        display: none;
    }

    .main-nav {
        padding:
            8px
            18px
            12px;

        border-left: 0;
        border-right: 0;

        border-radius:
            0
            0
            16px
            16px;

        background: #ffffff;

        box-shadow:
            0 14px 30px rgba(23, 58, 78, 0.10);
    }

    .main-nav a {
        width: 100%;

        padding:
            11px
            16px;

        font-size: 0.88rem;
        line-height: 1.25;
    }

    /* =====================================================
       HERO — CARD GLASS
       ===================================================== */

    .hero-photo-card {
        left: 12px;
        right: 12px;
        bottom: 12px;

        width: auto;

        padding: 10px 12px;

        border-radius: 16px;

        background:
            linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.38),
                rgba(235, 242, 245, 0.22)
            );

        backdrop-filter:
            blur(7px)
            saturate(108%);

        -webkit-backdrop-filter:
            blur(7px)
            saturate(108%);
    }

    .hero-card-content {
        padding: 0;
    }

    .hero-card-brandline {
        gap: 7px;

        margin-bottom: 4px;
    }

    .hero-card-symbol {
        width: 32px;
        height: 32px;

        flex-basis: 32px;
    }

    .hero-photo-label {
        font-size: 0.60rem;
    }

    .hero-card-content strong {
        max-width: none;

        font-size: 1.02rem;

        line-height: 1.10;
    }

    .hero-card-content p {
        max-width: none;

        font-size: 0.72rem;

        line-height: 1.35;
    }


    /* =====================================================
       ESPECIALIDADES
       ===================================================== */

    .services-grid {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       PROFISSIONAL
       ===================================================== */

    .professional-feature {
        gap: 30px;
    }

    .professional-feature-photo {
        aspect-ratio: 4 / 5;

        border-radius: 22px;
    }

    .professional-feature-content h3 {
        font-size: 2rem;
    }

    .professional-feature-content .btn-primary {
        width: 100%;
    }


    /* =====================================================
    DEPOIMENTOS
    ===================================================== */

    .testimonials-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .testimonial-card {
        min-height: 0;

        padding:
            30px
            24px
            26px;
    }

    .testimonial-card blockquote {
        font-size: 1rem;
    }

    .testimonials-section::before {
        right: -70px;

        width: 210px;
        height: 210px;

        opacity: 0.04;
    }

    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(2):hover {
        transform: none;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .testimonials-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .testimonial-card {
        min-height: 0;

        padding:
            30px
            24px
            26px;
    }

    .testimonial-card blockquote {
        font-size: 1rem;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .site-footer {
        border-top-width: 3px;
    }

    .footer-card {
        grid-template-columns: 1fr;
    }


    /* Marca-d'água superior */

    .footer-side {
        min-height: 90px;

        padding: 0;
    }

    .footer-side-left {
        border-right: 0;

        border-bottom:
            1px solid rgba(191, 139, 45, 0.35);
    }

    .footer-side-right {
        min-height: 36px;

        border-left: 0;

        border-top:
            1px solid rgba(191, 139, 45, 0.35);
    }

    .footer-side img {
        width: 150px;

        opacity: 0.16;
    }

    .footer-side-left img,
    .footer-side-right img {
        transform: none;
    }

    /*
       No mobile a faixa inferior fica apenas decorativa.
    */
    .footer-side-right img {
        display: none;
    }


    /* Centro */

    .footer-main {
        min-height: 0;

        padding:
            36px
            24px;
    }

    .footer-brand {
        margin-bottom: 28px;
    }

    .footer-brand img {
        width: min(300px, 90%);
    }

    .footer-specialties {
        margin-top: 18px;

        font-size: 0.70rem;

        line-height: 1.65;

        letter-spacing: 0.08em;
    }


    /* Contatos */

    .footer-contacts {
        grid-template-columns: 1fr;
    }

    .footer-contact-item {
        min-height: 0;

        padding:
            20px
            8px;
    }

    .footer-contact-item + .footer-contact-item {

        border-top:
            1px solid rgba(191, 139, 45, 0.28);
    }

    .footer-contact-item i {
        font-size: 1.55rem;
    }

    .footer-contact-item span {
        font-size: 0.86rem;
    }


    /* Copyright */

    .footer-bottom {
        padding:
            16px
            20px;
    }

    .footer-bottom p {
        font-size: 0.72rem;

        line-height: 1.5;
    }
}

/* =========================================================
   FOOTER — PRIVACIDADE
   ========================================================= */

.footer-privacy-link {
    display: inline-flex;
    align-items: center;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.88rem;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.2s ease;
}

.footer-privacy-link:hover {
    color: var(--gold-500);
}

/* =========================================================
   ASSINATURA INSTITUCIONAL — ATIDOR
   ========================================================= */

/* =========================================================
   ASSINATURA INSTITUCIONAL — ATIDOR
   ========================================================= */

.footer-atidor {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 40px;
    min-height: 0;
    padding: 3px 16px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-atidor__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    height: 100%;

    text-decoration: none;
    opacity: 0.72;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.footer-atidor__link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-atidor__logo {
    display: block;

    width: auto;
    height: 48px;

    object-fit: contain;
}

.footer-atidor__external {
    font-size: 0.72rem;
    line-height: 1;

    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 576px) {
    .footer-atidor {
        height: 36px;
        padding: 2px 12px;
    }

    .footer-atidor__logo {
        height: 25px;
    }
}