/* ========================================
   LIMÃO WEB - CSS PROFISSIONAL
   Design: Elegante, Moderno, Sales-Focused
   Caminhos: Raiz (/)
   ======================================== */

/* ========================================
   VARIÁVEIS DE CORES
   ======================================== */

:root {
    /* Cores Primárias */
    --color-primary: #0f172a;           /* Azul profundo - Confiança */
    --color-primary-light: #1e293b;     /* Azul claro */
    --color-primary-dark: #0a0f1f;      /* Azul escuro */
    
    /* Cores Secundárias */
    --color-accent: #059669;            /* Verde sofisticado - Crescimento */
    --color-accent-light: #10b981;      /* Verde claro */
    --color-accent-dark: #047857;       /* Verde escuro */
    
    /* Cores Premium */
    --color-gold: #d97706;              /* Dourado - Premium */
    --color-gold-light: #f59e0b;        /* Dourado claro */
    
    /* Cores Neutras */
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* Cores de Status */
    --color-success: #059669;
    --color-warning: #d97706;
    --color-error: #dc2626;
    --color-info: #0ea5e9;
    
    /* Tipografia */
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Tamanhos de Fonte */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Espaçamento */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transições */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET E ESTILOS GLOBAIS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  margin: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-gray-900);
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--text-5xl);
    color: var(--color-primary);
}

h2 {

    font-size: var(--text-4xl);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
}

h4 {
    font-size: var(--text-xl);
    color: var(--color-primary);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-gray-600);
    font-size: 16.8px;
}

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

/*a:hover {
    color: var(--color-accent-dark);
    text-decoration: underline;
}*/

strong {
    font-weight: 600;
    color: var(--color-primary);
}

/* ========================================
   CONTAINER E LAYOUT
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}
section[id] {
    scroll-margin-top: 65px;
}
section {
    padding: var(--spacing-3xl) 0;
}

section:nth-child(even) {
    background-color: var(--color-gray-50);
}
/* ========================================
   HEADER E NAVEGAÇÃO
   ======================================== */

/* =========================
   HEADER – GLOBAL
========================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-bottom: 1px solid #e5e7eb;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* espaço entre ícone e texto */
}
.logo img {
    /*width: auto;*/
    display: block;
}

/* Ícone */
.logo-icon {
    height: 42px;
}

/* Texto (imagem) */
.logo-text-img {
    height: 26px; /* hierarquia visual correta */
}

/* Navegação - Desktop */
nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-2xl);
}

nav a {
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color var(--transition-fast);
}

nav a:hover {
    color: #111827;
    text-decoration: none;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #9acd32;
    transition: width var(--transition-fast);
}

nav a:hover::after {
    width: 100%;
}



/* =========================
   HERO – NOVO POSICIONAMENTO
========================= */
.hero-title {
   font-family: "Montserrat", sans-serif;
   font-size: clamp(2.6rem, 5vw, 3.9rem);
   line-height: 1.1;
   font-weight: 600;
   color: #111827;
   margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: #9acd32;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 520px; /* ajuste importante */
    margin-bottom: 2.8rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

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

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    filter: saturate(0.95) contrast(1.05);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 82%,
    rgba(255,255,255,0.6) 92%,
    rgba(255,255,255,1) 100%
  );

  pointer-events: none;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.7s ease-out forwards;
}

.hero-eyebrow {
  animation-delay: 0.1s;
}

.hero-title {
  animation-delay: 0.2s;
}

.hero-subtitle {
  animation-delay: 0.35s;
}

.hero-buttons {
  animation-delay: 0.5s;
}


/* =========================
   RANGE SLIDER PADRÃO
========================= */

input[type="range"] {
  appearance: none;           /* padrão moderno */
  -webkit-appearance: none;   /* Chrome, Safari, Edge */
  width: 100%;
  height: 6px;
  background: transparent;
  cursor: pointer;
}

/* ===== TRACK ===== */

/* Chrome, Edge, Safari */
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: #9acd32;
  border-radius: 10px;
}

/* Firefox */
input[type="range"]::-moz-range-track {
  height: 6px;
  background: #9acd32;
  border-radius: 10px;
}

/* ===== THUMB ===== */

