/* CSS Reset minimalista */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Variables */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  --font-montserrat: 'Montserrat', var(--font-sans);
  
  /* Color palette */
  --background: linear-gradient(135deg, hsl(220, 70%, 97%) 0%, hsl(210, 80%, 98%) 25%, hsl(200, 60%, 96%) 50%, hsl(220, 70%, 97%) 100%);
  --foreground: hsl(220, 8%, 13%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 8%, 13%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(220, 8%, 13%);
  --primary: 30 58 138; /* #1E3A8A */
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(217, 91%, 60%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(220, 13%, 91%);
  --muted-foreground: hsl(220, 8%, 46%);
  --accent: 253 82 75; /* #FD524B vermelho */
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(2, 95%, 64%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --success: hsl(142, 71%, 45%);      /* #22c55e */
  --success-foreground: hsl(0, 0%, 100%);
  --warning: 245 158 11; /* #F59E0B amarelo */
  --warning-foreground: hsl(0, 0%, 100%);
  --border: hsl(220, 13%, 91%);
  --input: hsl(220, 13%, 91%);
  --ring: 30 58 138; /* #1E3A8A */
  --radius: 12px;
}

/* Base styles */
body {
  font-family: var(--font-sans);
  background: linear-gradient(135deg, hsl(220, 70%, 97%) 0%, hsl(210, 80%, 98%) 25%, hsl(200, 60%, 96%) 50%, hsl(220, 70%, 97%) 100%) !important;
  color: hsl(220, 8%, 13%) !important;
  min-height: 100vh;
  scroll-behavior: smooth;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(30, 58, 138, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(253, 82, 75, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231E3A8A' fill-opacity='0.02'%3E%3Cpath d='M0 40h80v1H0zm40-40v80h1V0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
  animation: backgroundFloat 20s ease-in-out infinite alternate;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-montserrat);
}

/* Layout utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.min-h-screen { min-height: 100vh; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Background colors */
.bg-background {
  background: linear-gradient(135deg, hsl(220, 70%, 97%) 0%, hsl(210, 80%, 98%) 25%, hsl(200, 60%, 96%) 50%, hsl(220, 70%, 97%) 100%);
}
.bg-card { background-color: var(--card); }
.bg-white { background-color: white; }
.bg-red-500 { background-color: #ef4444; }
.bg-blue-600 { background-color: #2563eb; }
.bg-green-600 { background-color: #16a34a; }
.bg-success { background-color: hsl(142, 71%, 45%); }
.bg-success\/5 { background-color: hsla(142, 71%, 45%, 0.05); }
.bg-success\/10 { background-color: hsla(142, 71%, 45%, 0.1); }
.bg-primary\/5 { background-color: hsla(30, 58%, 138%, 0.05); }
.bg-primary\/10 { background-color: hsla(30, 58%, 138%, 0.1); }
.bg-secondary\/5 { background-color: hsla(217, 91%, 60%, 0.05); }
.bg-secondary\/10 { background-color: hsla(217, 91%, 60%, 0.1); }
.bg-accent\/10 { background-color: hsla(253, 82%, 75%, 0.1); }
.bg-yellow-100 { background-color: #fef3c7; }
.bg-orange-100 { background-color: #fed7aa; }
.bg-blue-50 { background-color: #eff6ff; }

.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }

/* === (NOVO) Gradiente vertical usado no selo da garantia === */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }

/* Text colors */
.text-foreground { color: var(--foreground); }
.text-white { color: white; }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: rgb(var(--primary)); }
.text-secondary { color: var(--secondary); }
.text-accent { color: rgb(var(--accent)); }
.text-success { color: var(--success); }
.text-red-500 { color: #ef4444; }
.text-yellow-800 { color: #92400e; }
.text-orange-600 { color: #ea580c; }
.text-green-600 { color: #16a34a; }
.text-blue-900 { color: #1e3a8a; }
.text-gray-500 { color: #6b7280; }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }

/* Typography */
.font-montserrat { font-family: var(--font-montserrat); }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.italic { font-style: italic; }
.line-through { text-decoration: line-through; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Spacing */
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-0 { padding-top: 0; }
.pb-4 { padding-bottom: 1rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Layout */
.flex { display: flex; }
.grid { display: grid; }
.inline-block { display: inline-block; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.flex-shrink-0 { flex-shrink: 0; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }

/* Sizing */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-40 { width: 10rem; }
.w-64 { width: 16rem; }
/* === (NOVO) tamanhos usados no SVG do escudo === */
.w-24 { width: 6rem; }
.h-24 { height: 6rem; }

.w-full { width: 100%; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-40 { height: 10rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-lg { max-width: 32rem; }
.max-w-\[1080px\] { max-width: 1080px; }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; }
.border-border { border-color: var(--border); }
.border-gray-200 { border-color: #e5e7eb; }
.border-yellow-200 { border-color: #fde68a; }
.border-blue-600 { border-color: #2563eb; }
.border-muted { border-color: var(--muted); }
.border-primary\/20 { border-color: hsla(30, 58%, 138%, 0.2); }
.border-success\/20 { border-color: hsla(142, 71%, 45%, 0.2); }
.border-border\/20 { border-color: hsla(220, 13%, 91%, 0.2); }
/* === (NOVO) borda verde sólida do círculo === */
.border-success { border-color: hsl(142, 71%, 45%); }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-md { border-radius: 0.375rem; }

/* Shadows */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* Positioning */
.top-6 { top: 1.5rem; }
.top-8 { top: 2rem; }
.top-10 { top: 2.5rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.bottom-10 { bottom: 2.5rem; }
.left-6 { left: 1.5rem; }
.left-8 { left: 2rem; }
.left-10 { left: 2.5rem; }
.left-1\/2 { left: 50%; }
.right-6 { right: 1.5rem; }
.right-8 { right: 2rem; }
.right-10 { right: 2.5rem; }
.-top-3 { top: -0.75rem; }
.transform { transform: var(--tw-transform); }
.-translate-x-1\/2 { --tw-translate-x: -50%; transform: translateX(var(--tw-translate-x)); }

/* Opacity */
.opacity-10 { opacity: 0.1; }

/* Animations and transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 { transition-duration: 300ms; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:text-secondary:hover { color: var(--secondary); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* Custom utilities */
.gradient-text {
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-item {
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  min-width: 60px;
  text-align: center;
}

.section-with-shapes { position: relative; overflow: hidden; }
.section-with-shapes::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231E3A8A' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-shapes { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; z-index: 0; }
.hero-shapes::before { content: '📚'; position: absolute; top: 10%; right: 10%; font-size: 2rem; opacity: 0.1; }
.hero-shapes::after { content: '✏️'; position: absolute; bottom: 15%; left: 15%; font-size: 1.5rem; opacity: 0.1; }

.hover-lift { transition: all 0.3s ease-out; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04); }

.pulse-button { animation: pulse 1.2s ease-in-out infinite; }

/* Image handling */
img { max-width: 100%; height: auto; }
.object-cover { object-fit: cover; }
.mix-blend-multiply { mix-blend-mode: multiply; }

/* Button styles */
button {
  border: none; cursor: pointer; font-family: inherit; font-size: inherit;
  border-radius: 0.5rem; transition: all 0.15s ease-in-out;
}
button:hover { transform: translateY(-1px); }
button:active { transform: translateY(0); }

/* Link styles */
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

/* Details/Summary for FAQ */
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+'; float: right; font-weight: bold; transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
}
details[open] summary::after { transform: rotate(45deg); }

/* Keyframes */
@keyframes backgroundFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10px, -5px) scale(1.02); }
  100% { transform: translate(5px, -10px) scale(0.98); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive design */
@media (min-width: 768px) {
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:max-w-lg { max-width: 32rem; }
}

@media (min-width: 1024px) {
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
}

/* Flex direction for mobile */
.flex-col { flex-direction: column; }

/* Additional utility classes */
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }

/* =========================================================
   AJUSTES SOLICITADOS
   =======================================================*/

/* 1) Checks da seção "Por que escolher" todos na mesma cor (verde) */
#porque-escolher svg { color: var(--success) !important; }

/* 2) Card do Pacote Premium com borda azul + badge "MAIS VENDIDO" */
.pricing-card{
  position: relative;
  background:#fff;
  border-radius:18px;
  padding:28px 22px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}
.pricing-card.featured{
  border:2px solid #2563eb; /* azul */
  box-shadow:0 10px 28px rgba(37,99,235,.18);
}
.pricing-card .badge-top{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:#F59E0B;           /* laranja */
  color:#fff;
  font-weight:800;
  font-size:12px;
  letter-spacing:.3px;
  padding:7px 14px;
  border-radius:999px;
  box-shadow:0 8px 18px rgba(245,158,11,.35);
  white-space:nowrap;
  z-index:2;
}

/* 3) Pequena utilidade para os contadores */
.counter-value { display:inline-block; min-width: 2ch; }

/* === Utilitárias específicas do selo da GARANTIA === */
/* Gradiente: from-success/10 -> to-success/20 */
.from-success\/10 {
  --tw-gradient-from: hsla(142, 71%, 45%, 0.10);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,255,255,0));
}
.to-success\/20 { --tw-gradient-to: hsla(142, 71%, 45%, 0.20); }
/* (a .bg-gradient-to-b já está definida acima) */
