/* ================================================================
   ALMA COSMÉTICOS — Curso de Extensão em Gel
   Arquivo: style.css
   Descrição: Todos os estilos da landing page
   Responsividade: Mobile-first (otimizado para celular)
   Paleta: Rosa Milkshake + Dourado + Plum
   ================================================================ */

/* ── FONTES EXTERNAS (Google Fonts) ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400&family=Inter:wght@400;500;600;700;800&display=swap');


/* ================================================================
   VARIÁVEIS DE COR
   ================================================================ */
:root {
  --rosa:       #E91E8C;      /* Rosa principal */
  --rosa-dark:  #C2185B;      /* Rosa escuro */
  --rosa-light: #FFF0F7;      /* Rosa clarinho (fundo) */
  --rosa-pale:  #FFE4F0;      /* Rosa pálido */
  --rosa-mid:   #F48FB1;      /* Rosa médio */
  --plum:       #3D1A2E;      /* Vinho/Plum (textos e fundos escuros) */
  --ouro:       #FFB300;      /* Dourado */
  --ouro-light: #FFD54F;      /* Dourado claro */
  --branco:     #FFFFFF;
  --cinza-txt:  #5A3A4A;      /* Texto cinza-rosado */
}


/* ================================================================
   RESET E BASE
   ================================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* Remove highlight azul no mobile */
}

html {
  scroll-behavior: smooth; /* Rolagem suave para âncoras */
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--rosa-light);
  color: var(--plum);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden; /* Evita scroll horizontal */
}


/* ================================================================
   TOPBAR — Barra de urgência fixa no topo
   ================================================================ */
.topbar {
  background: var(--plum);
  color: var(--ouro-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 100; /* Fica acima de tudo */
}
.topbar span {
  color: #fff;
}


/* ================================================================
   HERO — Seção principal com gradiente e ilustração SVG
   ================================================================ */
.hero {
  background: linear-gradient(160deg, #AD1457 0%, #C2185B 35%, #E91E8C 70%, #F06292 100%);
  color: #fff;
  text-align: center;
  padding: 0 0 44px;
  position: relative;
  overflow: hidden;
}

/* Padrão de bolinhas decorativas no fundo do hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* Container da ilustração SVG da mão */
.hero-illustration {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: block;
  padding: 10px 30px 0;
  position: relative;
  z-index: 1;
}

/* Badge dourado "22 Anos de Mercado" */
.hero-badge {
  display: inline-block;
  background: var(--ouro);
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin: 10px 0 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.hero-copy {
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
}

/* Título principal do hero */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 7.5vw, 42px); /* Responsivo entre 26px e 42px */
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero h1 em {
  color: var(--ouro-light);
  font-style: normal;
}

/* Subtítulo do hero */
.hero-sub {
  font-size: 16px;
  opacity: 0.92;
  max-width: 400px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-sub strong {
  color: var(--ouro-light);
}


/* ================================================================
   BOTÃO CTA — Usado em todas as seções
   ================================================================ */
.cta-btn {
  display: block;
  width: calc(100% - 40px);
  max-width: 400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFB300 0%, #FFD54F 50%, #FFB300 100%);
  color: var(--plum);
  font-size: 17px;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 2px 6px rgba(255,179,0,0.4);
  cursor: pointer;
  border: none;
  line-height: 1.3;
  transition: transform 0.15s;
}
.cta-btn:active {
  transform: scale(0.97); /* Feedback visual ao tocar */
}

/* Texto de segurança abaixo do botão CTA */
.cta-lock {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  text-align: center;
}


/* ================================================================
   STATS BAR — Barra de números (alunas, anos, aprovação, preço)
   ================================================================ */
.stats-bar {
  background: var(--branco);
  border-bottom: 3px solid var(--rosa-pale);
  display: flex;
  justify-content: space-around;
  padding: 18px 10px;
}
.stat {
  text-align: center;
}
.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--rosa-dark);
  display: block;
  line-height: 1;
}
.stat .lbl {
  font-size: 11px;
  color: #888;
  margin-top: 3px;
}


/* ================================================================
   ELEMENTOS GENÉRICOS DE SEÇÃO
   ================================================================ */
section {
  padding: 50px 20px;
}

/* Tag/label de categoria acima dos títulos */
.tag {
  display: inline-block;
  background: var(--rosa-pale);
  color: var(--rosa-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* Títulos H2 globais */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--plum);
}
h2 em {
  color: var(--rosa-dark);
  font-style: normal;
}

/* Parágrafos globais */
p {
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--cinza-txt);
}
p:last-child {
  margin-bottom: 0;
}


