/* =============================================
   DIVÃ DAS SOBRANCELHAS — style.css
   ============================================= */

/* ===== RESET & ROOT ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --rose:       #c9907a;
  --rose-dark:  #a76b56;
  --cream:      #fdf7f2;
  --sand:       #e8d9cc;
  --taupe:      #b59e90;
  --brown:      #6b4c3b;
  --espresso:   #2e1a12;
  --gold:       #c8a97e;
  --gold-light: #e8d5bb;
  --white:      #fffcf9;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NOISE GRAIN OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ===== UTILITY ===== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin: 1.5rem auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--espresso);
  color: var(--gold-light);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  font-weight: 400;
}

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sand);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--espresso);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.logo span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  font-family: var(--ff-body);
  font-weight: 500;
}

.nav-cta {
  background: var(--espresso);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--rose-dark);
  color: #fff;
  transform: scale(1.03);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatSlow 8s var(--ease-in-out) infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 5rem 0;
  animation: fadeUp 1s var(--ease-out-expo) both;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--rose);
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--espresso);
  margin-bottom: 1.8rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-lead {
  font-size: 1rem;
  color: var(--brown);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.8rem;
}

.badge {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.badge svg {
  width: 14px;
  height: 14px;
  fill: var(--rose);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  text-decoration: none;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
  box-shadow: 0 6px 28px rgba(201, 144, 122, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(201, 144, 122, 0.55);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.8);
}

/* Hero image */
.hero-image {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: stretch;
  animation: fadeIn 1.2s 0.3s var(--ease-out-expo) both;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

.hero-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, transparent 20%);
  z-index: 1;
}

.hero-floating-card {
  position: absolute;
  bottom: 48px;
  left: -60px;
  z-index: 10;
  background: rgba(2ize:252, 249, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 1.2rem 1.6rem;
  box-shadow: 0 20px 60px rgba(46, 26, 18, 0.1);
  animation: floatSlow 6s 1s var(--ease-in-out) infinite;
}

.hero-floating-card p {
  font-size: 0.7rem;
  color: var(--taupe);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-floating-card strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--espresso);
  margin: 0.1rem 0;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--espresso);
  padding: 2.2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  padding: 0.5rem;
}

.stat-number {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.4rem;
}

/* ===== ABOUT COURSE ===== */
.about-course {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

.about-text h2 em {
  font-style: italic;
  color: var(--rose);
}

.about-text p {
  color: var(--brown);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

/* Pillars */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.pillar {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--sand);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.pillar:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(46, 26, 18, 0.07);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.pillar-text strong {
  display: block;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--espresso);
  margin-bottom: 0.2rem;
  letter-spacing: 0.03em;
}

.pillar-text span {
  font-size: 0.82rem;
  color: var(--taupe);
  line-height: 1.5;
}

/* Format cards */
.format-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.format-card {
  background: linear-gradient(135deg, var(--espresso) 0%, #4a2c1e 100%);
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.format-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 169, 126, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.format-card-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.format-card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.format-card p {
  font-size: 0.88rem;
  color: var(--sand);
  line-height: 1.6;
}

.cert-card {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cert-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
}

.cert-text h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.3rem;
}

.cert-text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--espresso);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 126, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.video-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.video-section h2 em {
  font-style: italic;
  color: var(--gold);
}

.video-section .sub {
  color: var(--taupe);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: #1a0f09;
  border: 1px solid rgba(200, 169, 126, 0.2);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--taupe);
}

.video-placeholder .play-btn {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(201, 144, 122, 0.15);
  animation: floatSlow 3s var(--ease-in-out) infinite;
}

.video-placeholder .play-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 4px;
}

.video-placeholder p {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

/* ===== PRODUCER SECTION ===== */
.producer-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.producer-section::before {
  content: '';
  position: absolute;
  left: -15%;
  top: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--sand) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

.producer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.producer-photo-wrap {
  position: relative;
}

.producer-photo-bg {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--sand) 0%, var(--rose) 60%, var(--rose-dark) 100%);
  border-radius: 200px 200px 160px 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.producer-photo-bg .producer-initials {
  font-family: var(--ff-display);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  padding-bottom: 2rem;
  letter-spacing: -0.05em;
}

/* FRAME COM FOTO */
.producer-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46, 26, 18, 0.15);
}

