/* ============================================================
   VARIÁVEIS & RESET
============================================================ */
:root {
    --primary: #124406;
    --primary-dark: #0a2d03;
    --gold: #C9A84C;
    --gold-light: #FCF6BA;
    --gold-dark: #B38728;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728);
    --white: #ffffff;
    --off-white: #f7f5f0;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --border: #e0ddd6;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.14);
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* Aller é a fonte preferencial; Lato é o fallback funcional via Google Fonts */
    font-family: 'Aller', 'Lato', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Aller', 'Lato', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================================
   UTILITÁRIOS
============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 17px;
    max-width: 580px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.75;
}

/* Fileira dourada decorativa sob títulos */
.gold-line {
    width: 64px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 14px auto 22px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: 'Aller', 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(18, 68, 6, 0.3);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--primary);
    border: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #20bf5c;
    border-color: #20bf5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ============================================================
   HEADER
============================================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 68, 6, 0.0);
    padding: 20px 0;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

/* Header escurece ao rolar */
#header.scrolled {
    background: var(--primary);
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* No mobile, header sempre verde */
@media (max-width: 768px) {
    #header {
        background: var(--primary) !important;
        padding: 14px 0 !important;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-img--footer {
    height: 58px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 42px;
    }
}

/* Links de navegação desktop */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 400;
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* CTA do header (desktop) */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: var(--primary);
    font-family: 'Aller', 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
}

/* Botão hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Drawer mobile */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 28px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.25);
    z-index: 1050;
    transition: right 0.35s ease;
    overflow-y: auto;
}

.nav-drawer.open {
    right: 0;
}

.nav-drawer a {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    transition: color 0.2s;
}

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

.nav-drawer .drawer-cta {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: var(--radius);
}

/* Overlay quando drawer aberto */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-overlay.visible {
    opacity: 1;
    pointer-events: all;
}


/* ============================================================
   HERO
============================================================ */
#inicio {
    min-height: 100vh;
    background: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Padrão geométrico sutil de fundo */
#inicio::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 55%, rgba(201, 168, 76, 0.09) 0%, transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 45%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 150px 0 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px 40px;
}

.hero-text {
    flex: 1;
    max-width: 680px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Garante que nada escape */
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: fadeInHalf 1.5s ease-out;

    /* Recorte de 100px no topo e no bottom */
    clip-path: inset(100px 0 100px 0);
    margin-top: -150px;
    margin-bottom: -200px;

    /* Degradê de transparência na base (150px visíveis) */
    /* Como há um clip de 100px, começamos o transparente no ponto 100px para alinhar com a borda visível */
    -webkit-mask-image: linear-gradient(to top, transparent 200px, black 250px);
    mask-image: linear-gradient(to top, transparent 200px, black 250px);
}

@keyframes fadeInHalf {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.13);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-headline {
    font-size: clamp(36px, 5.5vw, 62px);
    color: var(--white);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.12;
}

.hero-headline span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 44px;
    max-width: 540px;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px;
}

/* Números de prova social */
.hero-stats {
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 38px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 5px;
}

/* Cards flutuantes decorativos (desktop) */
.hero-float-card {
    position: absolute;
    z-index: 3;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-float-card.card-1 {
    right: 7%;
    bottom: 18%;
    animation: floatCard 3.5s ease-in-out infinite;
}

.hero-float-card.card-2 {
    right: 30%;
    top: 81%;
    animation: floatCard 3.5s ease-in-out infinite 1.8s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-icon {
    width: 46px;
    height: 46px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.float-text strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
}

.float-text span {
    font-size: 12px;
    color: var(--text-muted);
}


/* ============================================================
   SERVIÇOS
============================================================ */
#servicos {
    padding: 100px 0;
    background: var(--white);
}

#servicos .section-title {
    color: var(--primary);
}

#servicos .section-subtitle {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* Barra dourada no topo ao hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.13), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.service-icon i {
    font-size: 27px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 19px;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}


/* ============================================================
   ESPECIALIDADES
============================================================ */
#especialidades {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

/* Padrão de fundo sutil */
#especialidades::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 60%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

#especialidades .section-title {
    color: var(--white);
}

#especialidades .section-subtitle {
    color: rgba(255, 255, 255, 0.68);
}

/* Grid de cards de especialidade */
.esp-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.esp-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

/* Linha dourada inferior ao hover */
.esp-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.esp-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.esp-card:hover::after {
    transform: scaleX(1);
}

