/* ============================================
   AVENTURITAS — Universo Infantil Mágico
   Cores extraídas diretamente da logo:
   laranja vivo, amarelo dourado, verde lush,
   cyan brilhante, roxo, creme quente
   Mobile-first · Fredoka + Nunito
   v3.0
   ============================================ */

/* =============================================
   0. CSS CUSTOM PROPERTIES — PALETA DA LOGO
   ============================================= */
:root {
  /* Fundos — creme quente inspirado na logo */
  --bg-main: #fef6e8;
  --bg-soft: #fff9f0;
  --bg-elevated: #fdf3e0;
  --card: #ffffff;
  --line-soft: #f0dfc4;
  --line-muted: #e6d4b5;

  /* Texto — ALTO CONTRASTE, marrom-escuro quente */
  --text-main: #2b1810;
  --text-secondary: #3d2518;
  --text-light: #5c3d2e;
  --text-muted: #7a5c4a;

  /* Cores da logo — vibrantes e alegres */
  --accent-orange: #E8632B;
  --accent-yellow: #F5C842;
  --accent-green: #4DAA3D;
  --accent-blue: #4DBCE0;
  --accent-purple: #8B45A6;
  --accent-red: #D63B30;
  --accent-navy: #2B3A5C;

  /* Versões soft para fundos de cards/badges */
  --yellow-soft: #FFF3D0;
  --orange-soft: #FFEADB;
  --green-soft: #E2F5D6;
  --blue-soft: #DBF2FA;
  --purple-soft: #F0E2F8;
  --red-soft: #FFE0DD;

  /* Sombras quentes */
  --shadow-soft: 0 10px 30px rgba(43, 24, 16, 0.08);
  --shadow-card: 0 6px 18px rgba(43, 24, 16, 0.07);
  --shadow-hover: 0 14px 36px rgba(43, 24, 16, 0.13);

  /* Raios — bem arredondados, estilo infantil */
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
}

/* =============================================
   1. GLOBAL BASE & FONTS
   ============================================= */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  overflow-x: hidden;
  line-height: 1.7;
  font-family: 'Nunito', 'Segoe UI', sans-serif !important;
  background-color: var(--bg-main) !important;
  color: var(--text-main) !important;
  /* Pattern de fundo — estrelas, livros, nuvens, foguete, lupa — como na logo */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Cg fill='none' stroke='%23e6c98a' stroke-width='0.9' opacity='0.35'%3E%3Cpolygon points='42,18 46,31 60,31 49,39 53,52 42,44 31,52 35,39 24,31 38,31'/%3E%3Cpath d='M145,50 Q160,38 175,50 L175,78 Q160,66 145,78 Z M175,50 Q190,38 205,50 L205,78 Q190,66 175,78 Z'/%3E%3Cpath d='M260,28 Q260,12 276,16 Q287,5 300,18 Q314,15 312,30 Q316,42 300,40 L268,40 Q258,42 260,28 Z'/%3E%3Cellipse cx='58' cy='155' rx='15' ry='20'/%3E%3Cpath d='M58,175 L58,200' stroke-dasharray='3,4'/%3E%3Ccircle cx='195' cy='148' r='13'/%3E%3Cline x1='204' y1='158' x2='218' y2='172' stroke-width='1.2'/%3E%3Cpolygon points='290,138 293,146 301,146 295,152 297,160 290,155 283,160 285,152 279,146 287,146'/%3E%3Cpath d='M18,228 Q82,205 148,228 Q214,252 280,218' stroke-dasharray='4,6'/%3E%3Crect x='102' y='252' width='32' height='32' rx='3'/%3E%3Cline x1='108' y1='260' x2='128' y2='260' stroke-width='0.5'/%3E%3Cline x1='108' y1='266' x2='124' y2='266' stroke-width='0.5'/%3E%3Cline x1='108' y1='272' x2='126' y2='272' stroke-width='0.5'/%3E%3Ccircle cx='240' cy='268' r='14'/%3E%3Cpath d='M240,254 L240,258 M240,278 L240,282 M226,268 L230,268 M250,268 L254,268' stroke-width='0.8'/%3E%3Cpath d='M240,262 L243,268 L237,268 Z' fill='%23e6c98a' stroke='none' opacity='0.5'/%3E%3Cpath d='M295,248 C295,239 284,239 284,248 C284,257 295,268 295,268 C295,268 306,257 306,248 C306,239 295,239 295,248 Z' stroke-width='0.7'/%3E%3Cpath d='M52,85 L48,72 L56,72 Z' stroke-width='0.6'/%3E%3Cpath d='M52,72 L52,58 M48,62 L56,62' stroke-width='0.6'/%3E%3Ccircle cx='165' cy='18' r='2' fill='%23e6c98a' stroke='none' opacity='0.5'/%3E%3Ccircle cx='310' cy='95' r='1.5' fill='%23e6c98a' stroke='none' opacity='0.5'/%3E%3Ccircle cx='22' cy='298' r='2' fill='%23e6c98a' stroke='none' opacity='0.5'/%3E%3Ccircle cx='270' cy='188' r='1.5' fill='%23e6c98a' stroke='none' opacity='0.4'/%3E%3Ccircle cx='130' cy='135' r='1' fill='%23e6c98a' stroke='none' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 320px 320px;
  background-attachment: fixed;
}

