/* ============================================
   Cupons Gota — IDV
   Sage + Terracota sobre Linho Cru
   Fraunces (display) + Inter (body)
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #F5EFE4;  /* Linho Cru — palco principal */
  --primary-2:  #EEE5D2;  /* Linho mais quente */
  --secondary:  #6B8068;  /* Sage Estufa */
  --secondary-d:#566952;  /* Sage escuro */
  --accent:     #C26B4D;  /* Terracota Argila */
  --accent-d:   #A85839;  /* Terracota escura hover */
  --text:       #2A2823;  /* Tinta Castanha */
  --soft:       #9A9385;  /* Folha Seca */
  --line:       #E8DFD0;
  --white:      #FFFFFF;
}

html, body {
  background: var(--primary);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  padding: 36px 20px 120px;
  display: flex;
  justify-content: center;
}

main { width: 100%; max-width: 560px; }

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
a { color: inherit; text-decoration: none; }

/* ====== HEADER com foto Victor ====== */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.avatar-wrap {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  padding: 4px;
  background: var(--primary);
  box-shadow:
    0 0 0 1.5px var(--secondary),
    0 8px 24px rgba(42, 40, 35, 0.10);
}
.avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(107, 128, 104, 0.32);
}
.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 72% 35%;
  display: block;
}

.brand-label { text-align: center; }
.brand-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--secondary-d);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ====== HERO ====== */
.hero {
  padding: 8px 0 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  opacity: 0.78;
  margin-bottom: 28px;
  max-width: 460px;
}

/* ====== BULLETS ====== */
.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bullets li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text);
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 18px;
  height: 1.5px;
  background: var(--accent);
}

/* ====== CTA chamativo ====== */
.cta-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin: 12px 0 28px;
}

.cta-big {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--accent);
  color: var(--primary);
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow:
    0 4px 0 0 rgba(155, 75, 50, 0.5),
    0 12px 32px rgba(194, 107, 77, 0.30);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  overflow: hidden;
}
.cta-big::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(245, 239, 228, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}
.cta-big:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 0 rgba(155, 75, 50, 0.55),
    0 16px 40px rgba(194, 107, 77, 0.40);
}
.cta-big:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 0 rgba(155, 75, 50, 0.5), 0 6px 16px rgba(194, 107, 77, 0.25);
}

.cta-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 239, 228, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-icon svg { width: 24px; height: 24px; color: var(--primary); }

.cta-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}
.cta-main {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.82;
  margin-top: 2px;
}

.cta-arrow {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 600;
  opacity: 0.7;
  transition: transform 200ms;
}
.cta-big:hover .cta-arrow { transform: translateX(4px); opacity: 1; }

.cta-micro {
  font-size: 13px;
  color: var(--soft);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ====== CTA sticky (mobile) ====== */
.cta-sticky {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--primary);
  padding: 16px 22px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 0 0 rgba(155,75,50,0.5), 0 10px 28px rgba(0,0,0,0.18);
  z-index: 50;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
}
.cta-sticky.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cta-sticky svg { width: 20px; height: 20px; }
@media (min-width: 600px) {
  .cta-sticky { left: auto; right: 24px; bottom: 24px; max-width: 280px; }
}

/* ====== CONFIANÇA ====== */
.confianca {
  background: var(--primary-2);
  border-left: 3px solid var(--secondary);
  padding: 16px 18px;
  border-radius: 0 8px 8px 0;
  margin: 12px 0 24px;
}
.confianca p {
  font-size: 13px;
  color: var(--text);
  opacity: 0.75;
  line-height: 1.5;
}

/* ====== FOOTER ====== */
.footer {
  margin-top: 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-credit {
  font-size: 11px;
  color: var(--soft);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ====== Responsive ====== */
@media (max-width: 380px) {
  body { padding: 28px 16px 110px; }
  .avatar-wrap { width: 116px; height: 116px; }
  .hero-headline { font-size: 30px; }
  .cta-big { padding: 18px 22px; gap: 12px; }
  .cta-icon { width: 38px; height: 38px; }
  .cta-icon svg { width: 20px; height: 20px; }
  .cta-main { font-size: 16px; }
}
