/* ================= VARIÁVEIS DE TEMA ================= */
:root {
    --color-primary: #12A5A5; /* Verde-água IF Saúde */
    --color-primary-dark: #0D8282;
    --color-secondary: #FDFCF0; /* Creme / Off-white */
    --color-text-dark: #1F2937;
    --color-text-light: #F9FAFB;
    --font-main: 'Montserrat', sans-serif;
    --transition-default: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ================= RESET BÁSICO E UTILITÁRIOS ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    background-color: var(--color-secondary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ================= BOTÕES PREMIUM E EFEITOS ================= */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: -1;
    transition: all 0.7s ease;
}

.btn:hover::before {
    left: 200%;
    transition: all 0.7s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-text-light);
    box-shadow: 0 8px 25px rgba(18, 165, 165, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(18, 165, 165, 0.5);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(18, 165, 165, 0.5), inset 0 2px 2px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 28px;
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: 0 8px 20px rgba(18, 165, 165, 0.3);
}

.pulse-glow {
    animation: pulseGlowPremium 2.5s infinite;
}

@keyframes pulseGlowPremium {
    0% { box-shadow: 0 0 0 0 rgba(18, 165, 165, 0.6), inset 0 2px 2px rgba(255, 255, 255, 0.2); }
    70% { box-shadow: 0 0 0 20px rgba(18, 165, 165, 0), inset 0 2px 2px rgba(255, 255, 255, 0.2); }
    100% { box-shadow: 0 0 0 0 rgba(18, 165, 165, 0), inset 0 2px 2px rgba(255, 255, 255, 0.2); }
}

/* ================= HEADER E MENU MOBILE (BLINDADO SVG) ================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000; /* <--- AQUI ESTÁ A MÁGICA: Passamos de 9990 para 10000 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.menu-toggle, .menu-close, .menu-overlay {
    display: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        color: var(--color-text-dark);
        cursor: pointer;
        padding: 0;
        margin: 0;
        z-index: 9991;
    }

    .menu-toggle svg {
        width: 32px;
        height: 32px;
    }

    .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 9995;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: #FFFFFF;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 40px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 9999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        color: var(--color-text-dark);
        cursor: pointer;
        padding: 0;
    }

    .menu-close svg {
        width: 28px;
        height: 28px;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-bottom: 30px;
    }

    .nav-link {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #F3F4F6;
    }

    .nav-cta {
        width: 100%;
        margin-top: auto;
    }

    .nav-cta .btn {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 1.1rem;
        display: block;
    }

    body.menu-open {
        overflow: hidden !important;
        touch-action: none;
    }
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 60px;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: zoomBg 20s infinite alternate linear;
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 130, 130, 0.85) 0%, rgba(17, 24, 39, 0.95) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    color: var(--color-text-light);
}

.headline {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.headline .highlight { color: #48D1D1; }

.subheadline {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #E5E7EB;
}

.opacity-70 {
    opacity: 0.7;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 9999;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

.authority-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge .check {
    color: #48D1D1;
    font-size: 1.1rem;
    background: rgba(72, 209, 209, 0.1);
    padding: 4px;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .headline { font-size: 2.8rem; }
    .hero-section { padding-top: 120px; }
}

@media (max-width: 768px) {
    .hero-section { padding-top: 110px; }
    .headline { font-size: 2.1rem; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .hero-buttons .btn { width: 100%; display: flex; justify-content: center; align-items: center; }
}

/* ================= SEÇÃO: O PROBLEMA ================= */
.problem-section {
    padding: 100px 0;
    background-color: #FFFFFF; 
    position: relative;
    z-index: 10;
    overflow: visible;
    visibility: visible !important;
    opacity: 1 !important;
}

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title span { color: #E63946; }
.section-subtitle { font-size: 1.15rem; color: #4B5563; line-height: 1.7; }
.section-subtitle strong { color: var(--color-primary-dark); }

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.column-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-text-dark);
}

.warning-text { color: #E63946; }

.custom-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--color-secondary);
    padding: 18px 25px;
    border-radius: 12px;
    border-left: 4px solid #9CA3AF;
    transition: var(--transition-default);
}

.list-item:hover {
    transform: translateX(10px);
    border-color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.list-item p { font-size: 1.05rem; font-weight: 600; color: var(--color-text-dark); margin: 0; }
.icon-cross { color: #6B7280; font-size: 1.2rem; font-weight: bold; }

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.danger-card {
    background: #FFFFFF;
    border: 1px solid #FEE2E2;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.05);
    transition: var(--transition-default);
    position: relative;
    overflow: hidden;
}

.danger-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #E63946;
    transition: var(--transition-default);
}

.danger-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(230, 57, 70, 0.12); }
.danger-card:hover::before { width: 6px; }

