/* Campanha: Dia das Mães */

/* Banner de urgência */
.urgency {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--bg);
  padding: 0.65rem 0;
  text-align: center;
  font-size: var(--step--1);
  box-shadow: var(--shadow-sm);
}

.urgency .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Hero */
.hero {
  padding: 3rem 0;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--step--1);
  color: var(--primary);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero .lead {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: var(--step-1);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-copy {
  text-align: center;
}

/* Polaroid */
.polaroid {
  position: relative;
  background: #fff;
  padding: 0.85rem 0.85rem 1.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  margin: 0 auto;
  max-width: 360px;
  transition: transform 0.3s ease;
}

.polaroid:hover {
  transform: rotate(0);
}

.polaroid-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.polaroid-caption {
  margin-top: 0.75rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary);
  font-size: var(--step-1);
}

.tape {
  position: absolute;
  top: -16px;
  right: 24px;
  width: 96px;
  height: 28px;
  background: rgba(13, 99, 244, 0.25);
  transform: rotate(8deg);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
}

@media (width >= 700px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Section helpers */
.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin: 0 auto 2.5rem;
}

/* Example */
.example {
  padding: 4rem 0 2rem;
  text-align: center;
}

.example-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 2.5rem auto 0;
  max-width: 60rem;
  align-items: start;
  justify-items: center;
}

@media (min-width: 760px) {
  .example-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
  }
}

.example-frame {
  margin: 0;
  width: 100%;
  max-width: 24rem;
  background: #fff;
  padding: 0.85rem 0.85rem 1.25rem;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}

.example-frame.example-square {
  transform: rotate(1deg);
  max-width: 28rem;
}

.example-frame:hover {
  transform: rotate(0);
}

.example-foot {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
}

.example-frame img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  display: block;
}

.example-frame.placeholder {
  background: linear-gradient(135deg, var(--bg), rgba(13, 99, 244, 0.08));
  min-height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-style: italic;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  transform: none;
}

.example-frame.placeholder::before {
  content: 'Exemplo de entrega aparece aqui';
}

.example-caption {
  margin-top: 0.75rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: var(--step--1);
}

/* How */
.how {
  background: var(--surface);
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  gap: 1.25rem;
}

.step {
  text-align: center;
}

.step-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: var(--step-1);
}

.step p {
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: var(--step--1);
}

@media (width >= 700px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing */
.pricing {
  padding: 4rem 0;
}

.pricing-wrap {
  max-width: 28rem;
}

.pricing-card {
  text-align: center;
}

.pill {
  display: inline-block;
  background: rgba(13, 99, 244, 0.1);
  color: var(--primary);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: var(--step--1);
  font-weight: 500;
  margin: 0 0 1rem;
}

.pill-success {
  background: rgba(31, 138, 79, 0.1);
  color: var(--success);
}

.price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0.25rem 0 0.5rem;
}

.price-now {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--ink);
  line-height: 1;
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
}

.price-desc {
  color: var(--ink-soft);
  margin: 0 auto;
}

.bonus {
  background: rgba(200, 154, 77, 0.15);
  color: var(--ink);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  margin: 1.25rem 0;
  font-size: var(--step--1);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  font-size: var(--step-1);
  padding: 1rem 1.5rem;
}

/* Order */
.order {
  background: rgba(13, 99, 244, 0.04);
  padding: 4rem 0;
}

.order-wrap {
  max-width: 36rem;
}

.form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-weight: 500;
  font-size: var(--step--1);
  color: var(--ink);
}

.field .muted {
  color: var(--muted);
  font-weight: 400;
}

.field input[type='text'],
.field input[type='email'],
.field input[type='tel'],
.field input[type='file'],
.field textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: var(--step-0);
  width: 100%;
  min-height: 44px;
  font-family: inherit;
}

.field textarea {
  resize: vertical;
  line-height: 1.5;
  min-height: 8rem;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-color: var(--primary);
}