/* Chrome, Edge, Safari */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background: #ffffff;
  border: 3px solid #9acd32;
  border-radius: 50%;
  margin-top: -6px; /* centraliza no track */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Firefox */
input[type="range"]::-moz-range-thumb {
  height: 18px;
  width: 18px;
  background: #ffffff;
  border: 3px solid #9acd32;
  border-radius: 50%;
}

/* Hover */
input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(154, 205, 50, 0.25);
}

input[type="range"]:hover::-moz-range-thumb {
  box-shadow: 0 0 0 6px rgba(154, 205, 50, 0.25);
}


/* ========================================
   SERVIÇOS
   ======================================== */

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
}

.service-card h3 {
    margin-bottom: var(--spacing-md);
    font-size: var(--text-xl);
}

.service-card p {
    color: #20251f;
    margin-bottom: var(--spacing-md);
}

.service-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
    border-left: 4px solid var(--color-gold);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--color-gray-900);
    margin-top: var(--spacing-lg);
}

/* ========================================
   TABELA DE COMPARAÇÃO
   ======================================== */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: var(--spacing-2xl);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
}

.comparison-table th {
    padding: var(--spacing-lg);
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--color-gray-200);
}

.comparison-table tbody tr:hover {
    background-color: var(--color-gray-50);
}

.comparison-before {
    background-color: #fee2e2;
    color: #991b1b;
    font-weight: 600;
}

.comparison-after {
    background-color: #dcfce7;
    color: #166534;
    font-weight: 600;
}

/* ========================================
   CASOS DE SUCESSO
   ======================================== */

.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.case-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-accent);
    transition: all var(--transition-base);
}

.case-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.case-card h4 {
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.case-card p {
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-sm);
}

.case-metric {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-top: var(--spacing-lg);
    text-align: center;
}

/* ========================================
   CALCULADORA ROI
   ======================================== */

.roi-calculator {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    color: white;
}

.roi-content {
    max-width: 600px;
    margin: 0 auto; 
}

.roi-input-group {
    margin: var(--spacing-2xl) 0;
}

.roi-input-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.roi-input-group input {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: var(--text-base);
    font-family: var(--font-sans);
    transition: all var(--transition-base);
}

.roi-input-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.15);
}

.roi-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.roi-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.roi-result {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.roi-result-value {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-gold-light);
    margin-bottom: var(--spacing-sm);
}

.roi-result-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* =========================
   ROI RANGE SLIDER
========================= */

.range-wrapper {
    position: relative;
    width: 100%;
    margin-top: 12px;
}

#revenueRange {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 8px;
    background: #e5e7eb;
    cursor: pointer;
    outline: none;
}

/* TRACK PROGRESSIVO */
#revenueRange {
    background: linear-gradient(
        to right,
        #9acd32 0%,
        #9acd32 20%,
        #e5e7eb 20%,
        #e5e7eb 100%
    );
}

/* THUMB */
#revenueRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #9acd32;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

#revenueRange::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #9acd32;
    border: 3px solid #fff;
}

/* VALOR FLUTUANTE */
.range-value {
    position: absolute;
    top: -42px;
    background: #111;
    color: #fff;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    transform: translateX(-50%);
}

.range-value::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
}


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

.contact-section {
    padding: 6rem 1.5rem;
    background: #f7f7f7;
}

.contact-container {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-text h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
}
.contact-form input::placeholder {
    color: #9ca3af;
}

.contact-form input:focus {
    outline: none;
    border-color: #9acd32;
    box-shadow: 0 0 0 3px rgba(154,205,50,0.2);
}

.contact-form button {
    margin-top: 0.75rem;
}

.contact-form small {
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.8rem;
    text-align: center;
}


/* ========================================
   CHAT FLUTUANTE
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-2xl);
    right: var(--spacing-2xl);

    width: 60px;
    height: 60px;

    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #25D366 0%,
        #1EBE5D 100%
    );

    color: white;
    border: none;

    font-size: 32px;
    cursor: pointer;

    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);

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

    z-index: 10001; /* 👈 acima do footer */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float:active {
    transform: scale(0.95);
}


/* =========================
   HERO SECTION — PREMIUM
========================= */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top, #f8fafc 0%, #ffffff 55%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);

  min-height: calc(100vh - 80px);
  padding: 3rem 1.5rem 6rem;
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}
/* Copy dinâmica (headline principal) */
.dynamic-copy h1,
.dynamic-copy h2 {
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 0.75rem;
    color: #111827;
}

