/* ==========================================================================
   Design Tokens & Variáveis globais
   ========================================================================== */
:root {
  /* Paleta de Cores - Mundo Mimoso Logo */
  --color-primary: #FFF8E1;
  /* Rosa principal -> Amarelo Suave */
  --color-primary-dark: #FFD54F;
  --color-secondary: #4DD0E1;
  /* Turquesa / Teal */
  --color-secondary-soft: #E0F7FA;
  --color-accent: #BA68C8;
  /* Roxo / Lilás */
  --color-accent-soft: #F3E5F5;
  --color-success: #FFD54F;
  /* Amarelo Sol */
  --color-success-soft: #FFF8E1;

  --color-bg: #FDFBF7;
  /* Off-white base */
  --color-bg-alt: #F4EFE6;
  /* Off-white mais escuro */
  --color-text: #3A3A3A;
  /* Grafite */
  --color-text-light: #64748b;
  --color-white: #FFFFFF;

  /* Tipografia */
  --font-heading: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;

  /* Estrutura */
  --container-width: 1140px;

  /* Bordas e Sombras */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-blob: 40% 60% 70% 30% / 40% 50% 60% 50%;

  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-color: 0 15px 30px rgba(255, 140, 105, 0.25);

  /* Animações */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.bg-light {
  background-color: var(--color-bg-alt);
}

.bg-yellow {
  background-color: var(--color-primary);
}

.bg-blue {
  background-color: var(--color-secondary);
}

.bg-coral {
  background-color: var(--color-accent);
}

.bg-green {
  background-color: var(--color-success);
}

.bg-yellow-soft {
  background-color: #FFF6D9;
}

.bg-blue-soft {
  background-color: var(--color-secondary-soft);
}

.bg-coral-soft {
  background-color: var(--color-accent-soft);
}

.color-yellow {
  color: var(--color-success);
}

.color-blue {
  color: var(--color-secondary);
}

.color-coral {
  color: var(--color-primary);
}

/* ==========================================================================
   Tipografia
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 12px;
  background-color: var(--color-accent-soft);
  padding: 4px 16px;
  border-radius: 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 12px 35px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn i {
  font-size: 1.25rem;
}

@keyframes pulse-btn {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(186, 104, 200, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(186, 104, 200, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(186, 104, 200, 0);
  }
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(186, 104, 200, 0.3);
  animation: pulse-btn 2s infinite;
}

.btn-primary:hover, .btn-primary:active {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(186, 104, 200, 0.4);
  animation: none; /* Stop pulsing on hover so the hover transform takes over cleanly */
}

.btn-primary:active {
  transform: translateY(0) scale(0.95);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 2px solid #EAEAEA;
}

.btn-secondary:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

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

.btn-large {
  padding: 16px 45px;
  font-size: 1.25rem;
}

.btn-full {
  width: 100%;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
  transition: var(--transition);
}

.btn-text:hover {
  gap: 12px;
  color: #FA7952;
}