.card-icon {
    font-size: 1.8rem;
    color: #E63946;
    margin-bottom: 15px;
    background: #FEF2F2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.danger-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--color-text-dark); margin-bottom: 10px; }
.danger-card p { font-size: 0.95rem; color: #4B5563; line-height: 1.5; }

@media (max-width: 992px) {
    .problem-grid { grid-template-columns: 1fr; gap: 50px; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .problem-section { padding: 70px 0; }
    .section-title { font-size: 1.9rem; }
    .cards-grid { grid-template-columns: 1fr; }
}

/* ================= SEÇÃO: A SOLUÇÃO ================= */
.solution-section {
    padding: 100px 0;
    background-color: var(--color-secondary);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.subtitle-badge {
    display: inline-block;
    background: rgba(18, 165, 165, 0.1);
    color: var(--color-primary-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.solution-content .section-title { text-align: left; margin-bottom: 25px; }
.solution-content .section-title span { color: var(--color-primary); }
.solution-desc { font-size: 1.1rem; color: #4B5563; line-height: 1.8; margin-bottom: 15px; }
.solution-desc strong { color: var(--color-text-dark); }

.solution-checklist {
    list-style: none;
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.solution-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition-default);
    border: 1px solid transparent;
}

.solution-checklist li:hover {
    transform: translateX(10px);
    border-color: rgba(18, 165, 165, 0.3);
    box-shadow: 0 8px 25px rgba(18, 165, 165, 0.1);
}

.check-circle {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon { color: #FFFFFF; font-size: 0.9rem; }
.solution-checklist p { font-weight: 600; color: var(--color-text-dark); font-size: 1.05rem; margin: 0; }
.solution-closing { margin-top: 20px; }
.closing-highlight { font-size: 1.3rem; font-weight: 800; color: var(--color-primary-dark); border-bottom: 3px solid var(--color-primary); padding-bottom: 2px; }

.solution-image-wrapper { position: relative; border-radius: 20px; z-index: 1; }
.solution-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--color-primary);
    border-radius: 20px;
    z-index: -1;
}

.solution-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.floating-glass-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.floating-glass-badge .badge-icon { font-size: 2.2rem; }
.floating-glass-badge .badge-text { display: flex; flex-direction: column; }
.badge-title { font-size: 1rem; font-weight: 800; color: var(--color-text-dark); }
.badge-sub { font-size: 0.85rem; font-weight: 600; color: var(--color-primary); }

@media (max-width: 992px) {
    .solution-grid { grid-template-columns: 1fr; gap: 60px; }
    .solution-content .section-title { text-align: center; }
    .subtitle-badge { display: table; margin: 0 auto 20px auto; }
    .solution-desc { text-align: center; }
    .solution-closing { text-align: center; }
    .floating-glass-badge { right: 20px; bottom: -20px; }
}

@media (max-width: 768px) {
    .solution-section { padding: 70px 0; }
    .solution-content .section-title { font-size: 2rem; }
    .floating-glass-badge { right: 50%; transform: translateX(50%); bottom: -30px; width: 85%; justify-content: center; }
}

/* ================= SEÇÃO: O QUE SUA EMPRESA GANHA ================= */
.gains-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.gains-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.gains-header { text-align: center; max-width: 800px; margin: 0 auto 70px auto; position: relative; z-index: 2; }

.premium-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.text-light { color: #FFFFFF !important; font-size: 2.8rem; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.5px; }
.text-light span { color: #FDFCF0; border-bottom: 2px dashed rgba(253, 252, 240, 0.5); }
.text-light-muted { color: rgba(255, 255, 255, 0.85) !important; font-size: 1.15rem; }

.gains-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; position: relative; z-index: 2; }

.gain-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.gain-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gain-icon-box {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0.9;
    visibility: visible;
    transform: scale(1) rotate(0deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gain-icon-box svg { width: 32px; height: 32px; }
.gain-icon-box svg path { fill: #FFFFFF; transition: fill 0.4s ease; }

.gain-card:hover .gain-icon-box {
    opacity: 1;
    background: #FFFFFF;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #FFFFFF;
}

.gain-card:hover .gain-icon-box svg path { fill: var(--color-primary-dark); }

.gain-text { max-width: 80%; }
.gain-text h3 { color: #FFFFFF; font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.3px; transition: transform 0.3s ease; }
.gain-text p { color: rgba(255, 255, 255, 0.85); line-height: 1.7; font-size: 1.05rem; font-weight: 400; }
.gain-card:hover .gain-text h3 { transform: translateX(5px); }

@media (max-width: 992px) {
    .gains-grid { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
    .text-light { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    .gains-section { padding: 80px 0; }
    .text-light { font-size: 2rem; }
    .gain-card { padding: 35px 30px; }
    .gain-text { max-width: 100%; margin-top: 40px; }
    .gain-icon-box { top: 25px; right: 25px; width: 55px; height: 55px; background: #FFFFFF; opacity: 1; }
    .gain-icon-box svg { width: 26px; height: 26px; }
    .gain-icon-box svg path { fill: var(--color-primary-dark); }
}

/* ================= SEÇÃO: SERVIÇOS (CARDS CENTRALIZADOS) ================= */
.services-section {
    padding: 120px 0;
    background-color: var(--color-secondary); 
    position: relative;
    z-index: 10;
}

.services-header { text-align: center; max-width: 800px; margin: 0 auto 70px auto; }

.brand-badge-outline {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.services-header .section-title { color: var(--color-text-dark); font-size: 2.8rem; line-height: 1.2; letter-spacing: -0.5px; }
.services-header .section-title span { color: var(--color-primary); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }

.service-card {
    background-color: var(--color-text-dark); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); 
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 150px;
    background: radial-gradient(ellipse at center, rgba(18, 165, 165, 0.6) 0%, transparent 70%);
    filter: blur(30px);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.service-card:hover { transform: translateY(-8px); border-color: rgba(18, 165, 165, 0.3); box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2); }
.service-card:hover::after { bottom: -50px; opacity: 1; }
.service-card.active::after { bottom: -20px; opacity: 0.4; }

.service-header { display: flex; justify-content: center; width: 100%; position: relative; z-index: 2; }
.service-center-group { display: flex; align-items: center; gap: 15px; }
.service-icon-dotted { color: var(--color-primary); display: flex; align-items: center; }
.service-icon-dotted svg { width: 38px; height: 38px; transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.service-card.active .service-icon-dotted svg { transform: rotate(90deg); }

.service-title-block { display: flex; flex-direction: column; text-align: left; }
.pre-title { font-size: 0.75rem; font-weight: 700; color: rgba(255, 255, 255, 0.6); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }
.service-title-block h3 { font-size: 1.5rem; font-weight: 700; color: #FFFFFF; line-height: 1.2; letter-spacing: -0.5px; }

.service-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; z-index: 2; margin-top: 0; width: 100%; }
.service-card.active .service-body { grid-template-rows: 1fr; margin-top: 25px; }
.service-content { overflow: hidden; display: flex; justify-content: center; }

.service-list { list-style: none; padding: 0; display: inline-flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.service-list li { font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); line-height: 1.4; position: relative; }

@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .services-section { padding: 80px 0; } .services-grid { grid-template-columns: 1fr; } .service-card { min-height: 220px; } }

/* ================= SEÇÃO: DIFERENCIAIS (STICKY LAYOUT) ================= */
.differentials-section { padding: 120px 0; background-color: #FFFFFF; position: relative; z-index: 10; }
.diff-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.diff-left { position: relative; height: 100%; }
.diff-sticky-content { position: sticky; top: 140px; }
.diff-sticky-content .section-title { font-size: 2.8rem; color: var(--color-text-dark); font-weight: 800; line-height: 1.15; margin-bottom: 25px; letter-spacing: -0.5px; }
.diff-sticky-content .section-title span { color: var(--color-primary); }
.diff-sticky-content .section-subtitle { font-size: 1.15rem; color: #4B5563; line-height: 1.7; }

.diff-list { display: flex; flex-direction: column; gap: 25px; }
.diff-card { background: var(--color-secondary); border: 1px solid rgba(18, 165, 165, 0.1); border-radius: 20px; padding: 35px; display: flex; align-items: flex-start; gap: 25px; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); }
.diff-card:hover { transform: translateX(10px); border-color: rgba(18, 165, 165, 0.4); box-shadow: 0 15px 35px rgba(18, 165, 165, 0.08); background: #FFFFFF; }
.diff-icon { width: 45px; height: 45px; background: rgba(18, 165, 165, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-primary); flex-shrink: 0; transition: var(--transition-default); }
.diff-card:hover .diff-icon { background: var(--color-primary); color: #FFFFFF; transform: scale(1.1); }
.diff-icon svg { width: 22px; height: 22px; }

.diff-text h3 { font-size: 1.35rem; font-weight: 700; color: var(--color-text-dark); margin-bottom: 10px; letter-spacing: -0.3px; }
.diff-text p { font-size: 1rem; color: #4B5563; line-height: 1.6; }

@media (max-width: 992px) {
    .diff-container { grid-template-columns: 1fr; gap: 50px; }
    .diff-sticky-content { position: relative; top: 0; text-align: center; }
    .diff-sticky-content .brand-badge-outline { margin: 0 auto 25px auto; }
}

@media (max-width: 768px) {
    .differentials-section { padding: 80px 0; }
    .diff-sticky-content .section-title { font-size: 2.2rem; }
    .diff-card { padding: 25px 20px; flex-direction: column; gap: 15px; }
}

/* ================= SEÇÃO: PARA QUEM É (BENTO GRID) ================= */
.target-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.target-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.target-header { text-align: center; max-width: 800px; margin: 0 auto 60px auto; position: relative; z-index: 2; }
.dark-badge { display: inline-block; background: rgba(255, 255, 255, 0.2) !important; border: 1px solid rgba(255, 255, 255, 0.4); color: #FFFFFF !important; padding: 8px 20px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 25px; }
.target-header .text-light { color: #FFFFFF !important; font-size: 2.8rem; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.5px; }
.target-header .text-light span { color: #FDFCF0; border-bottom: 2px dashed rgba(253, 252, 240, 0.5); }
.target-header .text-light-muted { color: rgba(255, 255, 255, 0.85) !important; font-size: 1.15rem; }

.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }

.bento-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bento-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.5); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.bento-icon { width: 60px; height: 60px; background: #FFFFFF; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--color-primary-dark); margin-bottom: 25px; position: relative; z-index: 1; transition: transform 0.4s ease; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }
.bento-card:hover .bento-icon { transform: scale(1.1) rotate(5deg); color: var(--color-primary); }
.bento-icon svg { width: 28px; height: 28px; }

.bento-content { position: relative; z-index: 1; }
.bento-content h3 { font-size: 1.4rem; font-weight: 700; color: #FFFFFF; margin-bottom: 15px; letter-spacing: -0.5px; transition: transform 0.3s ease; }
.bento-content p { font-size: 1rem; color: rgba(255, 255, 255, 0.85); line-height: 1.6; }
.bento-card:hover .bento-content h3 { transform: translateX(5px); }

@media (max-width: 992px) { .bento-grid { gap: 20px; padding: 0 15px; } }
@media (max-width: 768px) { .target-section { padding: 80px 0; } .bento-grid { grid-template-columns: 1fr; } .bento-card { padding: 30px; } }

/* ================= SEÇÃO: RESULTADO FINAL ================= */
.result-section { padding: 120px 0; background-color: #FFFFFF; position: relative; z-index: 10; overflow: hidden; }
.result-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }

.result-image-wrapper { position: relative; border-radius: 24px; z-index: 1; }
.result-img { width: 100%; height: auto; border-radius: 24px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); object-fit: cover; }

.floating-badge { position: absolute; bottom: 40px; right: -30px; background: #FFFFFF; border: 1px solid rgba(18, 165, 165, 0.1); padding: 15px 25px; border-radius: 16px; display: flex; align-items: center; gap: 15px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); z-index: 5; animation: floatBadge 4s ease-in-out infinite; }
@keyframes floatBadge { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
.floating-badge .badge-icon { font-size: 2rem; background: var(--color-secondary); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.floating-badge .badge-text { display: flex; flex-direction: column; }
.floating-badge .badge-text strong { font-size: 1.05rem; color: var(--color-text-dark); }
.floating-badge .badge-text span { font-size: 0.85rem; color: #6B7280; }

.result-content .section-title { font-size: 2.6rem; font-weight: 800; color: var(--color-text-dark); line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.5px; }
.result-content .section-title span { color: var(--color-primary); }
.result-content .section-subtitle { font-size: 1.15rem; color: #4B5563; line-height: 1.7; margin-bottom: 40px; }

.result-checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 25px; }
.result-checklist li { display: flex; align-items: flex-start; gap: 20px; background: transparent; transition: var(--transition-default); }
.result-checklist li:hover { transform: translateX(10px); }
.icon-check { width: 35px; height: 35px; background: rgba(18, 165, 165, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.icon-check svg { width: 18px; height: 18px; }
.result-checklist p { font-size: 1rem; color: #4B5563; line-height: 1.5; margin: 0; }
.result-checklist p strong { font-size: 1.15rem; color: var(--color-text-dark); display: block; margin-bottom: 3px; }

.result-closing { margin-top: 40px; padding-top: 30px; border-top: 1px solid #E5E7EB; }
.result-closing p { font-size: 1.3rem; color: var(--color-text-dark); font-weight: 500; }
.result-closing p strong { color: var(--color-primary-dark); font-weight: 800; }

@media (max-width: 992px) { .result-grid { grid-template-columns: 1fr; gap: 60px; } .floating-badge { right: 20px; bottom: -20px; } }
@media (max-width: 768px) { .result-section { padding: 80px 0; } .result-content .section-title { font-size: 2.1rem; } .floating-badge { right: 50%; transform: translateX(50%); bottom: -25px; width: 85%; justify-content: center; animation: none; } }

/* ================= SEÇÃO: OUTROS SERVIÇOS ================= */
.other-services-section { padding: 100px 0; background-color: var(--color-secondary); position: relative; z-index: 10; }
.text-center { text-align: center; }
.text-center .section-title { font-size: 2.6rem; color: var(--color-text-dark); margin-bottom: 20px; font-weight: 800; }
.text-center .section-title span { color: var(--color-primary); }
.text-center .section-subtitle { font-size: 1.15rem; color: #4B5563; max-width: 800px; margin: 0 auto 50px auto; }

.other-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
.other-card { background: #FFFFFF; border: 1px solid rgba(18, 165, 165, 0.15); border-radius: 20px; padding: 40px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); transition: var(--transition-default); }
.other-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(18, 165, 165, 0.1); border-color: rgba(18, 165, 165, 0.4); }

.other-card-header { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid #F3F4F6; }
.other-icon { width: 55px; height: 55px; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: #FFFFFF; border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(18, 165, 165, 0.3); }
.other-icon svg { width: 28px; height: 28px; }
.other-card h3 { font-size: 1.4rem; color: var(--color-text-dark); font-weight: 700; }

.other-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.other-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: #4B5563; line-height: 1.5; }
.check-small { color: var(--color-primary); font-weight: bold; }

@media (max-width: 992px) { .other-services-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .other-services-section { padding: 80px 0; } }

/* ================= FOOTER ================= */
.site-footer { background-color: #030508; color: rgba(255, 255, 255, 0.7); padding: 80px 0 20px 0; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; }
.footer-logo-img { height: 60px; width: auto; margin-bottom: 20px; display: block; }
/* filter: brightness(0) invert(1); */ /* Descomente caso a logo precise ficar branca no rodapé */
.footer-logo p { line-height: 1.6; max-width: 350px; }

.footer-links h4, .footer-contact h4 { color: #FFFFFF; font-size: 1.2rem; margin-bottom: 20px; font-weight: 700; }
.footer-links ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: var(--transition-default); }
.footer-links a:hover { color: var(--color-primary); padding-left: 5px; }

.footer-contact p { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.mt-3 { margin-top: 15px; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; }

@media (max-width: 992px) { .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: center; } .footer-logo p { margin: 0 auto; } .footer-contact p { justify-content: center; } }

/* ================= BOTÕES FLUTUANTES ================= */
.floating-actions { position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; gap: 15px; z-index: 9999; }
.action-btn { display: flex; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer; border: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); }
.action-btn:hover { transform: translateY(-5px) scale(1.05); }

.whatsapp-float { width: 60px; height: 60px; background-color: #25D366; color: #FFFFFF; }
.whatsapp-float svg { width: 35px; height: 35px; }
.whatsapp-float.pulse-glow { animation: pulseWhatsApp 2s infinite; }
@keyframes pulseWhatsApp { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

.back-top-btn { width: 45px; height: 45px; background-color: var(--color-text-dark); color: #FFFFFF; opacity: 0; visibility: hidden; transform: translateY(20px); }
.back-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top-btn:hover { background-color: var(--color-primary); }
.back-top-btn svg { width: 24px; height: 24px; }

@media (max-width: 768px) { .floating-actions { bottom: 20px; right: 20px; gap: 10px; } .whatsapp-float { width: 55px; height: 55px; } .back-top-btn { width: 40px; height: 40px; } }