.producer-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.producer-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 144, 122, 0.1), rgba(200, 169, 126, 0.1));
  mix-blend-mode: overlay;
  z-index: 1;
}

.producer-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
}

.producer-badge-circle {
  width: 110px;
  height: 110px;
  background: var(--espresso);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--gold);
  animation: rotateSlow 20s linear infinite;
}

.producer-badge-circle .badge-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.producer-badge-circle .badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
}

.producer-info h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--espresso);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.producer-info h2 em {
  font-style: italic;
  color: var(--rose);
}

.hotmart-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff5c28, #ff8c00);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hotmart-tag::before {
  content: '★';
}

.producer-info p {
  color: var(--brown);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.85;
}

.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.specialty-tag {
  background: var(--white);
  border: 1px solid var(--sand);
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--espresso) 0%, #5c3526 50%, var(--espresso) 100%);
  z-index: 0;
}

.cta-bg::before,
.cta-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.cta-bg::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(200, 169, 126, 0.12) 0%, transparent 70%);
}

.cta-bg::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: 5%;
  background: radial-gradient(circle, rgba(201, 144, 122, 0.1) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-content p {
  color: var(--taupe);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--gold) 0%, #d4a96a 100%);
  color: var(--espresso);
  text-decoration: none;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.3rem 2.8rem;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  box-shadow: 0 8px 36px rgba(200, 169, 126, 0.45);
}

.btn-cta-main:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 48px rgba(200, 169, 126, 0.6);
}

.cta-guarantee {
  margin-top: 1.5rem;
  color: var(--taupe);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.cta-guarantee::before {
  content: '🔒 ';
}

/* SELO DE GARANTIA GRANDE */
.guarantee-badge-large {
  margin-top: 3rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guarantee-badge-large img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(200, 169, 126, 0.4));
  animation: pulse 3s ease-in-out infinite;
}

/* ===== BOTÃO EXTRA PULSANTE ===== */
.extra-cta-section {
  background: var(--cream);
  padding: 3rem 0;
  text-align: center;
}

.btn-extra-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  text-decoration: none;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.5rem 3rem;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(201, 144, 122, 0.5);
  animation: pulseButton 1s ease-in-out infinite;
  transition: transform 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-extra-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-extra-pulse:hover {
  transform: scale(1.05);
  animation: none;
}

.btn-extra-pulse:hover::before {
  opacity: 1;
}

.btn-extra-pulse span {
  position: relative;
  z-index: 1;
}

@keyframes pulseButton {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(201, 144, 122, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(201, 144, 122, 0.7);
  }
}

.btn-extra-pulse {
  animation: pulseButtonStrong 0.9s ease-in-out infinite;
}

@keyframes pulseButtonStrong {
  0% {
    transform: scale(1);
    background: linear-gradient(135deg, #ff0000 0%, #00ff51 100%);  /* marrom */
    box-shadow: 0 8px 25px rgba(107, 63, 42, 0.6);
  }

  50% {
    transform: scale(1.12);
    background: linear-gradient(135deg, #ff0000 0%, #FF0000 100%);  /* azul */
    box-shadow: 0 20px 60px rgba(26, 82, 118, 0.8);
  }

  100% {
    transform: scale(1);
    background: linear-gradient(135deg, #6B3F2A 0%, #5a3322 100%);  /* marrom */
    box-shadow: 0 8px 25px rgba(107, 63, 42, 0.6);
  }
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--sand);
  font-size: 0.82rem;
}

.cta-feature span {
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
  background: #1a0f09;
  padding: 2.5rem 0;
  text-align: center;
}

footer p {
  color: var(--taupe);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

footer strong {
  color: var(--gold);
  font-weight: 400;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 0;
  }
  
  /* MODIFICAÇÃO: Agora a imagem aparece no mobile também */
  .hero-image {
    display: block;
    max-width: 100%;
    margin: 3rem auto 0;
  }
  
  .hero-image-wrap {
    min-height: 400px;
    border-radius: 24px;
  }
  
  .hero-image-wrap::before {
    background: linear-gradient(180deg, var(--cream) 0%, transparent 15%);
  }
  
  .about-grid,
  .producer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .producer-photo-wrap {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .hero-image-wrap {
    min-height: 300px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-floating-card {
    display: none;
  }
}