.field input[type='file']::file-selector-button {
  margin-right: 0.75rem;
  padding: 0.5rem 0.85rem;
  border: 0;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.field-row {
  display: grid;
  gap: 1.25rem;
}

@media (width >= 600px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.fine {
  font-size: var(--step--1);
  color: var(--ink-soft);
  text-align: center;
  margin: 0;
}

.form-error {
  background: rgba(201, 60, 60, 0.08);
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: var(--step--1);
}

.success {
  margin-top: 2rem;
  text-align: center;
}

.pix-box {
  background: var(--bg);
  border: 1px dashed var(--line);
  padding: 1rem;
  border-radius: var(--radius);
  margin: 1rem 0;
}

.pix-box code {
  font-family: 'Courier New', monospace;
  font-size: var(--step-0);
  word-break: break-all;
  color: var(--ink);
}

.pix-qr {
  margin: 1.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pix-qr img {
  display: block;
  max-width: 240px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border: 8px solid var(--bg);
  border-radius: var(--radius);
  background: #fff;
}

.pix-qr figcaption {
  margin-top: 0.5rem;
}

.divider {
  border: none;
  border-top: 1px dashed var(--line);
  margin: 2rem 0 1.5rem;
}

.faq {
  padding: 4rem 0 3rem;
  background: var(--bg);
}

.faq .container {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq-item:first-of-type {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: var(--step-1);
  padding: 0.25rem 2rem 0.25rem 0;
  list-style: none;
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-item p {
  margin: 0.75rem 0 0.5rem;
  line-height: 1.6;
  color: var(--ink-soft, var(--ink));
}

.faq-foot {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================================================
 * Footer V2 · espelho do sagazlab.io (tema escuro, scoped pra não vazar)
 * ============================================================================ */
.footer-v2 {
  --fv2-bg: #0c0f1f;
  --fv2-card: #11152a;
  --fv2-border: rgba(255, 255, 255, 0.12);
  --fv2-teal: #00f0ff;
  --fv2-text-primary: #e6e9f5;
  --fv2-text-secondary: #c5ccdf;
  --fv2-text-muted: #b0b8cf;
  --fv2-font-mono: 'JetBrains Mono', 'Courier New', ui-monospace, monospace;
  --fv2-radius-sm: 8px;
  --fv2-radius-pill: 999px;
  --fv2-transition: 180ms ease;

  background: var(--fv2-bg);
  border-top: 1px solid var(--fv2-border);
  color: var(--fv2-text-primary);
  padding: 48px 0 28px;
  margin-top: 4rem;
}

.footer-v2 .container { max-width: 1100px; padding: 0 24px; }

.footer-v2-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.8fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.4fr);
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .footer-v2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-v2-grid { grid-template-columns: 1fr; }
}

.footer-v2-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-v2 .nav-logo {
  font-family: var(--fv2-font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 10px;
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: var(--fv2-radius-sm);
  color: var(--fv2-teal);
  background: rgba(0, 240, 255, 0.07);
  line-height: 1;
  letter-spacing: 0.04em;
  display: inline-block;
}

.footer-v2 .nav-name {
  font-family: var(--fv2-font-mono);
  font-size: 0.88rem;
  color: var(--fv2-text-primary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-v2-brand p {
  margin: 10px 0 0;
  color: var(--fv2-text-secondary);
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-v2-links h2,
.footer-v2-links h4,
.footer-v2-newsletter h2,
.footer-v2-newsletter h4 {
  margin: 0 0 14px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fv2-text-muted);
  font-family: var(--fv2-font-mono);
  font-weight: 600;
}

.footer-v2-links a {
  display: block;
  margin-bottom: 8px;
  color: var(--fv2-text-secondary);
  font-size: 0.86rem;
  transition: color var(--fv2-transition);
  text-decoration: none;
}

.footer-v2-links a:hover,
.footer-v2-links a:focus-visible {
  color: var(--fv2-teal);
  outline: none;
}
.footer-v2-links a:focus-visible { text-decoration: underline; }

.footer-v2-newsletter p {
  margin: 0 0 12px;
  color: var(--fv2-text-secondary);
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-v2 .newsletter-form { display: grid; gap: 8px; }

.footer-v2 .newsletter-form input {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--fv2-border);
  border-radius: var(--fv2-radius-pill);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fv2-text-primary);
  padding: 10px 16px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--fv2-transition), box-shadow var(--fv2-transition);
}

.footer-v2 .newsletter-form input::placeholder { color: var(--fv2-text-muted); }

.footer-v2 .newsletter-form input:focus {
  border-color: var(--fv2-teal);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
}

.footer-v2 .newsletter-form button {
  background: var(--fv2-teal);
  color: #0c0f1f;
  border: 0;
  border-radius: var(--fv2-radius-pill);
  padding: 12px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--fv2-font-mono);
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.02em;
  transition: opacity var(--fv2-transition);
}
.footer-v2 .newsletter-form button:hover { opacity: 0.85; }

.footer-v2 .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-v2-bottom {
  border-top: 1px solid var(--fv2-border);
  padding-top: 16px;
}

.footer-v2-bottom p {
  margin: 0;
  color: var(--fv2-text-muted);
  font-size: 0.74rem;
  font-family: var(--fv2-font-mono);
  letter-spacing: 0.02em;
}

.footer-v2 .footer-cnpj {
  margin-top: 6px !important;
  opacity: 0.55;
  font-size: 0.68rem !important;
  letter-spacing: 0.03em;
}

/* ============================================================================
 * Botão verde WhatsApp + seção de contato final
 * ============================================================================ */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #0a2e1d;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--step-0);
  line-height: 1;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #1ebd5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  color: #0a2e1d;
}

.btn-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.4);
  outline-offset: 3px;
}

.btn-whatsapp-lg {
  padding: 1.1rem 2.2rem;
  font-size: var(--step-1);
}

.btn-whatsapp .wa-icon {
  flex-shrink: 0;
}

.faq-foot-cta {
  text-align: center;
  margin: 0.5rem 0 0;
}

.final-cta {
  padding: 4rem 0 5rem;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--line);
}

.final-cta .section-sub {
  max-width: 32rem;
}

.final-cta-btn {
  text-align: center;
  margin: 1.5rem 0 0;
}
