/* ============================================
   MÓDULOS CNM - IDENTIDADE VISUAL CORRETA
   ============================================ */

:root {
    /* Cores CNM */
    --primary-orange: #ff9d01;
    --primary-dark: #e68a00;
    --dark-blue: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    
    /* Gradientes */
    --gradient-orange: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.16);
    
    /* Tipografia */
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    padding: 140px 0 100px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -5%;
    right: -5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 157, 1, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}


.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 750px;
    object-fit: contain;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 157, 1, 0.1);
    color: var(--primary-orange);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ============================================
   CATEGORIAS
   ============================================ */

.categorias {
    padding: 80px 0;
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-700);
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.categoria-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.categoria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.categoria-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.categoria-card:hover::before {
    transform: scaleX(1);
}

.categoria-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categoria-icon .material-symbols-outlined {
    font-size: 48px;
    color: var(--primary-orange);
    align-items: center;
}

.categoria-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.categoria-card p {
    color: var(--gray-700);
    font-size: 15px;
    margin-bottom: 1rem;
}

.categoria-count {
    display: inline-block;
    font-size: 13px;
    color: var(--primary-orange);
    font-weight: 600;
}

/* ============================================
   MÓDULOS SECTIONS
   ============================================ */

.modulos-section {
    padding: 80px 0;
}

.modulos-section.alt {
    background: var(--gray-100);
}

.modulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.75rem;
}