/* ================================================================
   SEÇÃO DE ÁUDIO — Depoimentos em voz (Web Speech API)
   ================================================================ */
.audio-section {
  background: var(--plum);
  padding: 36px 20px;
  text-align: center;
}
.audio-section p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

/* Container dos cards de áudio */
.audio-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

/* Card individual de depoimento em áudio */
.audio-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(249,197,209,0.2);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.audio-card:active {
  background: rgba(255,255,255,0.14);
}

/* Botão play/pause */
.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rosa);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(233,30,140,0.4);
}

/* Avatar circular com inicial do nome */
.audio-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.audio-info {
  text-align: left;
  flex: 1;
}
.audio-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.audio-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 2px 0 4px;
}

/* Tag de renda dentro do card */
.income-tag {
  display: inline-block;
  background: var(--ouro);
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
}

/* Status de reprodução (texto abaixo dos cards) */
#audio-status {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-top: 14px;
  min-height: 18px;
  font-style: italic;
}

/* Animação de onda sonora */
@keyframes wave {
  0%, 100% { height: 5px; }
  50%       { height: 16px; }
}
.waveform {
  display: none;       /* Oculto por padrão */
  gap: 3px;
  align-items: center;
  height: 20px;
}
.waveform.playing {
  display: flex;       /* Aparece quando tocando */
}
.waveform span {
  display: inline-block;
  width: 3px;
  background: var(--rosa);
  border-radius: 2px;
  animation: wave 0.5s infinite ease-in-out;
}
/* Delays escalonados para efeito visual */
.waveform span:nth-child(2) { animation-delay: 0.1s; }
.waveform span:nth-child(3) { animation-delay: 0.2s; }
.waveform span:nth-child(4) { animation-delay: 0.3s; }
.waveform span:nth-child(5) { animation-delay: 0.4s; }


/* ================================================================
   SEÇÃO DOR / AGITAÇÃO — "Cansada de trabalhar muito e ganhar pouco?"
   ================================================================ */
.agitation {
  background: #1E0A18;
  color: #fff;
}
.agitation h2 {
  color: #fff;
}
.agitation h2 em {
  color: var(--rosa-mid);
  font-style: normal;
}