/* ==========================================================================
   Header & Navegação
   ========================================================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.header.scrolled {
  /* No longer fixed, so shadow isn't needed, but keeping it just in case */
  box-shadow: none;
  height: 120px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 90px;
  width: auto;
  mix-blend-mode: multiply;
  transition: var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-light);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 3px;
  transition: var(--transition);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-text);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 160px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge-bncc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-success-soft);
  color: #2F784B;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.badge-bncc i {
  font-size: 1.125rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title .highlight {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: var(--color-primary);
  opacity: 0.4;
  z-index: -1;
  border-radius: 6px;
  transform: rotate(-1deg);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  object-fit: cover;
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar.more {
  background-color: var(--color-primary);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.hero-social-proof span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.hero-image-wrapper {
  position: relative;
}

.blob-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background-color: var(--color-secondary-soft);
  border-radius: var(--radius-blob);
  z-index: -1;
  animation: blob-bounce 8s infinite alternate;
}

@keyframes blob-bounce {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transform: rotate(2deg);
  transition: var(--transition-slow);
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Washi Tapes */
.floating-element {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tape-1 {
  width: 120px;
  height: 30px;
  background-color: rgba(255, 217, 102, 0.7);
  /* Yellow tape */
  top: -15px;
  right: 40px;
  transform: rotate(15deg);
}

.tape-2 {
  width: 100px;
  height: 30px;
  background-color: rgba(127, 199, 217, 0.7);
  /* Blue tape */
  bottom: -15px;
  left: 20px;
  transform: rotate(-10deg);
}

.floating-card {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background-color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-family: var(--font-hand);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: rotate(-5deg);
}

/* ==========================================================================
   Benefícios
   ========================================================================== */
.benefits {
  padding: 100px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: var(--color-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  position: relative;
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  z-index: -1;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card:hover::before {
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  color: var(--color-text);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ==========================================================================
   Módulos
   ========================================================================== */
.modules {
  padding: 100px 0;
}

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

.module-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.module-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-huge {
  font-size: 5rem;
  opacity: 0.8;
  transition: var(--transition);
}

.module-card:hover .icon-huge {
  transform: scale(1.1);
}

.module-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--color-primary);
  color: var(--color-text);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.module-badge.new {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.module-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.module-age {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.module-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.module-desc {
  color: var(--color-text-light);
  margin-bottom: 24px;
  flex-grow: 1;
}

.module-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #EEE;
}

.module-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-text);
}

/* ==========================================================================
   Como Funciona (Timeline)
   ========================================================================== */
.how-it-works {
  padding: 100px 0;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 4px;
  background-color: var(--color-secondary-soft);
  z-index: 1;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 16px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-white);
  border: 4px solid var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-secondary);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(40px);
  width: 24px;
  height: 24px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 3;
}

.timeline-step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.timeline-step p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ==========================================================================
   Provas Sociais / Depoimentos
   ========================================================================== */
.testimonials {
  padding: 100px 0;
  background-image:
    radial-gradient(var(--color-primary) 2px, transparent 2px),
    radial-gradient(var(--color-secondary) 2px, transparent 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  background-color: var(--color-bg);
}

.stats-banner {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: space-around;
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
}

.stat-item h4 {
  font-size: 3rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item h4::before {
  content: '+';
}

.stat-item h4.no-plus::before {
  content: none;
}

.stat-item span {
  font-weight: 700;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

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

.testimonial-card {
  background-color: var(--color-white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.clip {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 15px;
  background-color: var(--color-primary);
  border-radius: 8px;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.stars {
  color: var(--color-primary);
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 24px;
}

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ==========================================================================
   Planos e Preços
   ========================================================================== */
.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.highlighted {
  border: 3px solid var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 6px 20px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EEE;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.pricing-header p {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: var(--color-text);
}

.currency {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 8px;
  margin-right: 4px;
}

.amount {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
}

.cents {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 8px;
}

.period {
  font-size: 0.9rem;
  color: var(--color-text-light);
  align-self: flex-end;
  margin-bottom: 8px;
  margin-left: 8px;
}

.cash-price {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-success);
}

.pricing-features {
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pricing-features i {
  color: var(--color-success);
  font-size: 1.25rem;
}

.pricing-features li.unavailable {
  color: #AAA;
}

.pricing-features li.unavailable i {
  color: #AAA;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.guarantee i {
  color: var(--color-secondary);
  font-size: 1.25rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 100px 0;
}

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

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--color-accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--color-text-light);
}

/* ==========================================================================
   CTA Final
   ========================================================================== */
.cta-final {
  padding: 120px 0;
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.cta-final-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.7);
}

.handwritten-note {
  font-family: var(--font-hand);
  font-size: 2rem;
  color: var(--color-accent);
  margin-top: 24px;
  transform: rotate(-3deg);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #222222;
  color: #FFFFFF;
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo .logo-img {
  height: 60px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #AAAAAA;
  margin: 20px 0;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--color-primary);
  color: var(--color-text);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-security h4 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--color-white);
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #AAAAAA;
  transition: var(--transition);
}

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

.footer-contact p {
  color: #AAAAAA;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-schedule {
  font-size: 0.85rem;
  margin-top: 16px;
  opacity: 0.7;
}

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sec-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #AAAAAA;
  font-size: 0.95rem;
}

.sec-badge i {
  color: var(--color-success);
  font-size: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #777777;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  transition: var(--transition);
}

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

/* ==========================================================================
   Animações Globais e Utilitários
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.shadow-pulse {
  animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 105, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 140, 105, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 105, 0);
  }
}

.bounce {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(-5deg);
  }

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

  100% {
    transform: translateY(0) rotate(-5deg);
  }
}

.cta-bounce:hover {
  animation: wobble 1s ease-in-out;
}

@keyframes wobble {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }

  75% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* ==========================================================================
   Media Queries (Responsividade)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    gap: 30px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    gap: 20px;
  }

  .pricing-card {
    padding: 40px 30px;
  }

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

@media (max-width: 768px) {
  .header {
    height: 100px;
  }

  .header-container {
    position: relative;
    justify-content: flex-start;
  }

  .mobile-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .nav-link {
    font-size: 1.5rem;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

  .hero-subtitle {
    margin: 0 auto 30px;
  }

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

  .hero-social-proof {
    justify-content: center;
  }

  .badge-bncc {
    margin: 0 auto 24px;
  }

  .modules-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.highlighted {
    transform: scale(1);
  }

  .timeline {
    flex-direction: column;
    gap: 40px;
  }

  .timeline::before {
    left: 40px;
    top: 0;
    width: 4px;
    height: 100%;
  }

  .timeline-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
  }

  .step-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .step-number {
    top: -10px;
    right: auto;
    left: 0;
    transform: none;
  }

  .stats-banner {
    flex-direction: column;
    gap: 30px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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

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

  .hero-buttons .btn {
    width: auto;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Utility Classes for Mobile/Desktop visibility
   ========================================================================== */
.mobile-only {
  display: none !important;
}

@media (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
    flex-direction: column;
  }
}

/* Catalog Modal */
.catalog-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.catalog-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.catalog-modal {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
}

.catalog-modal-overlay.active .catalog-modal {
  transform: translateY(0);
}

.catalog-modal h3 {
  margin-top: 0;
  color: var(--color-primary-dark);
  font-family: 'Baloo 2', cursive;
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-align: center;
}

.catalog-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.catalog-modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog-list a {
  display: block;
  padding: 15px;
  background: var(--color-bg);
  border: 1px solid #ddd;
  border-radius: 10px;
  color: #444;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  text-align: center;
}

.catalog-list a:hover {
  background: var(--color-primary); /* fallback soft primary */
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 98, 146, 0.15);
}

/* Previews Section */
.previews {
  background-color: #fff;
}

.previews-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.preview-module {
  background: var(--color-bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.preview-module h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary-dark);
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
}

.flipbook-container {
  margin: 0 auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border-radius: 4px;
}

.flip-page {
  background-color: white;
  border: solid 1px hsl(0, 0%, 90%);
  overflow: hidden;
  box-shadow: inset -2px 0 5px rgba(0,0,0,0.05);
}

.flip-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-page {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-light);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  padding: 1rem;
}