/* Font override global — Nunito para tudo */
*,
*::before,
*::after {
  font-family: 'Nunito', 'Segoe UI', sans-serif !important;
}

/* Fredoka para headings — lúdico e amigável */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Nunito', sans-serif !important;
  letter-spacing: 0.01em;
  text-wrap: balance;
  line-height: 1.2;
  font-weight: 600 !important;
  color: var(--text-main) !important;
}

/* Fredoka também para bold grandes */
[class*="font-extrabold"],
[class*="text-3xl"][class*="font-bold"],
[class*="text-4xl"],
[class*="text-5xl"],
[class*="text-6xl"] {
  font-family: 'Fredoka', 'Nunito', sans-serif !important;
}

p, li, span, a, label, button, input, textarea, select {
  text-wrap: pretty;
}

/* =============================================
   2. OVERRIDES DE COR — BACKGROUNDS
   Escuro → creme quente
   ============================================= */

/* Navy backgrounds → creme */
.bg-\[\#1B2B4C\] {
  background-color: var(--bg-main) !important;
}

.bg-\[\#1B2B4C\]\/95 {
  background-color: rgba(254, 246, 232, 0.97) !important;
}

.bg-\[\#1B2B4C\]\/80 {
  background-color: rgba(254, 246, 232, 0.92) !important;
}