/* Subcopy dinâmica */
.dynamic-copy p {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: #4b5563;
    margin-bottom: 2.2rem;
}

/* Subtítulo fixo */
.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #6b7280;
    max-width: 720px;
    margin: 0 auto 2.75rem;
}

.hero-subtitle strong {
    color: #111827;
    font-weight: 600;
}

/* Botões */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.hero-highlight {
    color: #9acd32;
    font-weight: 800;
}

.dynamic-copy {
    min-height: 140px; /* evita pulo visual */
}

.fade-enter {
    opacity: 0;
    transform: translateY(10px);
}

.fade-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.fade-out {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

#dynamic-title,
#dynamic-subtitle {
    transition: all 0.4s ease;
}



.contact-section {
    position: relative;
    padding: 6rem 1.5rem;

    background-image: url('/assets/images/cta-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}
.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px; /* controla o esfumaçado */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    rgba(255, 255, 255, 0.85) 40%,
    rgba(255, 255, 255, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}


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




/* =========================
   TRUST LINE
========================= */

.hero-trust {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}


/* =========================
   MODAL
========================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 14vh;
    z-index: 999;
}


.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    padding: 2.2rem;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}


.modal h2 {
    margin-bottom: 0.5rem;
}

.modal p {
    color: #555;
    margin-bottom: 1.5rem;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.modal input,
.modal select {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #cfcfcf;
    font-size: 0.95rem;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 1.4rem;
    border: none;
    background: none;
    cursor: pointer;
    color: #666;
}
/* =========================
   HERO PREMIUM ENHANCEMENT
========================= */

.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(154,205,50,0.25) 0%,
        rgba(154,205,50,0.05) 40%,
        transparent 70%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    letter-spacing: -0.02em;
}

.hero-subtitle strong {
    color: #111;
}



/* =========================
   O QUE FAZEMOS – PILARES
========================= */

.services {
    /*padding: 1rem 1.5rem;*/
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #555;
    font-size: 1.05rem;
}
.service-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #9acd32;

    margin-bottom: 0.9rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid rgba(154, 205, 50, 0.35);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-description {
    color: #444;
    font-size: 0.99rem;
    margin-bottom: 1.5rem;
}
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #374151; /* ligeiramente mais suave */
}

.service-card ul li::before {
  content: "✓";
  color: #9acd32;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1.2;
  margin-top: 1px;
}



/* =========================
   SERVICE ANCHOR
========================= */

.service-anchor {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    border-radius: 24px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f9fbe7 100%
    );
    border: 2px solid #9ACD32;
    box-shadow: 0 30px 80px rgba(154,205,50,0.25);
    text-align: center;
}

.service-anchor h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
}

.anchor-highlight {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.anchor-highlight strong {
    color: #111;
}

.service-anchor ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-anchor ul li {
    margin-bottom: 0.7rem;
    color: #444;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-card h4 {
    margin-bottom: 0.6rem;
}

/* =========================
   SETUP + TOOLTIP
========================= */

.price-setup {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #cfcfcf;
    color: #111;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

.tooltip-text {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background: #111;
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform-origin: bottom center;
    z-index: 10;
}
.tooltip:hover .tooltip-text {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}
/* =========================
   ROI SECTION
========================= */

.roi-section {
    background: #f5f5f5;
    /*padding: 6rem 1.5rem;*/
}

.roi-calculator {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.roi-content h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.25rem;
}

.roi-input-group {
    margin-bottom: 2.5rem;
}

.roi-input-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.4rem;
}

.roi-input-group input[type="text"] {
    width: 100%;
    padding: 0.9rem;
    border-radius: 10px;
    border: 1px solid #cfcfcf;
    margin-bottom: 0.6rem;
        color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #fff;
}
.roi-input-group input[type="text"]::placeholder {
    color: #888;
}

.roi-input-group input[type="range"] {
    width: 100%;
}

.roi-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.roi-result {
    background: #fafafa;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.roi-result.highlight {
    border: 2px solid #9ACD32;
    background: #f9fbe7;
}
.roi-result.highlightt {
    border: 2px solid #9ACD32;
    background: #f9fbe7;
}

.roi-result-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
}