/* Imagem do módulo */
.modulo-image {
    width: 100%;
    height: 180px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 157, 1, 0.08) 0%, rgba(255, 157, 1, 0.02) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modulo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modulo-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.modulo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.modulo-card.featured {
    border: 2px solid var(--primary-orange);
    background: linear-gradient(to bottom, rgba(255, 157, 1, 0.02), var(--white));
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.badge.popular {
    background: var(--gradient-orange);
    color: var(--white);
}

.badge.growth {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
}

.badge.new {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: var(--white);
}

.badge.essential {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: var(--white);
}

.badge.obrigatorio {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
}

.modulo-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.modulo-card p {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.features {
    list-style: none;
    margin-top: auto;
}

.features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 14px;
    padding-left: 1.5rem;
    position: relative;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}


/* ============================================
   CTA
   ============================================ */

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff9d01 0%, #ffb347 50%, #ff9d01 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
    border-radius: 25px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.cta-content {
    text-align: left;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Botão Primário CTA - Azul escuro com branco */
.cta-btn-primary {
    background: var(--dark-blue);
    color: var(--white);
    padding: 1.1rem 2.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
    border: 2px solid transparent;
}

.cta-btn-primary:hover {
    background: #0a0f1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.4);
    color: var(--white);
}

/* Botão Secundário CTA - Branco com laranja */
.cta-btn-secondary {
    background: var(--white);
    color: var(--primary-orange);
    padding: 1.1rem 2.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    color: var(--primary-dark);
}

.cta-btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   CONTATO
   ============================================ */

.contato {
    padding: 100px 0;
    background: var(--gray-100);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.contato-info h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contato-info > p {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.beneficios {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check {
    width: 32px;
    height: 32px;
    background: var(--gradient-orange);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.beneficio-item strong {
    display: block;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.beneficio-item p {
    font-size: 14px;
    color: var(--gray-700);
}

.form-inline {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-inline input {
    padding: 0.9rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-inline input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.btn-submit {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255, 157, 1, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 1, 0.35);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .modulos-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .contato-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    body {
        padding-top: 70px;
    }
    
    .nav-content {
        height: 70px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .categorias-grid {
        grid-template-columns: 1fr;
    }
    
    .modulos-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-inline {
        padding: 1.75rem;
    }
    
}

/* -------------------------
   COOKIE BANNER (CNM STYLE)
   ------------------------- */

#cnm-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
  height: 167px;
  flex-shrink: 0;
  background: #FBFBFB;
  border-radius: 12px;
  padding: 20px 45px;
  display: flex;
  flex-direction: column;
  z-index: 999999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* TÍTULO */
#cnm-cookie-banner h3 {
  width: 1050px;
  height: 17px;
  flex-shrink: 0;
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 auto 10px auto;
}

/* CONTAINER DO CONTEÚDO */
.cnm-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex: 1;
}

/* LEFT SIDE */
.cnm-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* TEXTO */
#cnm-cookie-banner p {
  width: 719px;
  height: 54px;
  color: rgba(0, 0, 0, 0.56);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 auto;
}

#cnm-cookie-banner p a {
  color: #316CF4;
  text-decoration: none;
}

#cnm-cookie-banner p a:hover {
  text-decoration: underline;
}

/* CHECKBOX LIST */
.cnm-cookie-options {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  width: 719px;
}

.cnm-check {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  min-width: fit-content;
}

/* Label Necessários */
.cnm-check.necessary {
  color: rgba(0, 0, 0, 0.40);
}

/* Demais labels */
.cnm-check:not(.necessary) {
  color: rgba(0, 0, 0, 0.56);
}

/* Checkbox personalizado - MÉTODO SIMPLIFICADO */
.cnm-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 17px;
  height: 17px;
  border: 2px solid #EABE6D;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  vertical-align: middle;
}

.cnm-check input[type="checkbox"]:checked {
  background: #EABE6D;
  border-color: #EABE6D;
}

/* Check simples usando border */
.cnm-check input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Checkbox Necessários (disabled) */
.cnm-check.necessary input[type="checkbox"]:disabled {
  cursor: not-allowed;
  border-color: rgba(224, 153, 19, 0.30);
  background: rgba(224, 153, 19, 0.30);
  opacity: 1;
}

.cnm-check.necessary input[type="checkbox"]:disabled::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* BUTTONS */
.cnm-buttons {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
}

.cnm-buttons-top {
  display: flex;
  gap: 14px;
}

.cnm-btn {
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-style: normal;
  border-radius: 8px;
  transition: opacity 0.2s;
}

.cnm-btn:hover {
  opacity: 0.9;
}

/* Recusar tudo */
.cnm-btn.reject-all {
  width: 138px;
  height: 33px;
  background: #D9D9D9B2;
  color: rgba(0, 0, 0, 0.70);
  font-size: 16px;
  font-weight: 400;
}

/* Aceitar tudo */
.cnm-btn.accept-all {
  width: 138px;
  height: 33px;
  background: rgba(224, 153, 19, 0.61);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}

/* Aceitar seleção */
.cnm-btn.accept-selection {
  width: 290px;
  height: 40px;
  background: #0000009C;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* MOBILE */
@media (max-width: 1200px) {
  #cnm-cookie-banner {
    position: fixed !important;
    bottom: 20px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 40px);
    max-width: 450px;
    height: auto;
    padding: 16px 18px;
    margin: 0 !important;
  }

  #cnm-cookie-banner h3 {
    width: 100%;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .cnm-content-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .cnm-left {
    width: 100%;
    gap: 8px;
  }

  #cnm-cookie-banner p {
    width: 100%;
    height: auto;
    font-size: 11px;
    line-height: 1.4;
  }

  .cnm-cookie-options {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
  }

  .cnm-check {
    gap: 4px;
    font-size: 10px;
    white-space: nowrap;
  }

  .cnm-check input[type="checkbox"] {
    width: 14px;
    height: 14px;
    border-width: 1.5px;
  }

  /* Ajuste do check no mobile */
  .cnm-check input[type="checkbox"]:checked::before,
  .cnm-check.necessary input[type="checkbox"]:disabled::before {
    left: 3px;
    top: 0px;
    width: 3px;
    height: 7px;
    border-width: 0 1.5px 1.5px 0;
  }

  .cnm-buttons {
    width: 100%;
    align-items: stretch;
    gap: 8px;
  }

  .cnm-buttons-top {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .cnm-btn.reject-all,
  .cnm-btn.accept-all {
    flex: 1;
    height: 36px;
    font-size: 12px;
    border-radius: 6px;
  }

  .cnm-btn.accept-selection {
    width: 100%;
    height: 38px;
    font-size: 12px;
    border-radius: 6px;
  }
}

/* MOBILE PEQUENO */
@media (max-width: 480px) {
  #cnm-cookie-banner {
    position: fixed !important;
    bottom: 15px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 30px);
    padding: 14px 16px;
    margin: 0 !important;
  }

  #cnm-cookie-banner h3 {
    font-size: 13px;
  }

  #cnm-cookie-banner p {
    font-size: 10px;
  }

  .cnm-check {
    font-size: 9px;
  }

  .cnm-btn.reject-all,
  .cnm-btn.accept-all {
    font-size: 11px;
    height: 34px;
  }

  .cnm-btn.accept-selection {
    font-size: 11px;
    height: 36px;
  }
}

/* Estrutura idêntica ao style.css original */
.floating-buttons {
    bottom: 90px;
    display: flex;
    display: -webkit-flex;
    flex-direction: column-reverse;
    position: fixed;
    right: 0;
    z-index: 9999; /* Garante que fique acima de tudo */
}

.whatsapp {
    background: #27d045;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #000;
    z-index: 1000;
    cursor: pointer;
    padding: 10px;
    margin: 0 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    text-decoration: none;
}

/* Garante que a imagem dentro do botão apareça corretamente */
.floating-button img {
    width: 100%;
    height: auto;
    max-width: 35px; /* Tamanho padrão do ícone */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* ============================================
   RESPONSIVIDADE CTA
   ============================================ */

@media (max-width: 992px) {
    .cta {
        padding: 80px 0;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-image {
        order: -1;
    }
    
    .cta-image img {
        max-width: 400px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 17px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }
    
    .cta-wrapper {
        gap: 2rem;
    }
    
    .cta-image img {
        max-width: 320px;
    }
    
    .cta-content h2 {
        font-size: 30px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .cta-image img {
        max-width: 280px;
    }
}