/* Ícone da especialidade */
.esp-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.esp-card:hover .esp-icon-wrap {
    background: rgba(201, 168, 76, 0.2);
}

.esp-icon-wrap i {
    font-size: 28px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.esp-body {
    flex: 1;
}

.esp-card h3 {
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.esp-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

/* Tag "Especialidade" */
.esp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-top: 4px;
    white-space: nowrap;
}

/* CTA dentro da seção */
.esp-cta-row {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 56px;
}

.esp-cta-row p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    margin-bottom: 20px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .esp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .esp-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
#depoimentos {
    padding: 100px 0;
    background: var(--primary);
    overflow: hidden;
}

#depoimentos .section-title {
    color: var(--white);
}

#depoimentos .section-subtitle {
    color: rgba(255, 255, 255, 0.68);
}

.swiper {
    padding-bottom: 56px !important;
}

.swiper-slide {
    height: auto !important;
    display: flex;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 34px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    position: absolute;
    top: 34px;
    right: 34px;
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 13px;
}

.testimonial-quote {
    display: block;
    font-size: 72px;
    line-height: 0.75;
    color: var(--gold);
    font-family: Georgia, serif;
    margin-bottom: 18px;
    opacity: 0.75;
}

.testimonial-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 30px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.author-role {
    font-size: 12px;
    color: var(--gold);
    margin-top: 3px;
}

/* Paginação Swiper customizada */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.35) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 22px !important;
    border-radius: 4px !important;
}


/* ============================================================
   FAQ
============================================================ */
#faq {
    padding: 100px 0;
    background: var(--off-white);
}

#faq .section-title {
    color: var(--primary);
}

#faq .section-subtitle {
    color: var(--text-muted);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item.active {
    box-shadow: 0 4px 20px rgba(18, 68, 6, 0.09);
    border-color: rgba(18, 68, 6, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 16px;
    color: var(--primary);
    font-weight: 700;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s;
}

.faq-toggle-icon i {
    font-size: 13px;
    color: var(--primary);
    transition: transform 0.35s;
}

.faq-item.active .faq-toggle-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 26px 24px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
}


/* ============================================================
   CTA / CONTATO
============================================================ */
#contato {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

#contato::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content .section-title {
    color: var(--white);
    font-size: clamp(28px, 4.5vw, 46px);
}

.contact-content .contact-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    margin: 20px 0 50px;
    line-height: 1.75;
}

.contact-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
}

.contact-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
}

.contact-info-item i {
    font-size: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================================
   FOOTER
============================================================ */
footer {
    background: var(--primary-dark);
    padding: 64px 0 24px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 52px;
}

.footer-desc {
    margin-top: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 22px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 15px;
    margin-top: 1px;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}


/* ============================================================
   BOTÃO WHATSAPP FLUTUANTE
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 990;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulseWA 2.5s infinite;
}

.whatsapp-float:hover {
    background: #20bf5c;
    transform: scale(1.1);
    animation: none;
}

.whatsapp-float i {
    font-size: 30px;
    color: var(--white);
}

@keyframes pulseWA {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 36px rgba(37, 211, 102, 0.75), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}


/* ============================================================
   ANIMAÇÕES DE ENTRADA (Intersection Observer)
============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(1) {
    transition-delay: 0.05s;
}

.fade-up:nth-child(2) {
    transition-delay: 0.15s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.25s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.35s;
}

.fade-up:nth-child(5) {
    transition-delay: 0.45s;
}

.fade-up:nth-child(6) {
    transition-delay: 0.55s;
}


/* ============================================================
   RESPONSIVIDADE
============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid>*:first-child {
        grid-column: 1 / -1;
    }

    .hero-float-card.card-2 {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .nav-links,
    .header-cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 120px 0 80px;
        max-width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image img {
        max-width: 90%;
        /* Ajuste responsivo para o recorte e degradê */
        clip-path: inset(50px 0 50px 0);
        margin-top: -50px;
        margin-bottom: -60px;
        -webkit-mask-image: linear-gradient(to top, transparent 50px, black 150px);
        mask-image: linear-gradient(to top, transparent 50px, black 150px);
    }

    .hero-float-card {
        display: none;
    }

    .testimonial-card {
        padding: 30px 22px;
    }

    .hero-stats {
        gap: 30px 20px;
        justify-content: center;
    }

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

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

/* Mobile pequeno */
@media (max-width: 480px) {

    .hero-ctas,
    .contact-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn,
    .contact-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-info-row {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
}