/* ==========================================================================
   AGÊNCIA FURTHER - SISTEMA DE DESIGN & ESTILOS PRINCIPAIS
   ========================================================================== */

/* Importação de Fontes Premium */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Poppins:wght@200;300;400&display=swap');

/* Variáveis de Design */
:root {
    --bg-primary: #020916;
    /* Navy Ultra Escuro */
    --bg-secondary: #071224;
    /* Navy Médio para Cards */
    --bg-card: rgba(7, 18, 36, 0.7);
    --color-primary: #00a2bd;
    /* Ciano de Destaque */
    --color-secondary: #00e5ff;
    /* Ciano Brilhante para Hovers */
    --color-accent-rgb: 0, 162, 189;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-light: #cbd5e1;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-active: rgba(0, 162, 189, 0.4);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --shadow-cyan: 0 0 25px rgba(0, 162, 189, 0.25);
    --shadow-cyan-strong: 0 0 35px rgba(0, 162, 189, 0.45);
}

/* Reset Geral e Acessibilidade */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

ul {
    list-style: none;
}

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

/* Barra de Rolagem Personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-primary);
    border-radius: 10px;
    transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ==========================================================================
   COMPONENTES GERAIS & UTILITÁRIOS
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 7.5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

/* Efeito Degradê de Texto */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 40%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Brilhos de Fundo (Ambient Light Glow) */
.glow-effect {
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.12) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

/* Botões Customizados */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(0, 162, 189, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan-strong);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-icon {
    margin-left: 0.5rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Tags de Destaque */
.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background-color: rgba(0, 162, 189, 0.08);
    border: 1px solid var(--border-color-active);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Centralizador de Seções */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Glassmorphism General */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

/* ==========================================================================
   CABECALHO / NAVBAR
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(2, 9, 22, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.3rem 0;
    background-color: rgba(2, 9, 22, 0.9);
    border-bottom: 1px solid rgba(0, 162, 189, 0.15);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo-text {
    font-family: "Futura", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: 0.15rem;
}

.highlight-f {
    color: var(--color-primary); /* F em Ciano */
}

.logo-icgh {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 0.62rem;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    padding: 0.7rem 1.6rem;
    font-size: 0.85rem;
}

/* Menu Hambúrguer (Mobile) */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 100;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .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);
    }
}

/* ==========================================================================
   SEÇÃO HERO
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
    z-index: 2;
}

.hero-glow-1 {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 162, 189, 0.15) 0%, transparent 70%);
}

.hero-glow-2 {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Visual do Funil Comercial do Médico (Hero Visual) */
.hero-visual {
    position: relative;
}

.funnel-card {
    padding: 2.2rem;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.funnel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 162, 189, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.funnel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.2rem;
    margin-bottom: 1.8rem;
}

.funnel-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.funnel-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

.funnel-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.funnel-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.funnel-step:hover {
    background-color: rgba(0, 162, 189, 0.04);
    border-color: rgba(0, 162, 189, 0.15);
    transform: translateX(5px);
}

.funnel-step-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.funnel-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(0, 162, 189, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.funnel-step-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.funnel-step-val {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
}

.funnel-step-val.green {
    color: #10b981;
}

.funnel-arrow {
    display: flex;
    justify-content: center;
    color: rgba(0, 162, 189, 0.3);
    font-size: 0.9rem;
    margin: -0.4rem 0;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 162, 189, 0.5);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 162, 189, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 162, 189, 0);
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   SEÇÃO PROBLEMAS (DORES DO ICP)
   ========================================================================== */

.problems {
    position: relative;
    z-index: 2;
    background-color: rgba(7, 18, 36, 0.2);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 162, 189, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.problem-card:hover::before {
    background-color: var(--color-primary);
    height: 100%;
}

.problem-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    opacity: 0.8;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.problem-solution {
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
}

.problem-solution h4 {
    font-size: 0.85rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.problem-solution p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

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

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

/* ==========================================================================
   METODOLOGIA / PASSOS (STEPS)
   ========================================================================== */

.methodology {
    position: relative;
    z-index: 2;
}

.steps-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 162, 189, 0.3) 0%, rgba(0, 162, 189, 0.03) 100%);
}