.roi-result-label {
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.4rem;
}

.roi-footnote {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.plans-footnote {
  margin-top: 28px;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
  opacity: 0.85;
}

.roi-explanation {
    max-width: 800px;
    margin: 1rem auto 0;
    color: #555;
    background: #f9fafb;
    padding: 1rem;
    border-radius: 12px;
}

.roi-explanation h4 {
    margin-bottom: 0.8rem;
}
.roi-input-group input[type="text"]:focus {
    border-color: #9ACD32;
    box-shadow: 0 0 0 3px rgba(154, 205, 50, 0.2);
    outline: none;
}

.roi-cta {
  margin-top: 32px;
  text-align: center;
}

.roi-cta p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #111;
}

.roi-cta strong {
  color: #9acd32;
  font-weight: 800;
}

/* =========================
   COPY DINÂMICA - CHAT / CTA
========================= */

.dynamic-copy {
    text-align: center;
}

.dynamic-copy h2,
.dynamic-copy p {
    transition: opacity 0.4s ease;
}

.dynamic-copy .fade-out {
    opacity: 0;
}

.dynamic-copy .fade-in {
    opacity: 1;
}
/* COPY DINÂMICA - CORES */

.dynamic-copy h2 {
    color: #2f2f2f; /* cinza escuro elegante (título) */
}

.dynamic-copy p {
    color: #6b7280; /* cinza médio/claro (subtítulo) */
}
/* =========================
   NOSSOS CLIENTES
========================= */

.clients {
    padding: 5rem 0;
    background: #f7f7f7;
    overflow: hidden;
}

.clients h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.clients-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
    font-size: 16.8px;
}

/* LOGOS */
.client-logo {
    height: 40px;               /* padrão SaaS */
    max-width: 175px;
    width: auto;

    object-fit: contain;

    opacity: 0.55;
    filter: grayscale(100%) brightness(0.6);

    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

/* Ajustes finos por proporção */
.client-logo.logo-wide {
    max-width: 195px;
}

.client-logo.logo-compact {
    max-width: 135px;
}
.client-logo.logo-featured {
    height: 75px;
}
/* MARQUEE */
.clients-marquee {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: marquee-left 25s linear infinite;
    height: 90px;
}
.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

/* =========================
   ANIMAÇÃO CLIENTES (MARQUEE)
========================= */

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

#backToTop {
    position: fixed;
    bottom: 100px; /* acima do chat */
    right: 24px;

    width: 36px;
    height: 36px;

    border-radius: 50%;
    border: none;

    background: #9ca3af; /* cinza */
    color: #fff;
    font-size: 1rem;

    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 900;
}

#backToTop.show {
    opacity: 0.7;
    pointer-events: auto;
}

#backToTop:hover {
    opacity: 1;
    transform: translateY(-2px);
}


/* CHAT – sempre acima */
/*.chat-button {
    z-index: 1000;
}*/

/* SETA – abaixo do chat */
#backToTop {
    bottom: 170px;   /* sobe mais */
    right: 24px;
    z-index: 900;
}


/* =========================
   MENU HAMBÚRGUER
========================= */
.menu-toggle {
  display: none;
}
/* =========================
   LOGO
========================= */

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

.logo-icon {
    height: 40px;
    width: auto;
}

.logo-text-img {
    height: 26px;
    width: auto;
}

/* =========================
   NAV DESKTOP
========================= */

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #9acd32;
    transition: width 0.2s ease;
}

nav a:hover::after {
    width: 100%;
}



/* ===================================================
   PLANOS — CSS DEFINITIVO (COMPATÍVEL COM HTML)
=================================================== */

.plans-section {
  /*padding: 96px 20px;*/
  background: #ffffff;
}

.plans-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.plans-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  color: #555;
}

/* GRID */
.plans-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD BASE */
.plan-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.plan-card a.btn {
  margin-top: auto;
}
/* TÍTULOS */
.plan-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.plan-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
}

/* PREÇO */
.plan-price {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.plan-price .setup {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 6px;
  font-weight: 600;
}

.plan-price strong {
  font-size: 1.9rem;
  font-weight: 800;
  color: #111;
}

.plan-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
}

/* FEATURES */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.plan-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9acd32;
  font-weight: 700;
}