.bg-\[\#1B2B4C\]\/30,
.bg-\[\#1B2B4C\]\/20,
.bg-\[\#1B2B4C\]\/10 {
  background-color: rgba(254, 246, 232, 0.6) !important;
}

.bg-\[\#2A3D66\] {
  background-color: var(--bg-elevated) !important;
}

/* Beige original → branco puro (card) */
.bg-\[\#F7F4EE\] {
  background-color: var(--card) !important;
}

/* Gold → amarelo da logo */
.bg-\[\#F6B93B\] {
  background-color: var(--accent-yellow) !important;
}

.bg-\[\#F6B93B\]\/20,
.bg-\[\#F6B93B\]\/15,
.bg-\[\#F6B93B\]\/10 {
  background-color: var(--yellow-soft) !important;
}

/* WhatsApp green */
.bg-\[\#25D366\] {
  background-color: #25D366 !important;
}

/* Gradients */
.from-\[\#1B2B4C\] { --tw-gradient-from: var(--bg-main) !important; }
.to-\[\#1B2B4C\] { --tw-gradient-to: var(--bg-soft) !important; }
.via-\[\#1B2B4C\] { --tw-gradient-via: var(--bg-main) !important; }
.from-\[\#2A3D66\] { --tw-gradient-from: var(--bg-elevated) !important; }
.to-\[\#2A3D66\] { --tw-gradient-to: var(--bg-soft) !important; }

/* =============================================
   3. OVERRIDES DE COR — TEXTO (ALTO CONTRASTE)
   ============================================= */

/* Texto claro (era branco sobre escuro) → marrom escuro */
.text-\[\#F7F4EE\] {
  color: var(--text-main) !important;
}

/* Texto muted claro → marrom médio */
.text-\[\#B8C4DC\] {
  color: var(--text-secondary) !important;
}

/* Navy text → marrom escuro */
.text-\[\#1B2B4C\] {
  color: var(--text-main) !important;
}

.text-\[\#1B2B4C\]\/80 {
  color: var(--text-secondary) !important;
}

.text-\[\#1B2B4C\]\/70,
.text-\[\#1B2B4C\]\/60 {
  color: var(--text-light) !important;
}

.text-\[\#1B2B4C\]\/30 {
  color: var(--text-muted) !important;
}

.text-\[\#2A3D66\] {
  color: var(--text-main) !important;
}

/* Gold text → laranja vivo da logo (destaque forte) */
.text-\[\#F6B93B\] {
  color: var(--accent-orange) !important;
}

/* White text em dark bg → marrom escuro */
[class*="bg-[#1B2B4C]"] .text-white,
[class*="bg-[#1B2B4C]"] [class*="text-white"] {
  color: var(--text-main) !important;
}

/* =============================================
   4. OVERRIDES DE COR — BORDAS
   ============================================= */

.border-\[\#1B2B4C\] {
  border-color: var(--line-soft) !important;
}

.border-\[\#1B2B4C\]\/20,
.border-\[\#1B2B4C\]\/10 {
  border-color: var(--line-soft) !important;
}

.border-\[\#F6B93B\] {
  border-color: var(--accent-yellow) !important;
}

.divide-\[\#1B2B4C\] > * + * {
  border-color: var(--line-soft) !important;
}

/* =============================================
   5. OVERRIDES — HOVER STATES
   ============================================= */

.hover\:bg-\[\#2A3D66\]:hover {
  background-color: var(--bg-elevated) !important;
}

.hover\:bg-\[\#1B2B4C\]:hover {
  background-color: var(--bg-soft) !important;
}

.hover\:text-\[\#F6B93B\]:hover {
  color: var(--accent-orange) !important;
}

.hover\:bg-\[\#e5a82a\]:hover {
  background-color: #e5a82a !important;
}

/* =============================================
   6. OVERRIDES — RING / OUTLINE
   ============================================= */

.ring-\[\#1B2B4C\] { --tw-ring-color: var(--line-soft) !important; }
.ring-\[\#F6B93B\] { --tw-ring-color: var(--accent-yellow) !important; }

/* =============================================
   7. ANIMATIONS
   ============================================= */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

@keyframes bounceIn {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}

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

/* Scroll reveal */
section.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

section.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   8. NAVBAR — CREME CLARO, AMIGÁVEL
   ============================================= */

nav, header,
[class*="fixed"][class*="top-0"],
[class*="sticky"][class*="top-0"] {
  backdrop-filter: blur(20px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
  background: rgba(254, 246, 232, 0.88) !important;
  border-bottom: 2px solid rgba(245, 200, 66, 0.2) !important;
  box-shadow: 0 3px 18px rgba(43, 24, 16, 0.06) !important;
}

[class*="bg-[#1B2B4C]/95"] {
  background: rgba(254, 246, 232, 0.95) !important;
}

/* Textos da navbar → marrom escuro */
nav a, nav button, nav span,
header a, header button, header span,
[class*="fixed"][class*="top-0"] a,
[class*="fixed"][class*="top-0"] button,
[class*="fixed"][class*="top-0"] span {
  color: var(--text-main) !important;
  font-weight: 700 !important;
}

/* CTA da navbar — laranja vibrante como na logo */
nav a[class*="rounded-full"][class*="bg-"],
nav button[class*="rounded-full"][class*="bg-[#F6B93B]"],
header a[class*="rounded-full"][class*="bg-"] {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #F07030 100%) !important;
  color: white !important;
  font-weight: 800 !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: 0 4px 16px rgba(232, 99, 43, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

nav a[class*="rounded-full"][class*="bg-"]:hover,
nav button[class*="rounded-full"][class*="bg-[#F6B93B]"]:hover {
  background: linear-gradient(135deg, #D4522D 0%, var(--accent-orange) 100%) !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 6px 22px rgba(232, 99, 43, 0.4) !important;
}

/* Navbar logo */
nav img[alt="Aventuritas"],
header img[alt="Aventuritas"] {
  height: 2.5rem !important;
  width: auto !important;
  filter: none !important;
}

/* Ícones navbar — cor escura */
nav svg, header svg,
[class*="fixed"][class*="top-0"] svg {
  color: var(--text-main) !important;
  stroke: var(--text-main) !important;
}

/* Mobile menu overlay — creme quente */
[class*="fixed"][class*="inset-0"][class*="bg-"] {
  background-color: rgba(254, 246, 232, 0.97) !important;
}

[class*="fixed"][class*="inset-0"] a,
[class*="fixed"][class*="inset-0"] button {
  color: var(--text-main) !important;
}

/* Navbar z-index */
nav, header,
[class*="fixed"][class*="top-0"][class*="z-"] {
  z-index: 100 !important;
}

/* =============================================
   9. HERO — MÁGICO, AVENTUREIRO, INFANTIL
   ============================================= */

section:first-of-type {
  background-color: var(--bg-main) !important;
  background-image:
    radial-gradient(ellipse at 15% 40%, rgba(77, 188, 224, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(245, 200, 66, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 85%, rgba(77, 170, 61, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(139, 69, 166, 0.08) 0%, transparent 45%) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

section:first-of-type img[alt="Aventuritas"] {
  filter: drop-shadow(0 10px 30px rgba(245, 200, 66, 0.3)) !important;
}

section:first-of-type h1 {
  color: var(--text-main) !important;
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(1.8rem, 5vw, 3.2rem) !important;
}

section:first-of-type p {
  color: var(--text-secondary) !important;
  font-weight: 600 !important;
}

/* Hero CTA — laranja vibrante com borda dourada */
section:first-of-type a[class*="rounded-full"][class*="font-bold"],
section:first-of-type button[class*="rounded-full"][class*="font-bold"] {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #F07030 100%) !important;
  color: white !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: 0 6px 24px rgba(232, 99, 43, 0.35), 0 0 0 3px rgba(245, 200, 66, 0.25) !important;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.03em !important;
  padding: 1rem 2.5rem !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

section:first-of-type a[class*="rounded-full"][class*="font-bold"]:hover,
section:first-of-type button[class*="rounded-full"][class*="font-bold"]:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 10px 34px rgba(232, 99, 43, 0.45), 0 0 0 4px rgba(245, 200, 66, 0.35) !important;
}

section:first-of-type p[class*="italic"] {
  color: var(--text-muted) !important;
  font-weight: 500 !important;
}

/* =============================================
   10. SECTION SPACING & SEPARATORS
   ============================================= */

section {
  padding-top: clamp(3.5rem, 7vw, 6rem) !important;
  padding-bottom: clamp(3.5rem, 7vw, 6rem) !important;
  background-color: transparent !important;
}

section:first-of-type {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Separadores entre seções — COLORIDO como a logo */
section + section::before {
  content: '★';
  display: block;
  text-align: center;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
  color: var(--accent-yellow);
  opacity: 0.6;
  letter-spacing: 0.5em;
}

/* Headings das seções — bem escuros e legíveis */
section h2 {
  color: var(--text-main) !important;
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 700 !important;
}

section h3 {
  color: var(--text-main) !important;
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 600 !important;
}

/* Parágrafos nas seções — contraste forte */
section p {
  color: var(--text-secondary) !important;
  font-weight: 500 !important;
}

/* Seções alternadas — sutil variação de fundo */
section:nth-of-type(even):not(:first-of-type):not(:last-of-type) {
  background-color: rgba(255, 249, 240, 0.7) !important;
}

section:nth-of-type(odd):not(:first-of-type):not(:last-of-type) {
  background-color: transparent !important;
}

/* =============================================
   11. CARDS — BRANCOS, QUENTES, INFANTIS
   ============================================= */

[class*="rounded-3xl"][class*="bg-[#F7F4EE]"],
[class*="rounded-2xl"][class*="bg-[#F7F4EE]"],
[class*="rounded-3xl"][class*="bg-white"],
[class*="rounded-2xl"][class*="bg-white"] {
  background-color: var(--card) !important;
  border: 2px solid var(--line-soft) !important;
  box-shadow: var(--shadow-card) !important;
  border-radius: var(--radius-lg) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease !important;
  will-change: transform;
}

[class*="rounded-3xl"][class*="bg-[#F7F4EE]"]:hover,
[class*="rounded-2xl"][class*="bg-[#F7F4EE]"]:hover,
[class*="rounded-3xl"][class*="bg-white"]:hover,
[class*="rounded-2xl"][class*="bg-white"]:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-hover) !important;
  border-color: rgba(245, 200, 66, 0.35) !important;
}

[class*="grid-cols-1"][class*="md:grid-cols-3"] > * {
  display: flex;
  flex-direction: column;
}

/* Ícones circulares dentro de cards — cores vibrantes da logo */
[class*="rounded-full"][class*="bg-[#F6B93B]"][class*="w-"] {
  background-color: var(--yellow-soft) !important;
  color: var(--accent-orange) !important;
}

[class*="rounded-full"][class*="bg-[#F6B93B]/20"],
[class*="rounded-full"][class*="bg-[#F6B93B]/15"],
[class*="rounded-full"][class*="bg-[#F6B93B]/10"] {
  background-color: var(--yellow-soft) !important;
}

/* =============================================
   12. PRICING — CORES DA LOGO, VIBRANTE
   ============================================= */

/* Todos os pricing cards */
[class*="md:grid-cols-3"] > [class*="rounded-3xl"] {
  position: relative;
  overflow: hidden;
  border-top: 5px solid transparent !important;
}

/* Plano 1 — AZUL CYAN (como o mar/lupa da logo) */
[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(1) {
  border-top-color: var(--accent-blue) !important;
  border-left: 2px solid rgba(77, 188, 224, 0.15) !important;
  border-right: 2px solid rgba(77, 188, 224, 0.15) !important;
}

[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(1)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(180deg, var(--blue-soft) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Plano 2 — VERDE LUSH (como a vegetação da logo) */
[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(2) {
  border-top-color: var(--accent-green) !important;
  border-left: 2px solid rgba(77, 170, 61, 0.15) !important;
  border-right: 2px solid rgba(77, 170, 61, 0.15) !important;
}

[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(180deg, var(--green-soft) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Plano 3 — LARANJA + AMARELO (como o título da logo) — DESTAQUE */
[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(3) {
  border-top-color: var(--accent-orange) !important;
  border-left: 2px solid rgba(232, 99, 43, 0.15) !important;
  border-right: 2px solid rgba(232, 99, 43, 0.15) !important;
  box-shadow: 0 8px 32px rgba(232, 99, 43, 0.12), 0 0 0 2px rgba(245, 200, 66, 0.15) !important;
  transform: scale(1.03);
}

[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(3)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(180deg, var(--orange-soft) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(3):hover {
  transform: scale(1.03) translateY(-6px) !important;
  box-shadow: 0 16px 44px rgba(232, 99, 43, 0.18), 0 0 0 3px rgba(245, 200, 66, 0.25) !important;
}

/* Títulos dos planos */
[class*="rounded-3xl"] [class*="text-xl"][class*="font-bold"] {
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 600 !important;
  color: var(--text-main) !important;
}

/* "Em breve" / preço — LARANJA forte, bem visível */
[class*="text-[#F6B93B]"][class*="font-bold"],
[class*="rounded-3xl"] [class*="text-2xl"][class*="font-bold"] {
  color: var(--accent-orange) !important;
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

/* Checks/ícones nos planos — coloridos por plano */
[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(1) svg {
  color: var(--accent-blue) !important;
}
[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(2) svg {
  color: var(--accent-green) !important;
}
[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(3) svg {
  color: var(--accent-orange) !important;
}

/* Botões nos pricing cards — coloridos por plano */
[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(1) [class*="rounded-full"][class*="font-bold"] {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #3AA8D0 100%) !important;
  color: white !important;
  box-shadow: 0 4px 14px rgba(77, 188, 224, 0.3) !important;
}
[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(2) [class*="rounded-full"][class*="font-bold"] {
  background: linear-gradient(135deg, var(--accent-green) 0%, #3D9A2D 100%) !important;
  color: white !important;
  box-shadow: 0 4px 14px rgba(77, 170, 61, 0.3) !important;
}
[class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(3) [class*="rounded-full"][class*="font-bold"] {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%) !important;
  color: white !important;
  box-shadow: 0 4px 14px rgba(232, 99, 43, 0.35) !important;
  font-size: 1.05rem !important;
}

/* =============================================
   13. BUTTONS — LÚDICOS E VIBRANTES
   ============================================= */

[class*="rounded-full"][class*="font-bold"],
button[class*="rounded-full"],
a[class*="rounded-full"] {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 700 !important;
}

/* Shine hover */
[class*="rounded-full"][class*="font-bold"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

[class*="rounded-full"][class*="font-bold"]:hover::after {
  left: 100%;
}

/* Botão gold padrão → laranja da logo */
[class*="rounded-full"][class*="bg-[#F6B93B]"] {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #F07030 100%) !important;
  color: white !important;
  box-shadow: 0 4px 18px rgba(232, 99, 43, 0.3) !important;
}

[class*="rounded-full"][class*="bg-[#F6B93B]"]:hover {
  box-shadow: 0 8px 26px rgba(232, 99, 43, 0.4) !important;
  transform: translateY(-2px) scale(1.02) !important;
}

/* WhatsApp */
[class*="rounded-full"][class*="bg-[#25D366]"],
a[class*="bg-[#25D366]"] {
  background-color: #25D366 !important;
  color: white !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3) !important;
}

/* Outline buttons */
[class*="rounded-full"][class*="border"] {
  border-color: var(--line-muted) !important;
  color: var(--text-main) !important;
  border-width: 2px !important;
}

[class*="rounded-full"][class*="border"]:hover {
  border-color: var(--accent-orange) !important;
  background-color: var(--orange-soft) !important;
  color: var(--accent-orange) !important;
}

/* =============================================
   14. INPUTS & FORMS
   ============================================= */

input, textarea, select {
  border-radius: var(--radius-sm) !important;
  border: 2px solid var(--line-soft) !important;
  background-color: var(--card) !important;
  color: var(--text-main) !important;
  font-weight: 600 !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent-blue) !important;
  box-shadow: 0 0 0 4px rgba(77, 188, 224, 0.2) !important;
  outline: none !important;
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted) !important;
  font-weight: 400 !important;
}

/* =============================================
   15. FAQ — AMIGÁVEL
   ============================================= */

[data-state="open"] {
  animation: fadeInUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

[class*="border"][class*="rounded"] {
  border-color: var(--line-soft) !important;
}

[class*="text-left"][class*="font-bold"],
[class*="text-left"][class*="font-semibold"] {
  color: var(--text-main) !important;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 800 !important;
}

button[class*="text-left"] svg {
  color: var(--accent-orange) !important;
}

/* =============================================
   16. TESTIMONIALS
   ============================================= */

[class*="rounded-2xl"][class*="bg-[#F7F4EE]"],
[class*="rounded-3xl"][class*="bg-[#F7F4EE]"] {
  border: 2px solid var(--line-soft) !important;
}

[class*="italic"][class*="text-base"],
[class*="italic"][class*="text-lg"] {
  color: var(--text-secondary) !important;
  font-weight: 600 !important;
}

[class*="rounded-full"] img[src*="avatar"] {
  border: 3px solid var(--accent-yellow) !important;
  box-shadow: 0 3px 10px rgba(245, 200, 66, 0.2) !important;
}

[class*="text-[#F6B93B]"] svg,
svg[class*="text-[#F6B93B]"] {
  color: var(--accent-yellow) !important;
}

/* =============================================
   17. FOOTER — CREME DIFERENCIADO
   ============================================= */

section:last-of-type,
footer {
  background-color: #f5ebce !important;
  border-top: 3px solid rgba(245, 200, 66, 0.25) !important;
}

section:last-of-type *,
footer * {
  color: var(--text-main) !important;
}

section:last-of-type p,
footer p,
section:last-of-type span,
footer span {
  color: var(--text-secondary) !important;
  font-weight: 500 !important;
}

section:last-of-type img[alt="Aventuritas"],
footer img[alt="Aventuritas"] {
  opacity: 0.95;
  transition: opacity 0.3s ease;
  filter: none !important;
}

section:last-of-type img[alt="Aventuritas"]:hover,
footer img[alt="Aventuritas"]:hover {
  opacity: 1;
}

section:last-of-type a,
footer a {
  color: var(--accent-orange) !important;
  font-weight: 700 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

section:last-of-type a:hover,
footer a:hover {
  color: var(--accent-red) !important;
}

section:last-of-type a[class*="bg-[#25D366]"],
footer a[class*="bg-[#25D366]"] {
  color: white !important;
}

/* =============================================
   18. MODAL / QUESTIONNAIRE
   ============================================= */

[class*="fixed"][class*="inset-0"][class*="z-"] {
  background-color: rgba(43, 24, 16, 0.45) !important;
  backdrop-filter: blur(5px) !important;
}

[class*="fixed"][class*="inset-0"] > [class*="rounded"],
[class*="fixed"][class*="inset-0"] [class*="bg-white"],
[class*="fixed"][class*="inset-0"] [class*="bg-[#F7F4EE]"] {
  background-color: var(--card) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 24px 70px rgba(43, 24, 16, 0.18) !important;
  border: 2px solid var(--line-soft) !important;
}

[class*="fixed"][class*="inset-0"] h2,
[class*="fixed"][class*="inset-0"] h3 {
  color: var(--text-main) !important;
  font-family: 'Fredoka', sans-serif !important;
}

[class*="fixed"][class*="inset-0"] p,
[class*="fixed"][class*="inset-0"] label,
[class*="fixed"][class*="inset-0"] span {
  color: var(--text-secondary) !important;
  font-weight: 600 !important;
}

/* =============================================
   19. SCROLLBAR — DOURADA
   ============================================= */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb {
  background: var(--accent-yellow);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-orange); }
html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-yellow) var(--bg-main);
}

/* =============================================
   20. SELEÇÃO DE TEXTO
   ============================================= */

::selection {
  background: rgba(245, 200, 66, 0.3);
  color: var(--text-main);
}

::-moz-selection {
  background: rgba(245, 200, 66, 0.3);
  color: var(--text-main);
}

/* =============================================
   21. FOCUS & ACESSIBILIDADE
   ============================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent-yellow);
  outline-offset: 2px;
  border-radius: 6px;
}

/* =============================================
   22. IMAGES
   ============================================= */

img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

img[src*="gallery"] {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-card) !important;
  border: 3px solid rgba(245, 200, 66, 0.15) !important;
}

img[src*="hero"] {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-soft) !important;
}

/* =============================================
   23. ELEMENTOS DECORATIVOS
   ============================================= */

/* Ícones circulares — bordas douradas, mais vivos */
[class*="w-16"][class*="h-16"][class*="rounded-full"],
[class*="w-12"][class*="h-12"][class*="rounded-full"],
[class*="w-14"][class*="h-14"][class*="rounded-full"] {
  border: 2px solid rgba(245, 200, 66, 0.3) !important;
  box-shadow: 0 4px 14px rgba(43, 24, 16, 0.06) !important;
}

/* Ícones alternados em grids — cores variadas da logo */
[class*="grid"] > *:nth-child(4n+1) [class*="rounded-full"][class*="bg-"] {
  background-color: var(--blue-soft) !important;
}
[class*="grid"] > *:nth-child(4n+2) [class*="rounded-full"][class*="bg-"] {
  background-color: var(--green-soft) !important;
}
[class*="grid"] > *:nth-child(4n+3) [class*="rounded-full"][class*="bg-"] {
  background-color: var(--orange-soft) !important;
}
[class*="grid"] > *:nth-child(4n+4) [class*="rounded-full"][class*="bg-"] {
  background-color: var(--purple-soft) !important;
}

/* SVGs dentro desses ícones — cores vibrantes */
[class*="grid"] > *:nth-child(4n+1) [class*="rounded-full"] svg {
  color: var(--accent-blue) !important;
}
[class*="grid"] > *:nth-child(4n+2) [class*="rounded-full"] svg {
  color: var(--accent-green) !important;
}
[class*="grid"] > *:nth-child(4n+3) [class*="rounded-full"] svg {
  color: var(--accent-orange) !important;
}
[class*="grid"] > *:nth-child(4n+4) [class*="rounded-full"] svg {
  color: var(--accent-purple) !important;
}

/* Step numbers — Fredoka */
[class*="rounded-full"][class*="w-8"],
[class*="rounded-full"][class*="w-10"],
[class*="rounded-full"][class*="w-6"][class*="h-6"][class*="bg-"] {
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 700 !important;
}

/* SVGs genéricos nas seções */
section svg:not([class*="text-"]) {
  color: var(--text-secondary);
}

/* =============================================
   24. MOBILE TYPOGRAPHY (< 640px)
   ============================================= */

@media (max-width: 640px) {

  [class*="text-xs"] {
    font-size: 0.8125rem !important;
    line-height: 1.4 !important;
  }

  [class*="text-sm"]:not(nav *):not([class*="tracking"]) {
    font-size: 0.9375rem !important;
    line-height: 1.5 !important;
  }

  [class*="text-base"] {
    line-height: 1.65 !important;
  }

  [class*="text-lg"] {
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
  }

  [class*="text-xl"]:not([class*="text-2xl"]):not([class*="text-3xl"]):not([class*="text-4xl"]):not([class*="text-5xl"]):not([class*="text-6xl"]) {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
  }

  [class*="text-2xl"]:not([class*="text-3xl"]):not([class*="text-4xl"]):not([class*="text-5xl"]):not([class*="text-6xl"]) {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
  }

  [class*="text-3xl"]:not([class*="text-4xl"]):not([class*="text-5xl"]):not([class*="text-6xl"]) {
    font-size: 1.875rem !important;
    line-height: 1.15 !important;
  }

  section h2,
  section [class*="text-2xl"][class*="font-extrabold"],
  section [class*="text-2xl"][class*="font-bold"] {
    font-size: 1.65rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
  }

  [class*="rounded-3xl"] [class*="text-xl"][class*="font-bold"] {
    font-size: 1.25rem !important;
  }

  [class*="text-[#F6B93B]"][class*="font-bold"],
  [class*="rounded-3xl"] [class*="text-2xl"] {
    font-size: 1.5rem !important;
  }

  [class*="rounded-3xl"] [class*="text-sm"] {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  button[class*="rounded-full"],
  a[class*="rounded-full"] {
    font-size: 1rem !important;
    padding: 0.875rem 1.75rem !important;
    min-height: 48px !important;
  }

  [class*="text-left"][class*="font-bold"],
  [class*="text-left"][class*="font-semibold"] {
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
  }

  [class*="italic"][class*="text-base"],
  [class*="italic"][class*="text-lg"] {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }

  footer [class*="text-xs"],
  section:last-of-type [class*="text-xs"] {
    font-size: 0.85rem !important;
  }
}

/* =============================================
   25. MOBILE LAYOUT (< 640px)
   ============================================= */

@media (max-width: 640px) {

  section {
    padding-top: clamp(2.5rem, 8vw, 3.5rem) !important;
    padding-bottom: clamp(2.5rem, 8vw, 3.5rem) !important;
  }

  section > div {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Hero mobile */
  section:first-of-type {
    padding-top: 42px !important;
  }

  section:first-of-type [class*="max-w-4xl"] {
    padding-top: 0.25rem !important;
    padding-bottom: 1rem !important;
  }

  section:first-of-type img[alt="Aventuritas"]:first-of-type {
    width: clamp(170px, 48vw, 220px) !important;
    margin-bottom: 0.75rem !important;
  }

  section:first-of-type h1 {
    font-size: clamp(1.5rem, 6.5vw, 2.25rem) !important;
    line-height: 1.12 !important;
    margin-bottom: 0.5rem !important;
  }

  section:first-of-type p[class*="text-base"],
  section:first-of-type p[class*="text-lg"],
  section:first-of-type p[class*="max-w-2xl"] {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.85rem !important;
  }

  section:first-of-type [class*="rounded-full"][class*="font-bold"] {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }

  section:first-of-type p[class*="italic"] {
    font-size: 0.82rem !important;
    margin-bottom: 0 !important;
  }

  /* Cards mobile */
  [class*="rounded-3xl"][class*="p-8"],
  [class*="rounded-3xl"][class*="p-6"] {
    padding: 1.75rem !important;
  }

  [class*="grid"][class*="gap-8"],
  [class*="grid"][class*="gap-12"] {
    gap: 1.25rem !important;
  }

  /* Pricing sem scale no mobile */
  [class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(3) {
    transform: none !important;
  }

  [class*="md:grid-cols-3"] > [class*="rounded-3xl"]:nth-child(3):hover {
    transform: translateY(-4px) !important;
  }

  /* Touch targets */
  a, button { min-height: 44px; }

  *, *::before, *::after { max-width: 100vw; }

  [class*="fixed"][class*="inset-0"] a,
  [class*="fixed"][class*="inset-0"] button {
    font-size: 1.1rem !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  [class*="space-y-3"] > * + * { margin-top: 1rem !important; }
  [class*="space-y-4"] > * + * { margin-top: 1.25rem !important; }

  [class*="w-16"][class*="h-16"][class*="rounded-full"] {
    width: 4.5rem !important;
    height: 4.5rem !important;
  }

  section:last-of-type img[alt="Aventuritas"],
  footer img[alt="Aventuritas"] {
    width: 200px !important;
    margin-bottom: 1.5rem !important;
  }

  section:last-of-type a,
  footer a {
    font-size: 0.95rem !important;
  }

  [class*="flex"][class*="items-center"][class*="gap-"] {
    gap: 0.75rem !important;
  }
}

/* Navbar mobile */
@media (max-width: 640px) {
  nav, header,
  [class*="fixed"][class*="top-0"],
  [class*="sticky"][class*="top-0"] {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }

  nav img[alt="Aventuritas"],
  header img[alt="Aventuritas"] {
    height: 1.75rem !important;
  }

  nav button svg, nav a svg {
    width: 20px !important;
    height: 20px !important;
  }

  nav [class*="relative"] button[class*="rounded-full"][class*="text-sm"] {
    padding: 0.25rem 0.4rem !important;
    gap: 0.15rem !important;
    font-size: 0.75rem !important;
  }

  nav [class*="relative"] button svg.w-4 {
    width: 14px !important;
    height: 14px !important;
  }

  nav [class*="relative"] button svg[class*="w-3"] {
    width: 10px !important;
    height: 10px !important;
  }
}

/* =============================================
   26. TABLET
   ============================================= */

@media (min-width: 641px) and (max-width: 1023px) {
  section {
    padding-top: clamp(3rem, 5vw, 4.5rem) !important;
    padding-bottom: clamp(3rem, 5vw, 4.5rem) !important;
  }

  section:first-of-type { padding-top: 60px !important; }

  section:first-of-type img[alt="Aventuritas"]:first-of-type {
    width: 250px !important;
  }

  [class*="grid"][class*="md:grid-cols-3"] {
    gap: 1.5rem !important;
  }
}

@media (min-width: 641px) {
  nav, header,
  [class*="fixed"][class*="top-0"] {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}

@media (min-width: 1280px) {
  section {
    padding-top: clamp(4.5rem, 5vw, 6rem) !important;
    padding-bottom: clamp(4.5rem, 5vw, 6rem) !important;
  }
}

/* =============================================
   27. REDUCED MOTION
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  section {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =============================================
   28. PRINT
   ============================================= */

@media print {
  nav, header, [class*="fixed"] { display: none !important; }
  section {
    break-inside: avoid;
    padding: 1rem 0 !important;
    opacity: 1 !important;
    transform: none !important;
  }
  body {
    background: white !important;
    background-image: none !important;
    color: #000 !important;
  }
}

/* =============================================
   29. POLIMENTO FINAL
   ============================================= */

[class*="rounded-3xl"],
[class*="rounded-2xl"] {
  position: relative;
}

a, button {
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a:hover {
  color: var(--accent-orange);
}

[class*="rounded-full"][class*="text-xs"],
[class*="rounded-full"][class*="text-sm"][class*="px-"] {
  border-radius: 50px !important;
  font-weight: 700 !important;
}

/* Select dropdown styling */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c3d2e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px !important;
}

/* Garantir texto dos cards SEMPRE legível */
[class*="rounded-3xl"] p,
[class*="rounded-2xl"] p,
[class*="rounded-3xl"] span,
[class*="rounded-2xl"] span,
[class*="rounded-3xl"] li,
[class*="rounded-2xl"] li {
  color: var(--text-secondary) !important;
  font-weight: 600 !important;
}

[class*="rounded-3xl"] h3,
[class*="rounded-3xl"] h4,
[class*="rounded-2xl"] h3,
[class*="rounded-2xl"] h4 {
  color: var(--text-main) !important;
  font-weight: 700 !important;
}

/* Links genéricos em seções */
section a:not([class*="rounded-full"]):not([class*="bg-"]) {
  color: var(--accent-orange) !important;
  font-weight: 700 !important;
  text-decoration: underline;
  text-decoration-color: rgba(232, 99, 43, 0.3);
  text-underline-offset: 3px;
}

section a:not([class*="rounded-full"]):not([class*="bg-"]):hover {
  color: var(--accent-red) !important;
  text-decoration-color: var(--accent-red);
}
