/* =============================================
   PRISMA INCLUSIVA - CSS OTIMIZADO
   Performance + Conversão + Mobile First
   ============================================= */

/* Reset mínimo */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  /* Cores */
  --primary: hsl(45, 95%, 48%);
  --primary-dark: hsl(45, 95%, 42%);
  --primary-light: hsla(45, 95%, 48%, 0.15);
  --primary-fg: hsl(0, 0%, 9%);
  
  --bg: hsl(0, 0%, 100%);
  --bg-alt: hsl(0, 0%, 97%);
  --fg: hsl(0, 0%, 9%);
  --fg-muted: hsl(0, 0%, 40%);
  
  --card-bg: hsl(0, 0%, 100%);
  --card-border: hsl(0, 0%, 90%);
  
  --success: hsl(142, 76%, 36%);
  --error: hsl(0, 84%, 60%);
  
  /* Tipografia */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Espaçamentos */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Bordas */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  /* Transições */
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block }
button { font-family: inherit }

/* =============================================
   TIPOGRAFIA
   ============================================= */
h1, h2, h3 { font-weight: 700; line-height: 1.2; color: var(--fg) }
h1 { font-size: clamp(1.75rem, 5vw, 3rem) }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem) }
h3 { font-size: clamp(1.125rem, 2vw, 1.25rem) }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-sm { max-width: 48rem }

.section {
  padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-3xl) 0 }
}

.section-alt { background: var(--bg-alt) }

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-xl);
}

.section-header p {
  color: var(--fg-muted);
  margin-top: var(--space-sm);
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--card-border);
}

.cta-text {
  color: var(--fg-muted);
  margin-bottom: var(--space-md);
}

/* =============================================
   COMPONENTES - BOTÕES
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), filter var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98) }

.btn-cta {
  background: var(--primary);
  color: var(--primary-fg);
}

.btn-cta:hover { filter: brightness(1.08) }

.btn-lg { padding: 1rem 2rem; font-size: 1.125rem }
.btn-xl { padding: 1.25rem 2.5rem; font-size: 1.25rem }

.btn svg {
  width: 1.25em;
  height: 1.25em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Pulse glow animation */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 hsla(45, 95%, 48%, 0.5) }
  50% { box-shadow: 0 0 0 12px hsla(45, 95%, 48%, 0) }
}

.pulse-glow { animation: pulseGlow 2s ease-in-out infinite }

/* =============================================
   COMPONENTES - BADGES
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--primary-fg);
}

.badge-lg { padding: 0.5rem 1rem; font-size: 0.875rem }

.badge-urgent { 
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: 0.8 } }
.pulse { animation: pulse 2s ease-in-out infinite }

/* =============================================
   COMPONENTES - CARDS
   ============================================= */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

/* =============================================
   ÍCONES SVG
   ============================================= */
svg {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-check {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.icon-arrow, .icon-clock {
  width: 1.25rem;
  height: 1.25rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  max-width: 36rem;
  color: white;
}

.hero-badge { margin-bottom: var(--space-lg) }

.hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
}

.hero-benefits {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
}

.hero-benefits .icon-check { color: var(--primary) }

.hero-cta-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-price {
  text-align: center;
  margin-bottom: var(--space-md);
}

.price-old {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: line-through;
}

.price-new {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
}

.price-info {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-xs);
}

.hero-cta-box .btn { width: 100% }

.hero-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-md);
}

/* =============================================
   PROVA SOCIAL
   ============================================= */
.section-proof { background: var(--bg-alt) }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.proof-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.proof-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.proof-number {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--fg);
}

.proof-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

@media (min-width: 768px) {
  .proof-label { font-size: 0.875rem }
}

/* =============================================
   PROBLEMAS
   ============================================= */
.problems-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr) }
}

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition);
}

.problem-card:hover { transform: translateY(-2px) }

.problem-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

.problem-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.problem-card h3 { margin-bottom: var(--space-xs) }
.problem-card p { color: var(--fg-muted); font-size: 0.9375rem }

/* =============================================
   FEATURES / SOLUÇÃO
   ============================================= */
.features-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr) }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr) }
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  transition: transform var(--transition);
}

.feature-card:hover { transform: translateY(-2px) }

.feature-card-bonus {
  background: var(--primary-light);
  border-color: var(--primary);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.feature-card-bonus .feature-icon { background: hsla(45, 95%, 48%, 0.3) }

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.feature-content h3 { margin-bottom: var(--space-sm) }

.feature-content ul {
  list-style: none;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.feature-content li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: var(--space-xs);
}

.feature-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.bonus-tag {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* =============================================
   MAPA ESTRATÉGICO
   ============================================= */
.map-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .map-grid { grid-template-columns: 1fr 1fr }
}

.map-content h2 { margin-bottom: var(--space-sm) }
.map-desc { color: var(--fg-muted); margin-bottom: var(--space-lg) }

.map-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.map-list li {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.map-number {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.map-list strong { display: block; margin-bottom: var(--space-xs) }
.map-list p { font-size: 0.875rem; color: var(--fg-muted) }

.map-image {
  order: -1;
}

@media (min-width: 768px) {
  .map-image { order: 1 }
}

.map-image img { border-radius: var(--radius-xl) }

/* =============================================
   CARROSSEL
   ============================================= */
.section-carousel {
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-alt) 100%);
}

.carousel-wrapper {
  position: relative;
}

.carousel {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .carousel-slide { flex: 0 0 50% }
}

@media (min-width: 1024px) {
  .carousel-slide { flex: 0 0 33.333% }
}

.carousel-slide img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--card-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}