/* NOTA */
.plan-note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 28px;
}


/* PLANO DESTAQUE */
.plan-highlight {
  border: 2px solid #9acd32;
  box-shadow: 0 26px 70px rgba(154, 205, 50, 0.28);
  transform: translateY(-18px);
  position: relative;
  z-index: 2;
}

/* FLAG SUPERIOR — AJUSTADA */
.plan-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);

  background: #f1f8e8; /* verde MUITO claro */
  color: #4d7c0f;      /* verde fechado e elegante */

  padding: 6px 16px;
  border-radius: 999px;

  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;

  border: 1px solid rgba(154, 205, 50, 0.45);
  white-space: nowrap;
}


/* =========================
   BUTTON SYSTEM – DEFINITIVO
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 26px;
  border-radius: 20px;

  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;

  cursor: pointer;
  border: none;
  outline: none;

  text-decoration: none;

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

/* PRIMARY */
.btn-primary {
  background-color: #9acd32;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #7fbf28;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(154, 205, 50, 0.35);
}

/* SECONDARY */
/* =========================
   BOTÃO SECONDARY (CINZA)
========================= */

.btn-secondary {
  background: #e5e7eb;       /* cinza mais presente */
  color: #111827;            /* preto forte */
  border-radius: 20px;
  font-weight: 600;

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

.btn-secondary:hover {
  background: #d1d5db;       /* escurece levemente */
  color: #111827;            /* CONTINUA PRETO */
  text-decoration: none;

  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}


/* ANTI-UNDERLINE GLOBAL */
a.btn,
a.btn:hover,
a.btn:focus,
a.btn:visited {
  text-decoration: none !important;
}
/* =========================
   FOOTER – AJUSTADO
========================= */

.site-footer {
  background: #ffffff;
  color: #555;
  padding: 40px 20px 16px; /* menor altura */
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px; /* mais compacto */
}

/* COLUNAS */
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #444;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col a {
  color: #555;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-col a:hover {
  color: #7fae28;
}

/* BRAND / LOGOS */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 36px;              /* força padrão visual */
  width: auto;
  object-fit: contain;
  display: block;
}

/* SOCIAL */
.social-link {
  display: inline-flex;
  align-items: center;
}

.social-icon {
  width: 22px;
  height: 22px;
}

/* COPYRIGHT */
.footer-bottom {
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;

  font-size: 0.7rem;
  color: #777;
  text-align: left; /* alinhado à esquerda */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


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

.site-footer a {
  position: relative;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
}

/* Linha animada */
.site-footer a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0;
  height: 2px;

  background-color: #9acd32;
  transition: width 0.25s ease;
}

/* Hover */
.site-footer a:hover::after {
  width: 100%;
}

/* Garantia: não muda cor */
.site-footer a:hover {
  /*color: #555;*/
  color: #111827;
}
.social-link {
  font-size: 1.4rem;
  color: #555;
  display: inline-block;
  position: relative;
}

.social-link:hover {
  color: #555; /* não muda a cor */
}

/* Linha animada igual menu/footer */
.social-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #9acd32;
  transition: width 0.25s ease;
}

.social-link:hover::after {
  width: 100%;
}
/* =========================
   SOCIAL ICON
========================= */

.social-link {
  font-size: 1.4rem !important; /* aumenta só o ícone */
  color: #555;
  display: inline-flex;
  align-items: center;
}

.social-link::after {
  display: none; /* remove underline animado */
}

.social-link:hover {
  color: #9acd32; /* muda apenas a cor */
}
.btn-text-mobile {
    display: none;
}

.btn-text-desktop {
    display: inline;
}


/* ========================================
   MOBILE & TABLET BASE
   até 1024px
======================================== */

@media (max-width: 1024px) {

  /* SERVICES / PLANS */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-container {
    grid-template-columns: 1fr;
  }

  .plan-highlight {
    transform: none;
  }
}

/* ========================================
   MOBILE PRINCIPAL
   até 768px
======================================== */

@media (max-width: 768px) {


     .btn-text-desktop {
        display: none;
    }

    .btn-text-mobile {
        display: inline;
    }
      .header-container {
    padding: 0.75rem 1rem;
  }

    .hero-visual {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* ---------- LOGO ---------- */
  .logo-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    max-width: 70%;
  }

  .logo-icon {
    height: 45px;
    width: auto;
  }

  .logo-text-img {
    height: 30x;
    width: auto;
  }

  /* ---------- MENU MOBILE ---------- */
nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    z-index: 999;
}