/* Comparativo visual CLT vs Nail Designer */
.clt-visual {
  width: 100%;
  max-width: 340px;
  margin: 24px auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.salary-card {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.salary-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.salary-value {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.salary-value.red   { color: #FF6B6B; } /* Vermelho para salário baixo */
.salary-value.green { color: #69F0AE; } /* Verde para salário alto */

.vs-badge {
  background: var(--rosa);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
}

/* Cards de dores/objeções */
.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.pain-card {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--rosa);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
}
.pain-card strong {
  color: #fff;
}


/* ================================================================
   DEPOIMENTOS — Avatares CSS com iniciais
   ================================================================ */
.testimonials {
  background: var(--branco);
}
.testi-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.testi-card {
  background: var(--rosa-pale);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(194,24,91,0.1);
}
.testi-header {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  border: 3px solid rgba(255,255,255,0.4);
}
.testi-meta {
  flex: 1;
}
.testi-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--plum);
}
.testi-city {
  font-size: 13px;
  color: #888;
}
.testi-income {
  display: inline-block;
  background: var(--rosa-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 50px;
  margin-top: 5px;
}
.testi-body {
  padding: 0 20px 22px;
}
.testi-stars {
  color: var(--ouro);
  font-size: 18px;
  margin-bottom: 8px;
}
.testi-quote {
  font-size: 15px;
  color: var(--cinza-txt);
  font-style: italic;
  line-height: 1.7;
}


/* ================================================================
   AUTORIDADE — "22 anos de mercado"
   ================================================================ */
.authority {
  background: linear-gradient(135deg, #C2185B 0%, #E91E8C 100%);
  color: #fff;
  text-align: center;
}
.authority h2 { color: #fff; }
.authority em { color: var(--ouro-light); font-style: normal; }
.authority p  { color: rgba(255,255,255,0.88); }

/* Container do círculo de anos */
.years-visual {
  margin: 28px auto;
  max-width: 320px;
}

/* Círculo grande com "22 anos" */
.years-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 3px solid rgba(255,179,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 40px rgba(255,179,0,0.15), 0 0 80px rgba(255,179,0,0.08);
}
.years-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--ouro-light);
  line-height: 1;
}
.years-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* Grid de badges de autoridade */
.auth-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.auth-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.auth-badge .icon  { font-size: 28px; display: block; margin-bottom: 8px; }
.auth-badge .title { font-size: 13px; font-weight: 700; color: var(--ouro-light); }
.auth-badge .sub   { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }


/* ================================================================
   CONTEÚDO DO CURSO — Módulos
   ================================================================ */
.curriculum {
  background: var(--rosa-light);
}

/* Lista vertical de módulos */
.modules {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.module {
  background: var(--branco);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(194,24,91,0.07);
}
.mod-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--rosa-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.mod-text h4 { font-size: 15px; font-weight: 700; color: var(--plum); margin-bottom: 3px; }
.mod-text p  { font-size: 13px; color: #888; margin: 0; }


/* ================================================================
   OFERTA / PREÇO — Seção de compra
   ================================================================ */
.offer-section {
  background: var(--plum);
  text-align: center;
}
.offer-section h2 { color: #fff; }
.offer-section em { color: var(--ouro-light); font-style: normal; }

/* Mockup visual do curso (CSS puro) */
.course-mockup {
  width: 100%;
  max-width: 320px;
  margin: 24px auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px 20px;
  position: relative;
}
.mockup-screen {
  background: linear-gradient(135deg, #C2185B, #E91E8C);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  text-align: center;
}
.mockup-title { font-size: 13px; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.mockup-icon  { font-size: 48px; display: block; margin: 10px 0; }
.mockup-sub   { font-size: 11px; color: rgba(255,255,255,0.7); }
.mockup-modules {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 12px;
}
.mockup-dot   { width: 8px; height: 8px; border-radius: 50%; background: var(--ouro); flex-shrink: 0; }
.mockup-label { font-size: 12px; color: rgba(255,255,255,0.7); }

/* Pilha de valor (o que está incluso) */
.stack {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 6px 16px;
  margin: 20px 0;
}
.stack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 10px;
}
.stack-row:last-child { border-bottom: none; }
.stack-left  { display: flex; align-items: center; gap: 10px; text-align: left; }
.stack-check { color: var(--ouro); font-size: 18px; flex-shrink: 0; }
.stack-name  { font-size: 14px; font-weight: 600; color: #fff; }
.stack-old   { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: line-through; white-space: nowrap; }

/* Caixa de preço */
.price-box {
  background: var(--branco);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 3px solid var(--ouro);
  box-shadow: 0 0 40px rgba(255,179,0,0.15);
}
.price-label { font-size: 13px; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.price-was   { font-size: 16px; color: #bbb; text-decoration: line-through; margin: 4px 0; }
.price-now {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--rosa-dark);
  line-height: 1;
  margin: 6px 0;
}
.price-now sup  { font-size: 28px; vertical-align: super; }
.price-inst     { font-size: 15px; color: #666; margin-top: 6px; }
.price-inst strong { color: var(--rosa-dark); }


/* ================================================================
   GARANTIA
   ================================================================ */
.guarantee {
  background: var(--branco);
  text-align: center;
}
.guarantee-box {
  background: var(--rosa-pale);
  border: 2px solid var(--rosa-mid);
  border-radius: 20px;
  padding: 28px 22px;
  margin-top: 24px;
}
.guarantee-box .shield { font-size: 56px; display: block; margin-bottom: 12px; }
.guarantee-box h3      { font-size: 20px; font-weight: 800; color: var(--rosa-dark); margin-bottom: 10px; }
.guarantee-box p       { font-size: 15px; color: var(--cinza-txt); }


/* ================================================================
   IDENTIDADE / VISÃO — "Você está comprando liberdade"
   ================================================================ */
.identity {
  background: linear-gradient(160deg, #C2185B 0%, #E91E8C 100%);
  color: #fff;
  text-align: center;
}
.identity h2 { color: #fff; }
.identity em { color: var(--ouro-light); font-style: normal; }

/* Grade de cards de nova vida */
.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.life-card {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
}
.life-card .lc-icon  { font-size: 36px; display: block; margin-bottom: 10px; }
.life-card .lc-title { font-size: 14px; font-weight: 700; color: var(--ouro-light); }
.life-card .lc-sub   { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* Gráfico de barras de potencial de renda */
.income-bar-section {
  margin: 28px 0;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
}
.income-bar-title { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.income-item { margin-bottom: 14px; }
.income-item:last-child { margin-bottom: 0; }
.income-row  { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.income-name { color: rgba(255,255,255,0.75); }
.income-val  { font-weight: 700; color: #fff; }
.income-track { background: rgba(255,255,255,0.1); border-radius: 4px; height: 8px; overflow: hidden; }
.income-fill  { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--ouro), var(--ouro-light)); }


/* ================================================================
   FAQ — Perguntas frequentes
   ================================================================ */
.faq {
  background: var(--rosa-light);
}
details {
  background: var(--branco);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(194,24,91,0.06);
}
summary {
  font-size: 15px;
  font-weight: 700;
  color: var(--plum);
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::after       { content: '＋'; color: var(--rosa); font-size: 18px; flex-shrink: 0; }
details[open] summary::after { content: '－'; }
details p { padding: 0 18px 16px; margin: 0; font-size: 15px; }


/* ================================================================
   FINAL CTA — Seção de fechamento
   ================================================================ */
.final-cta {
  background: linear-gradient(160deg, #C2185B 0%, #E91E8C 100%);
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
}

/* Pílula de urgência */
.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}


/* ================================================================
   STICKY BOTTOM BAR — Barra fixa de compra no rodapé
   ================================================================ */
.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--plum);
  padding: 12px 16px 20px;
  z-index: 99;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  text-align: center;
}
.sticky p        { color: rgba(255,255,255,0.75); font-size: 12px; margin-bottom: 8px; }
.sticky .cta-btn { padding: 15px 20px; font-size: 16px; }


/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #120510;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 28px 20px 110px; /* padding-bottom extra para não sobrepor sticky */
  font-size: 12px;
  line-height: 1.8;
}


/* ================================================================
   IMAGENS IA — Geradas via Pollinations.ai
   Links das imagens utilizadas:
   Hero:        https://image.pollinations.ai/prompt/...seed=101
   Dor/CLT:     https://image.pollinations.ai/prompt/...seed=202
   Nail Art 1:  https://image.pollinations.ai/prompt/...seed=311
   Nail Art 2:  https://image.pollinations.ai/prompt/...seed=322
   Nail Art 3:  https://image.pollinations.ai/prompt/...seed=333
   Nail Art 4:  https://image.pollinations.ai/prompt/...seed=344
   Autoridade:  https://image.pollinations.ai/prompt/...seed=455
   Técnica:     https://image.pollinations.ai/prompt/...seed=566
   Lifestyle:   https://image.pollinations.ai/prompt/...seed=688
   ================================================================ */
.ai-img {
  width: 100%;
  max-width: 440px;
  margin: 22px auto 6px;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.ai-caption {
  text-align: center;
  font-size: 11px;
  opacity: 0.45;
  margin-bottom: 20px;
  font-style: italic;
}

/* Galeria 2x2 de nail art */
.ai-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0 6px;
}
.ai-gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