.carousel-btn:hover { background: white }
.carousel-btn svg { width: 1rem; height: 1rem; color: var(--fg) }
.carousel-prev { left: var(--space-md) }
.carousel-next { right: var(--space-md) }

/* =============================================
   DEPOIMENTOS
   ============================================= */
.testimonials-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr) }
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--primary);
  stroke: var(--primary);
}

.testimonial-card blockquote {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  color: var(--fg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* =============================================
   OFERTA BOX
   ============================================= */
.section-offer { background: var(--bg-alt) }

.offer-box {
  max-width: 40rem;
  margin: 0 auto;
  background: var(--card-bg);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
}

@media (min-width: 768px) {
  .offer-box { padding: var(--space-2xl) }
}

.offer-header { margin-bottom: var(--space-xl) }
.offer-header h2 { margin: var(--space-md) 0 var(--space-sm) }

.offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-md);
}

.offer-price .price-old {
  font-size: 1.25rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.offer-price .price-main {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  color: var(--primary);
}

.offer-savings {
  color: var(--success);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: var(--space-sm);
}

.offer-benefits {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.offer-benefits ul { list-style: none }

.offer-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.offer-box > .btn { width: 100%; margin-bottom: var(--space-lg) }

.offer-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  text-align: left;
}

.offer-guarantee img { width: 4rem; height: 4rem; object-fit: contain }
.offer-guarantee strong { display: block }
.offer-guarantee p { font-size: 0.8125rem; color: var(--fg-muted) }

.offer-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* =============================================
   GARANTIA
   ============================================= */
.guarantee-grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .guarantee-grid { grid-template-columns: repeat(2, 1fr) }
}

.guarantee-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
}

.guarantee-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.guarantee-card h3 { margin-bottom: var(--space-sm) }
.guarantee-card p { color: var(--fg-muted); font-size: 0.9375rem }

.guarantee-seal {
  display: flex;
  justify-content: center;
}

.guarantee-seal img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  transition: background var(--transition);
}

.faq-trigger:hover { background: var(--bg-alt) }

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(180deg) }

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

.faq-item.active .faq-content { max-height: 300px }

.faq-content p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--fg-muted);
  line-height: 1.7;
}

/* =============================================
   CTA FINAL
   ============================================= */
.section-final { background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%) }

.final-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .final-grid { grid-template-columns: 1fr 1fr }
}

.final-content h2 { margin-bottom: var(--space-lg) }

.final-benefits {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.final-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.final-urgency {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.final-image {
  display: flex;
  justify-content: center;
}

.final-image img {
  max-width: 20rem;
  border-radius: var(--radius-xl);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  padding: var(--space-2xl) 0;
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr }
}

.footer-brand h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.footer-links ul { list-style: none }

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  padding: var(--space-xs) 0;
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--card-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* =============================================
   MOBILE CTA FIXO
   ============================================= */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--card-border);
  z-index: 100;
  display: block;
}

@media (min-width: 768px) {
  .mobile-cta { display: none }
}

.mobile-cta .btn { width: 100% }

/* Espaço extra no mobile para não cobrir conteúdo */
@media (max-width: 767px) {
  .footer { padding-bottom: 6rem }
}

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: var(--space-md);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 26rem;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s;
}

.modal-overlay.active .modal { transform: scale(1) }

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--fg-muted);
  transition: all var(--transition);
}

.modal-close:hover { background: var(--card-border); color: var(--fg) }
.modal-close svg { width: 1rem; height: 1rem }

.modal-header {
  padding: var(--space-xl) var(--space-xl) var(--space-md);
  text-align: center;
}

.modal-header .badge { margin-bottom: var(--space-sm) }
.modal-header h3 { margin-bottom: var(--space-xs) }
.modal-header p { color: var(--fg-muted); font-size: 0.9375rem }

.modal-form {
  padding: 0 var(--space-xl) var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem var(--space-md);
  font-size: 1rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--fg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group input::placeholder { color: var(--fg-muted) }

.form-error {
  display: block;
  font-size: 0.75rem;
  color: var(--error);
  margin-top: var(--space-xs);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: var(--space-md);
}

.form-note svg { width: 1rem; height: 1rem }

.modal-form .btn { width: 100%; margin-top: var(--space-md) }

/* Estado de sucesso */
.modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  text-align: center;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  color: var(--success);
  margin-bottom: var(--space-md);
}

.modal-success h3 { margin-bottom: var(--space-xs) }
.modal-success p { color: var(--fg-muted); margin-bottom: var(--space-lg) }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg) } }

.spinner {
  width: 1.5rem;
  height: 1.5rem;
  animation: spin 1s linear infinite;
}

/* Utilitários */
.hidden { display: none !important }