nav.mobile-active {
    display: block;
}

/* 🔥 RESET TOTAL DO UL */
.main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    padding: 1.5rem;
    gap: 0.1rem;
}

/* 🔥 RESET TOTAL DO LI */
.main-nav li {
    width: auto;
    text-align: right;
    margin-bottom: 0.5rem;
}

/* 🔥 LINKS */
.main-nav a {
    display: inline-block;
}

/* 🔥 BOTÃO */
.main-nav a.btn-menu {
    display: block;
    width: 100%;
    text-align: center;
}

  nav a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #111827;
  }

  /* ---------- HERO ---------- */
  .hero {
    padding: 4rem 1.25rem;
    min-height: auto;
    text-align: center;
  }

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

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    margin-top: 3rem;
  }

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

  .service-anchor {
    padding: 2.2rem 1.8rem;
  }

  /* ---------- ROI / GRIDS ---------- */
  .ba-grid,
  .roi-results {
    grid-template-columns: 1fr;
  }

  /* ---------- CONTACT ---------- */
  .contact-section {
    padding: 4rem 1rem;
    background-position: top;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

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

  .contact-text h2 {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .contact-text p {
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
  }

  .contact-form {
    padding: 1.75rem;
    border-radius: 16px;
  }

  .contact-form input {
    font-size: 0.95rem;
    padding: 0.85rem;
  }

  .contact-form button {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.9rem;
  }

  .contact-form small {
    font-size: 0.75rem;
  }

  /* ---------- RANGE ---------- */
  #revenueRange {
    height: 10px;
  }

  #revenueRange::-webkit-slider-thumb {
    width: 26px;
    height: 26px;
  }

  .range-value {
    font-size: 0.9rem;
    top: -46px;
  }

  /* ---------- FOOTER ---------- */
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* ---------- BOTÃO WHATS FLUTUANTE ---------- */
  .chat-button {
    position: fixed;
    bottom: 24px;
    right: 24px;

    width: 56px;
    height: 56px;
    border-radius: 50%;

    background: #25d366;
    color: #ffffff;

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

    font-size: 1.6rem;
    border: none;
    cursor: pointer;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 10001;
  }

  .chat-window {
    right: 1rem;
    bottom: 90px;
    width: calc(100% - 2rem);
    max-width: 360px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;

    width: 32px;
    height: 28px;
    padding: 0;

    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #111827;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

}











/* ========================================
   MOBILE 640px
======================================== */
@media (max-width: 640px) {
    .roi-section h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    .btn-text-mobile {
        display: none;
    }
    .btn-text-desktop {
        display: none;
    }
    .btn-text-mobile {
        display: inline;
    }
    .btn {
        font-size: 0.95rem;     /* reduz texto */
        padding: 0.85rem 1rem; /* garante respiro */
        line-height: 1.2;
    }
    .btn-primary {
        font-weight: 600;
    }
    .roi-explanation h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    .roi-explanation p {
        font-size: 0.85rem;
        line-height: 1.45;
        margin-bottom: 0.75rem;
    }
    .roi-explanation {
        background: #f9fafb;
        padding: 1rem;
        border-radius: 12px;
    }
  .menu-toggle {
        display: flex;
        width: 32px;
        height: 26px;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;

        flex-direction: column;
        justify-content: center;
        gap: 6px;
        z-index: 1001;
    }

}

/* ========================================
   MOBILE PEQUENO
   até 480px
======================================== */

@media (max-width: 480px) {

  .hero h1 {
    font-size: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }
}

.hero-title {
    /*line-height: 1.25;*/
    min-height: calc(2em * 1.25); /* força 2 linhas fixas */
}
.highlightt {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 520px; /* ajuste conforme seu layout */
    vertical-align: top;
}

.highlight {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 520px; /* ajuste conforme seu layout */
    height: calc(2em * 1.25);
    vertical-align: top;
}
.hero-content {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.6s ease-out forwards;
}
/* Texto animado do HERO */
#hero-rotate-text {
    display: inline-block;
    animation: heroFadeUp 0.6s ease forwards;
}