.step-item {
    position: relative;
    display: flex;
    gap: 3rem;
    margin-bottom: 4.5rem;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    position: relative;
    z-index: 3;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px solid rgba(0, 162, 189, 0.3);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.step-item:hover .step-number {
    border-color: var(--color-primary);
    color: var(--text-white);
    background-color: var(--color-primary);
    box-shadow: var(--shadow-cyan);
}

.step-content {
    padding-top: 1rem;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-timeline::before {
        left: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-item {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .step-content {
        padding-top: 0.2rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   CALCULADORA DE ROI (UX DE CONVERSÃO)
   ========================================================================== */

.calculator-section {
    position: relative;
    z-index: 2;
    background-color: rgba(7, 18, 36, 0.4);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    border-radius: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.input-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-label-row label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-white);
}

.input-value-display {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.15rem;
}

/* Estilização Sliders Range */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 162, 189, 0.5);
    transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
    background: var(--color-secondary);
    transform: scale(1.15);
}

/* Painel de Resultados da Calculadora */
.calc-results {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.results-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    background: linear-gradient(145deg, #071224 0%, #030f26 100%);
    border: 1px solid rgba(0, 162, 189, 0.2);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.results-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}

.results-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.results-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.result-stat {
    margin-bottom: 2rem;
}

.result-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.result-stat-value {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.result-stat-value.highlight {
    color: #f43f5e;
    /* Coral/Aviso para Dinheiro Perdido */
    text-shadow: 0 0 15px rgba(244, 63, 94, 0.15);
}

.result-stat-value.success {
    color: #10b981;
    /* Verde para Faturamento Potencial */
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.calc-cta-box {
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.calc-cta-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .results-card {
        padding: 2rem 1.5rem;
    }

    .result-stat-value {
        font-size: 2.4rem;
    }
}

/* ==========================================================================
   SEÇÃO SERVIÇOS
   ========================================================================== */

.services {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    padding: 3rem;
    border-radius: 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card:hover {
    border-color: rgba(0, 162, 189, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: rgba(0, 162, 189, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color-active);
}

.service-icon-wrapper img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.service-header h3 {
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-features {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-feature-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

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

@media (max-width: 576px) {
    .service-card {
        padding: 2rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SEÇÃO FAQ (ACORDEÃO)
   ========================================================================== */

.faq {
    position: relative;
    z-index: 2;
    background-color: rgba(7, 18, 36, 0.2);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(0, 162, 189, 0.25);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 2rem 2rem 2rem;
    color: var(--text-gray);
    font-size: 0.98rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.4rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-answer-inner {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

/* ==========================================================================
   CONTATO & AGENDAMENTO
   ========================================================================== */

.contact-section {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-stat-item {
    border-left: 2px solid var(--color-primary);
    padding-left: 1.5rem;
}

.contact-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.contact-stat-label {
    font-size: 0.88rem;
    color: var(--text-gray);
}

/* Formulário de Contato Premium */
.contact-form-wrapper {
    padding: 3rem;
    border-radius: 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1.1rem 1.4rem;
    background-color: rgba(2, 9, 22, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 162, 189, 0.15);
    background-color: rgba(2, 9, 22, 0.7);
}

.form-input::placeholder {
    color: #475569;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    width: 100%;
    padding: 1.1rem 1.4rem;
    background-color: rgba(2, 9, 22, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: var(--transition-smooth);
}

.form-select:focus {
    border-color: var(--color-primary);
}

.form-select-wrapper {
    position: relative;
}

.form-select-wrapper::after {
    content: '▼';
    font-size: 0.7rem;
    color: var(--text-gray);
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-form .btn {
    width: 100%;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-stat-item {
        border-left: none;
        border-top: 2px solid var(--color-primary);
        padding-left: 0;
        padding-top: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   RODAPE (FOOTER)
   ========================================================================== */

.footer {
    border-top: 1px solid var(--border-color);
    background-color: #010610;
    padding: 5rem 0 2.5rem 0;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about img {
    height: 38px;
    margin-bottom: 1.8rem;
}

.footer-about p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links-list a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--color-primary);
    transform: translateX(3px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.95rem;
}

.footer-contact-icon {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.footer-contact-text span {
    display: block;
    color: var(--text-gray);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.88rem;
    color: var(--text-gray);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    font-size: 0.88rem;
    color: var(--text-gray);
}

.footer-legal-links a:hover {
    color: var(--color-primary);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-about {
        grid-column: span 2;
    }
}

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

    .footer-about {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }
}

/* ==========================================================================
   BOTÃO FLUTUANTE DE WHATSAPP
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    z-index: 99;
    transition: var(--transition-smooth);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

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

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================================================
   ESTILOS PREMIUM INSPIRADOS EM WEMBI & NRG
   ========================================================================== */

/* Cursor Customizado Interativo */
#custom-cursor {
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, border-color 0.3s;
    box-shadow: 0 0 15px rgba(0, 162, 189, 0.5);
    mix-blend-mode: screen;
}

#custom-cursor.hovered {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 162, 189, 0.12);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-cyan-strong);
}

@media (max-width: 1024px) {
    #custom-cursor {
        display: none;
    }
}

/* Letras Gigantes Decorativas no Fundo */
.bg-text {
    position: absolute;
    font-size: 15vw;
    font-family: var(--font-heading);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.012);
    pointer-events: none;
    z-index: 1;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   CONFIGURAÇÃO DE VÍDEOS DE BACKGROUND E EFEITOS (WEMBI)
   ========================================================================== */

/* Vídeo do Hero (plano de fundo completo da seção) */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Fica atrás do container principal que tem z-index 2 */
    overflow: hidden;
    pointer-events: none;
    opacity: 0.12;
    /* Sutil para não atrapalhar a leitura do H1/parágrafo */
}

.hero-video-bg video {
    width: 106%;
    height: 106%;
    object-fit: cover;
    margin-top: -3%;
    margin-left: -3%;
    filter: brightness(0.8) contrast(1.1);
}

/* Grid de Metodologia (Rola junto com a seção) */
.methodology-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    /* Centraliza verticalmente para melhor harmonia visual */
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-visual {
    position: relative;
    /* Rola normalmente junto com a seção, sem sticky */
    top: 0;
    z-index: 5;
    width: 100%;
}

.visual-card {
    border-radius: 24px;
    overflow: hidden;
    padding: 0.8rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 9;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 580px;
    /* Caixa aumentada conforme solicitado */
    margin: 0 auto;
}

.video-crop {
    position: relative;
    width: 130%;
    height: 130%;
    overflow: hidden;
    border-radius: 16px;
}

.video-crop video {
    width: 118%;
    /* Aumentado para cortar mais as bordas */
    height: 118%;
    /* Aumentado */
    object-fit: cover;
    margin-left: -9%;
    /* Desloca o vídeo para esconder a marca d'água */
    margin-top: -9%;
    /* Desloca o vídeo para esconder a marca d'água */
}

/* Vídeo em Background na Seção de Serviços */
.services-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.08;
}

.services-video-bg video {
    width: 106%;
    height: 106%;
    object-fit: cover;
    margin-top: -3%;
    margin-left: -3%;
}

/* Novos Ícones SVG dos Serviços */
.service-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(0, 162, 189, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.service-icon-svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(0, 162, 189, 0.4);
}

.service-card:hover .service-icon-svg {
    color: var(--text-white);
    transform: scale(1.1);
}

/* Responsividade dos Vídeos e Grid */
@media (max-width: 1024px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visual-card {
        max-width: 500px;
        margin: 0 auto;
    }
}