/* Reuso da animação */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero-typing {

    top: 0;
    left: 0;
    width: 100%;
}

/* Cursor */
.typing-cursor {
    display: inline;
    margin-left: 4px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

/* páginas internas */
.page-default {
    padding: 6rem 1.5rem;
    background-color: var(--bg-color); /* mesma variável da home */
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    color: #2d2d2d; /* ou a variável de texto do site */
    line-height: 1.7;
}
.page-content h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.page-content h2 {
    font-size: 1.3rem;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    margin-bottom: 1rem;
}
.about-cta {
    margin-top: 3rem;
    text-align: left;
}

.about-cta .btn-primary:hover {
    opacity: 0.85;
}



.diagnostico-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #222;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-menu {
    background: #9acd32;
    color: #fff !important;
    font-weight: 500;
    text-decoration: none;
}

.btn-menu:hover {
      background-color: #7fbf28;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(154, 205, 50, 0.35);
}
.main-nav a.btn-menu::after {
  display: none !important;
  content: none !important;
}

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

.mensagem-full {
    width: 100%;
    margin-top: 20px;
}

.mensagem-sucesso {
    width: 100%;
    padding: 20px;
    background-color:  #9acd32;
    color: #000; /* texto preto */
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {

    #diagnosticoForm {
        padding: 0 16px;
    }

    #diagnosticoForm input,
    #diagnosticoForm select,
    #diagnosticoForm textarea {
        width: 100%;
        font-size: 16px; /* evita zoom automático no iPhone */
        padding: 14px;
        margin-bottom: 14px;
    }

    #diagnosticoForm button {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    background: #e9f7d9;
    color: #1a1a1a;
    padding: 18px 24px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
    z-index: 9999;
    font-size: 14px;
}

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

.cookie-text {
    flex: 1;
    line-height: 1.5;
}

.cookie-actions button {
    background: #9acd32;
    border: none;
    padding: 10px 22px;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cookie-actions button:hover {
    background: #76a813;
}

@media (max-width: 768px) {
    .cookie-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions button {
        width: 100%;
    }
}


.custom-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}


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

.lp-wrapper {
  padding: 100px 0;
}

.lp-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.lp-left h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 45px;
  margin-bottom: 20px;
}

.lp-media video,
.lp-media img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 5px;
}

.lp-benefits p {
  margin-bottom: 8px;
  font-weight: 500;
}

.lp-site-link {
  display: inline-block;
  margin-top: 20px;
  color: #84cc16;
  font-weight: 600;
}

/* ===== FORM ===== */

.lp-form-box {
  position: sticky;
  top: 100px;
  background: #f9fbff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.lp-form-box h3 {
  margin-bottom: 20px;
}

.lp-offer {
  color: #84cc16;
  font-weight: 600;
  margin-bottom: 20px;
}

.lp-form-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.lp-form-box small {
  display: block;
  margin-top: 15px;
  opacity: 0.6;
}

/* ===== BLOCO FINAL ===== */

.lp-growth {
  padding: 100px 0;
  text-align: center;
}

.lp-growth h2 {
  margin-bottom: 15px;
}

.lp-growth p {
  margin-bottom: 50px;
  opacity: 0.8;
}

/* ===== RESPONSIVO ===== */

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

  .lp-form-box {
    position: relative;
    top: 0;
  }
}

.lp-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.lp-form-box input,
.lp-form-box select {
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  border: 1px solid #d1d5db;
  color: #333;
  transition: all 0.3s ease;
}
.lp-form-box input:focus {
    outline: none;
    border-color: #9acd32;
    box-shadow: 0 0 0 3px rgba(154,205,50,0.2);
}

.btn-whatsapp {
  background: #9acd32;
  padding: 14px 22px;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
}

.btn-whatsapp:hover {
  background-color: #7fbf28;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(154, 205, 50, 0.35);
}
.lp-left h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #94a3b8;
  text-align: left;
}

.hero-destaque {
  color: #9acd32; /* mantém padrão verde estratégico */
}

.lp-subtitle {
  margin-bottom: 30px;

  color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Responsivo simples */
@media (max-width: 992px) {
  .lp-left h1 {
    font-size: 32px;
  }

  .lp-left h2 {
    font-size: 18px;
  }
}