:root {
  --bg-primary: #fff9f1;
  --brown: #4b3319;
  --brown-light: #6b4d35;
  --green: #1f5633;
  --green-light: #2a6b42;
  --gold: #c48914;
  --gold-light: #d4941a;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-medium: #6c757d;
  --gray-dark: #495057;
  --red: #dc3545;
  --blue: #0066cc;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --shadow-strong: rgba(0, 0, 0, 0.2);
  --gradient-gold: linear-gradient(135deg, #c48914, #d4941a);
  --gradient-brown: linear-gradient(135deg, #4b3319, #5a3d26);
  --gradient-green: linear-gradient(135deg, #1f5633, #2a6b42);
  --gradient-gold-light: linear-gradient(135deg, #d4941a, #e0a22b);
  --gradient-gold-super-light: linear-gradient(
    135deg,
    rgba(196, 137, 20, 0.1),
    rgba(196, 137, 20, 0.05)
  );
  --border-radius: 16px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET E BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--brown);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Merriweather", serif;
  line-height: 1.2;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-6 {
  margin-bottom: 2.5rem;
}
.mb-8 {
  margin-bottom: 4rem;
}

/* === BADGES E SINAIS === */
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gradient-gold);
  border-radius: 25px;
  font-size: 12px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 4px;
  animation: glow 2s ease-in-out infinite alternate;
}

.trust-signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(31, 86, 51, 0.1);
  border-radius: 20px;
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  margin: 4px;
}

.urgency-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

.startup-badge {
  background: rgba(31, 86, 51, 0.1);
  border: 2px solid var(--green);
  border-radius: 25px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--green);
  margin: 20px 0;
}

.startup-badge::before {
  content: "🚀";
  font-size: 20px;
}

/* === BOTÕES === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-green);
  color: var(--white) !important;
  box-shadow: 0 8px 25px rgba(196, 137, 20, 0.3);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(196, 137, 20, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
}

.btn-assinar {
  background: var(--gradient-gold);
  color: var(--white) !important;
  padding: 16px 24px;
  border-radius: 32px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
  text-align: center;
  width: 100%;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(196, 137, 20, 0.3);
  display: block;
}

.btn-assinar:hover {
  background: #c99200;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 137, 20, 0.3);
}

.mobile-menu .btn-mobile-assinar {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--green);
  color: var(--white);
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
  margin-top: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu .btn-mobile-assinar:hover {
  background-color: var(--green-light);
  transition: background 0.3s ease;
}

/* === HEADER === */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px var(--shadow-light);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px var(--shadow-medium);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--brown);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-menu a:not(.btn):hover {
  color: var(--gold);
}

.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:not(.btn):hover::after {
  width: 100%;
}

.mobile-menu {
  display: block;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--brown);
  cursor: pointer;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    #f5ede0 50%,
    #ede3d3 100%
  );
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(196, 137, 20, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(31, 86, 51, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(196, 137, 20, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: 1fr;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--brown);
  line-height: 1.1;
}

.hero-text .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-text .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0.3;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--gray-dark);
  max-width: 480px;
  line-height: 1.6;
}

.hero-trust-signals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.hero-image {
  width: 100%;
  height: 100%;
  background: var(--gradient-brown);
  border-radius: 32px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 80px rgba(75, 51, 25, 0.3);
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-smooth);
  /* imagem de fundo com marrom translúcido sobreposto */
  background-image: linear-gradient(
      rgba(75, 51, 25, 0.4),
      rgba(75, 51, 25, 0.4)
    ),
    url("../img/babacu_ed/box_completa_v1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image::before {
  content: "📦";
  font-size: 80px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.hero-image::after {
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  font-family: "Poppins", "Merriweather", serif;
}

.hero-beta-proof {
  margin-top: 20px;
  text-align: center;
}

.beta-avatars {
  display: flex;
  justify-content: center;
  gap: -8px;
  margin-bottom: 12px;
}

.beta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  background: var(--gradient-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  margin-top: 60px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.hero-stat-number {
  font-size: 36px;
  line-height: 1;
  display: block;
}

.hero-stat-text {
  font-size: 14px;
  color: var(--gray-medium);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 160px;
}

.hero-stat-text small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  color: #6c757d;
  margin-top: 4px;
  line-height: 1.5;
}

/* === VALUE PROPOSITIONS === */
.value-props {
  padding: 6rem 1.5rem;
  background-color: var(--white);
}

.value-props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
}

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

.value-prop {
  background: var(--gray-light);
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  cursor: default;
}

.value-prop::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.value-prop:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.value-prop:hover .value-prop-icon-wrapper {
  box-shadow: 0 12px 24px rgba(196, 137, 20, 0.4);
  transform: scale(1.08) rotate(-2deg);
}

.value-prop-icon {
  font-size: 2rem;
  color: white;
}

.value-prop-icon-wrapper {
  background: var(--gradient-gold);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 12px rgba(196, 137, 20, 0.25);
  transition: transform 0.3s ease;
}

.value-props h2 {
  text-align: center;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--brown);
}

.value-prop h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 1rem;
}

.value-prop p {
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 90%;
  margin: 0 auto;
}

.section-eyebrow {
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.6s ease-out;
}

.section-eyebrow.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* === COMO FUNCIONA === */
.como-funciona {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.como-funciona h2 {
  text-align: center;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--brown);
}

.como-funciona .subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--gray-medium);
  margin-bottom: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.passos {
  display: grid;
  gap: 60px;
  position: relative;
}

.passos::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 160px);
  background: linear-gradient(to bottom, var(--gold), var(--green));
  z-index: 1;
  display: none;
}

.passo {
  text-align: center;
  position: relative;
  background: var(--white);
  padding: 48px 32px;
  border-radius: 32px;
  box-shadow: 0 12px 40px var(--shadow-light);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  z-index: 2;
}

.passo:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 80px var(--shadow-medium);
  border-color: var(--gold);
}

.passo-numero {
  width: 100px;
  height: 100px;
  background: var(--gradient-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 36px;
  margin: 0 auto 32px;
  box-shadow: 0 12px 35px rgba(196, 137, 20, 0.4);
  border: 4px solid white;
}

.passo h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--brown);
}

.passo p {
  color: var(--gray-dark);
  font-size: 18px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

.passo-icone {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.passo:hover .passo-icone {
  transform: scale(1.2) rotate(-5deg);
}

.como-funciona .section-eyebrow {
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

/* === PRODUTOS/EDIÇÃO === */
.edicao {
  padding: 120px 0;
  background: var(--white);
}

.edicao h2 {
  text-align: center;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--brown);
}

.edicao-subtitle {
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 60px;
  font-size: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.edicao-badge {
  text-align: center;
  margin-bottom: 40px;
}

.edicao-cta {
  /* background: linear-gradient(135deg, var(--white) 0%, #fefcf8 100%); */
  /* padding: 48px 40px; */
  /* border-radius: 32px; */
  /* box-shadow: 0 20px 80px rgba(196, 137, 20, 0.15); */
  /* border: 3px solid transparent; */
  /* background-clip: padding-box; */
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.produtos {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}

.produto {
  background: var(--gray-light);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 30px var(--shadow-light);
  border: 2px solid transparent;
  position: relative;
}

.produto:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px var(--shadow-medium);
  border-color: var(--gold);
}

.produto-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-gold);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 3;
}

.produto-image {
  width: 100%;
  background: var(--gradient-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 64px;
  position: relative;
  overflow: hidden;
  color: white;
  height: 260px;
  border-bottom: 2px solid var(--gold);
}

.produto-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.produto:hover .produto-image::before {
  transform: translateX(100%);
}

.produto-info {
  padding: 32px;
}

.produto-info h3 {
  color: var(--brown);
  font-weight: 700;
  font-family: "Merriweather", serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.produto-info p {
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

.produto-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--gray-medium);
}

/* === PLANOS === */
.planos,
.plano-unico {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.planos h2,
.plano-unico h2 {
  text-align: center;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--brown);
}

.plano-subtitle {
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 60px;
  font-size: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.plano-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.plano {
  flex: 1 1 300px;
  min-width: 300px;
  max-width: 380px;
  background: var(--white);
  border: 2px solid #e9ecef;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 8px 30px var(--shadow-light);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.plano:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-medium);
}

.plano.destaque {
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, #fffef9 0%, white 100%);
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(196, 137, 20, 0.2);
}

.plano.destaque:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 30px 80px rgba(196, 137, 20, 0.3);
}

.plano-header {
  position: relative;
  margin-bottom: 24px;
}

.plano.destaque .plano-header::before {
  content: "✨ Assinante Premium";
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(196, 137, 20, 0.4);
  white-space: nowrap;
}

.plano-badge {
  background: var(--gradient-green);
  color: white;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: inline-block;
}

.plano-nome {
  font-size: 28px;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 8px;
}

.plano-descricao-curta {
  color: var(--gold);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
}

.plano-pricing {
  margin-bottom: 32px;
}

.plano-preco {
  font-size: 48px;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 4px;
  font-family: "Merriweather", serif;
  line-height: 1;
}

.plano-preco span {
  font-size: 16px;
  color: var(--gray-medium);
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.plano-economia {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
  background: rgba(196, 137, 20, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
}

.plano-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  font-size: 14px;
  color: var(--gray-dark);
  text-align: left;
  flex-grow: 1;
}

.plano-features li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.plano-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  top: 1px;
}

.guarantee-badge {
  text-align: center;
  margin-top: 60px;
  padding: 24px;
  background: rgba(31, 86, 51, 0.05);
  border-radius: 20px;
  border: 2px dashed var(--green);
}

.guarantee-badge.clean {
  background: #fff8f1;
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  font-size: 15px;
  color: #4a3b2b;
  margin-top: 32px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.guarantee-badge h3 {
  color: var(--green);
  margin-bottom: 8px;
  font-size: 20px;
}

.guarantee-badge p {
  color: var(--gray-dark);
  font-size: 14px;
}

/* === FORNECEDORES/TESTIMONIALS === */
.fornecedores {
  padding: 120px 0;
  background: var(--white);
}

.fornecedores h2 {
  text-align: center;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--brown);
}

.fornecedores-subtitle {
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 80px;
  font-size: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.fornecedores-grid {
  display: grid;
  gap: 40px;
}

.fornecedor {
  color: #8b4513; /* Exemplo de marrom sertanejo */
  background: var(--gray-light);
  padding: 48px 40px;
  border-radius: 32px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 30px var(--shadow-light);
  border: 2px solid transparent;
  text-align: center;
  position: relative;
}

.fornecedor:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px var(--shadow-medium);
  border-color: var(--gold);
  transition: all 0.3s ease;
}

.fornecedor-avatar {
  width: 120px;
  height: 120px;
  background: var(--gradient-brown);
  border-radius: 50%;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 48px;
  box-shadow: 0 12px 35px rgba(75, 51, 25, 0.3);
  border: 4px solid white;
}

.fornecedor h3 {
  color: var(--brown);
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}

.fornecedor-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--accent-color); /* ou um marrom/laranja leve */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.fornecedor-link:hover {
  color: var(--accent-color-dark); /* tom mais forte no hover */
  text-decoration: underline;
}

.fornecedor-local {
  color: var(--gray-medium);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fornecedor-depoimento {
  color: var(--gray-dark);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  padding: 0 20px;
}

.fornecedor-depoimento::before {
  content: '"';
  font-size: 48px;
  color: var(--gold);
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: serif;
}

/* === IMPACTO === */

/* Seção geral */
section.impacto {
  background: linear-gradient(145deg, #1e432b, #295937);
  padding: 80px 0;
  color: #fff;
  font-family: "Inter", sans-serif;
}

section.impacto h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

section.impacto .impacto-subtitle {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Grid */
.impacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Cartões */
.impacto-item {
  background: #fdfdfd;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  text-align: left;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.impacto-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Ícone */
.impacto-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2e7d32;
}

/* Título ODS */
.impacto-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 0.25rem 0;
}

/* Subtítulo */
.impacto-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e432b;
  margin-bottom: 0.75rem;
}

/* Descrição */
.impacto-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* === FAQ/SUPORTE === */

.faq-suporte {
  padding: 120px 0;
  background: var(--bg-primary);
}

.faq-suporte h2 {
  text-align: center;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 80px;
  color: var(--brown);
}

.faq-item {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 6px 25px var(--shadow-light);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 12px 40px var(--shadow-medium);
  border-color: var(--gold);
}

.faq-pergunta {
  font-weight: 700;
  color: var(--brown);
  font-size: 18px;
  padding: 32px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.faq-pergunta:hover {
  background: var(--gray-light);
}

.faq-pergunta::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-pergunta::after {
  transform: rotate(45deg);
}

.faq-resposta {
  color: var(--gray-dark);
  font-size: 16px;
  line-height: 1.7;
  padding: 0 32px 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-resposta {
  max-height: 200px;
  padding: 0 32px 32px;
}
.faq-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  justify-content: space-between;
}

.faq-lista {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato-form {
  flex: 1;
  min-width: 280px;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contato-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2f2f2f;
}

.contato-form p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.btn-whatsapp {
  background-color: #1c6b3c;
  color: white;
  padding: 0.9rem 1.5rem;
  border-radius: 0.7rem;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(28, 107, 60, 0.25);
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #14502c;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--brown);
  font-weight: 600;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition-smooth);
  font-family: "Inter", sans-serif;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 137, 20, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* === CTA FINAL === */
.cta-final {
    border-top: 4px solid #fcd34d; /* amarelo nordestino */
    background: radial-gradient(#603813, #42210b);
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 70%,
        rgba(196, 137, 20, 0.15) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 70% 30%,
        rgba(196, 137, 20, 0.1) 0%,
        transparent 50%
      );
    z-index: 1;
}

.cta-final-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-final h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(196, 137, 20, 0.25);
}

.cta-final p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #fff;
}

.cta-final .btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    font-size: 20px;
    padding: 24px 48px;
    box-shadow: 0 12px 40px rgba(196, 137, 20, 0.4);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-final .btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 50px rgba(255, 205, 50, 0.6);
}

.cta-destaques {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.cta-destaque-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 320px;
    flex: 1;
    color: #fff;
    text-align: left;
}

.cta-icon {
    font-size: 28px;
    line-height: 1;
    margin-top: 4px;
}

.selo-acelerada {
    display: inline-block;
    background: linear-gradient(to right, #eac270, #e6a400);
    color: #3e2b00;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.04); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}


/* === FOOTER === */
#rodape {
  background-color: #2e1a0b;
  color: #f8f8f8;
  padding: 60px 0 20px;
  font-size: 15px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fcd34d;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #fcd34d;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  opacity: 0.85;
}

.footer-section ul li a {
  color: #f8f8f8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fcd34d;
}

.social-links {
  margin-top: 10px;
}

.social-link {
  display: inline-block;
  margin-right: 15px;
  color: #f8f8f8;
  text-decoration: none;
  font-size: 16px;
}

.social-link:hover {
  color: #fcd34d;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.75;
}

.footer-bottom a {
  color: #fcd34d;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-section ul li {
  opacity: 0.9;
  line-height: 1.6;
}


/* === MENU MOBILE === */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.mobile-menu-content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background: white;
  z-index: 2000;
  padding: 80px 40px 40px;
  transition: var(--transition-smooth);
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--brown);
  cursor: pointer;
}

.mobile-nav-menu {
  list-style: none;
}

.mobile-nav-menu li {
  margin-bottom: 24px;
}

.mobile-nav-menu a {
  color: var(--brown);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  transition: var(--transition-smooth);
}

.mobile-nav-menu a:hover {
  color: var(--gold);
}

/* === ELEMENTOS FLUTUANTES === */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-green);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(196, 137, 20, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 1000;
  animation: bounce 2s infinite;
}

.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(196, 137, 20, 0.5);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--gradient-gold);
  z-index: 1001;
  transition: width 0.1s ease;
}

/* === LOADING === */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  font-size: 48px;
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-text {
  font-size: 18px;
  color: var(--brown);
  font-weight: 600;
}

/* === ANIMAÇÕES === */
@keyframes glow {
  from {
    box-shadow: 0 0 5px rgba(196, 137, 20, 0.5);
  }
  to {
    box-shadow: 0 0 20px rgba(196, 137, 20, 0.8);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .plano-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .plano {
    min-width: 100%;
    max-width: 400px;
    flex: none;
  }

  .plano.destaque {
    transform: none;
  }

  .plano.destaque:hover {
    transform: translateY(-8px);
  }

  .hero-cta {
    justify-content: center;
  }
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .produtos {
    grid-template-columns: repeat(2, 1fr);
  }

  .launch-countdown {
    gap: 30px;
  }

  .countdown-item {
    min-width: 100px;
    padding: 24px;
  }
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .passos {
    grid-template-columns: repeat(3, 1fr);
  }

  .passos::before {
    display: block;
  }

  .produtos {
    grid-template-columns: repeat(3, 1fr);
  }

  .fornecedores-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .impacto-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-content {
    grid-template-columns: 2fr 1fr;
    flex-direction: column;
  }

  .contato-form {
    order: 2;
    margin-top: 1rem;
  }

  .faq-lista {
    order: 1;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-props-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .plano-container {
    gap: 20px;
  }

  .plano {
    flex: 1 1 250px;
    min-width: 250px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .hero-content {
    gap: 100px;
  }

  .floating-cta {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .impacto-grid,
  .cta-destaques,
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .cta-final p {
    font-size: 18px;
  }
}

/* === PRINT === */
@media print {
  .floating-cta,
  .mobile-menu-overlay,
  .announcement-bar,
  header,
  .progress-bar {
    display: none !important;
  }
}

/* === LISTA DE ESPERA === */
.lista-espera {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-primary), #f5ede0);
}

.lista-espera-header {
  text-align: center;
  margin-bottom: 60px;
}

.lista-espera-header h2 {
  font-size: 3rem;
  color: var(--brown);
  margin: 20px 0;
}

.lista-espera-subtitle {
  font-size: 1.2rem;
  color: var(--gray-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  margin-bottom: 40px;
}

.lista-espera-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.btn-open-modal {
  font-size: 1.25rem;
  padding: 20px 60px;
  box-shadow: 0 8px 30px rgba(196, 137, 20, 0.3);
  transform: scale(1);
  transition: all 0.3s ease;
}

.btn-open-modal:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 12px 40px rgba(196, 137, 20, 0.4);
}

.cta-disclaimer {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--gray-dark);
  opacity: 0.8;
}

/* Formulário Inline na Página */
.lista-espera-form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: white;
  padding: 50px 45px;
  border-radius: 24px;
  box-shadow: 0 12px 40px var(--shadow-medium);
  border: 2px solid rgba(196, 137, 20, 0.1);
}

.waitlist-form-inline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group-inline label {
  font-weight: 600;
  color: var(--brown);
  font-size: 1rem;
}

.form-group-inline input,
.form-group-inline select {
  padding: 16px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  background: var(--bg-primary);
  width: 100%; /* Ensure full width like inputs usually are in this context */
}

.form-group-inline input:focus,
.form-group-inline select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 137, 20, 0.1);
  transform: translateY(-2px);
}

.btn-submit-inline {
  margin-top: 12px;
  width: 100%;
  padding: 18px;
  font-size: 1.15rem;
  box-shadow: 0 8px 25px rgba(196, 137, 20, 0.3);
}

.btn-submit-inline:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(196, 137, 20, 0.4);
}

.form-disclaimer-inline {
  font-size: 0.9rem;
  color: var(--gray-dark);
  text-align: center;
  margin-top: 8px;
  line-height: 1.6;
  opacity: 0.8;
}

.form-success-inline {
  text-align: center;
  padding: 50px 30px;
}

.form-success-inline .success-icon {
  font-size: 72px;
  margin-bottom: 24px;
  animation: successPop 0.6s ease;
}

.form-success-inline h3 {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 20px;
  font-family: "Merriweather", serif;
}

.form-success-inline p {
  font-size: 1.15rem;
  color: var(--gray-dark);
  line-height: 1.8;
}

/* Modal do Formulário */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: white;
  border-radius: 24px;
  max-width: 550px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--gray-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.modal-content {
  padding: 50px 40px;
}

.modal-content h2 {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 12px;
  font-family: "Merriweather", serif;
  text-align: center;
}

.modal-subtitle {
  font-size: 1rem;
  color: var(--gray-dark);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

.waitlist-form-modal {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-modal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-modal label {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

.form-group-modal input {
  padding: 14px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.form-group-modal input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 137, 20, 0.1);
}

.btn-submit-modal {
  margin-top: 12px;
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

.form-disclaimer-modal {
  font-size: 0.85rem;
  color: var(--gray-dark);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
  opacity: 0.8;
}

.form-success-modal {
  text-align: center;
  padding: 40px 20px;
}

.form-success-modal .success-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: successPop 0.6s ease;
}

.form-success-modal h3 {
  font-size: 1.8rem;
  color: var(--brown);
  margin-bottom: 16px;
  font-family: "Merriweather", serif;
}

.form-success-modal p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.lista-espera-content-full {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.lista-espera-content-full iframe {
  min-height: 700px;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.lista-espera-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.lista-espera-benefits {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  position: sticky;
  top: 100px;
}

.lista-espera-benefits h3 {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 24px;
  font-family: "Merriweather", serif;
}

.lista-espera-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-espera-benefits ul li {
  padding: 16px 0;
  font-size: 1rem;
  color: var(--gray-dark);
  border-bottom: 1px solid rgba(196, 137, 20, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.lista-espera-benefits ul li:last-child {
  border-bottom: none;
}

.lista-espera-form {
  background: white;
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px var(--shadow-medium);
  border: 2px solid rgba(196, 137, 20, 0.1);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.form-group label {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: var(--transition-smooth);
  background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 137, 20, 0.1);
}

.form-group input::placeholder {
  color: var(--gray-medium);
}

.btn-submit {
  margin-top: 16px;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  padding: 18px 32px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 137, 20, 0.3);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--gray-medium);
  text-align: center;
  line-height: 1.5;
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 60px 40px;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  animation: successPop 0.5s ease-out;
}

.form-success h3 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 16px;
  font-family: "Merriweather", serif;
}

.form-success p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive para lista de espera */
@media (max-width: 968px) {
  .lista-espera-header h2 {
    font-size: 2.5rem;
  }

  .lista-espera-form-wrapper {
    padding: 40px 35px;
  }

  .form-group-inline input {
    font-size: 1rem;
    padding: 15px 18px;
  }

  .btn-submit-inline {
    font-size: 1.1rem;
    padding: 16px;
  }

  .btn-open-modal {
    font-size: 1.1rem;
    padding: 18px 50px;
  }

  .lista-espera-content-full {
    padding: 0 20px;
  }

  .lista-espera-content-full iframe {
    min-height: 600px;
  }

  .lista-espera-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lista-espera-benefits {
    position: static;
  }

  .lista-espera-form {
    padding: 35px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lista-espera {
    padding: 60px 0;
  }

  .lista-espera-header h2 {
    font-size: 2rem;
  }

  .lista-espera-subtitle {
    font-size: 1rem;
  }

  .lista-espera-form-wrapper {
    padding: 35px 25px;
  }

  .form-group-inline input {
    font-size: 0.95rem;
    padding: 14px 16px;
  }

  .btn-submit-inline {
    font-size: 1rem;
    padding: 15px;
  }

  .form-success-inline {
    padding: 40px 20px;
  }

  .form-success-inline h3 {
    font-size: 1.6rem;
  }

  .form-success-inline p {
    font-size: 1rem;
  }

  .btn-open-modal {
    font-size: 1rem;
    padding: 16px 40px;
    width: 100%;
  }

  .cta-disclaimer {
    font-size: 0.85rem;
  }

  .lista-espera-content-full {
    padding: 0 15px;
  }

  .lista-espera-content-full iframe {
    min-height: 550px;
  }

  .lista-espera-form {
    padding: 24px;
  }

  .lista-espera-benefits {
    padding: 24px;
  }

  .btn-submit {
    font-size: 1rem;
    padding: 16px 24px;
  }

  .modal-container {
    width: 95%;
    max-height: 85vh;
  }

  .modal-content {
    padding: 40px 28px;
  }

  .modal-content h2 {
    font-size: 1.6rem;
  }

  .modal-subtitle {
    font-size: 0.9rem;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    font-size: 28px;
  }
}

/* === RIO BALSAS SLIDESHOW === */
.rio-slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    background: #fff;
}

.rio-slideshow-wrapper {
    position: relative;
    min-height: 400px;
}

.rio-slide {
    display: none;
    animation: fadeEffect 1s;
}

.rio-slide.active {
    display: block;
}

.rio-slide-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rio-slide-image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #fdf7ec 0%, #f0e6d2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid #c48914;
}

.rio-slide-text {
    padding: 30px;
    text-align: center;
}

.rio-slide-text h3 {
    color: #4b3319;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.rio-slide-text p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

.rio-prev, .rio-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #c48914;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(255,255,255,0.8);
    border: none;
    z-index: 2;
}

.rio-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.rio-prev:hover, .rio-next:hover {
    background-color: rgba(196, 137, 20, 0.2);
}

.rio-dots {
    text-align: center;
    padding: 15px;
    background: #fff;
}

.rio-dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.rio-dot.active, .rio-dot:hover {
    background-color: #c48914;
}

@keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
}

@media (min-width: 768px) {
    .rio-slide-content {
        flex-direction: row;
        align-items: center;
    }
    
    .rio-slide-image-placeholder {
        width: 50%;
        height: 400px;
        border-bottom: none;
        border-right: 4px solid #c48914;
    }
    
    .rio-slide-text {
        width: 50%;
        padding: 40px;
        text-align: left;
    }
}

/* === BABAÇU REDESIGN (UI/UX IMPROVED) === */
.edicao-babacu {
    background: linear-gradient(to bottom, #fffdf9, #fdf7ec);
    padding: 100px 0;
    overflow: hidden;
}

.rio-balsas-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .rio-balsas-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* Info Column */
.rio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 137, 20, 0.1);
    color: #c48914;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rio-badge .pulse {
    width: 8px;
    height: 8px;
    background: #c48914;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(196, 137, 20, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(196, 137, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(196, 137, 20, 0); }
}

.rio-info-col h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #4b3319;
}

.rio-lead {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 32px;
}

.rio-highlights {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rio-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #4b3319;
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Delivery Card Timeline */
.rio-delivery-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(196, 137, 20, 0.1);
    border: 1px solid rgba(196, 137, 20, 0.1);
    margin-bottom: 40px;
}

.rd-header {
    font-weight: 700;
    color: #4b3319;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.rd-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.rd-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    position: relative;
}

.rd-step::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #e9ecef;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e9ecef;
}

.rd-step.completed::before {
    background: #2a9d8f;
    box-shadow: 0 0 0 2px #2a9d8f;
}

.rd-step.warning::before {
    background: #e76f51;
    box-shadow: 0 0 0 2px #e76f51;
    animation: pulse 2s infinite;
}

.rd-step.future::before {
    background: #c48914;
    box-shadow: 0 0 0 2px #c48914;
}

.rd-line {
    flex: 1;
    height: 2px;
    background: #e9ecef;
    margin: 0 10px;
    margin-bottom: 26px; /* Align with dots */
}

.rd-date {
    font-weight: 800;
    color: #4b3319;
    font-size: 1.1rem;
}

.rd-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 4px;
}

/* Visual Column */
.rio-visual-col {
    position: relative;
}

.rio-visual-col::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c48914' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.rio-slideshow-container {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.rio-slideshow-container:hover {
    transform: rotate(0deg);
}

.rio-visual-card {
    position: relative;
}

.rio-img-box {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.rio-emoji {
    font-size: 8rem;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

.rio-caption {
    padding: 30px;
    background: #fff;
    text-align: center;
}

.rio-caption h3 {
    font-size: 1.8rem;
    color: #4b3319;
    margin-bottom: 10px;
}

.rio-caption p {
    color: #6c757d;
    font-size: 1.1rem;
}

.rio-nav-overlay {
    position: absolute;
    top: 40%; /* Center vertically relative to image */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none; /* Let clicks pass through if not on buttons */
}

.rio-prev, .rio-next {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #4b3319;
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rio-prev:hover, .rio-next:hover {
    background: #c48914;
    color: #fff;
    transform: scale(1.1);
}

.rio-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.rio-dot {
    width: 10px;
    height: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rio-dot.active {
    background: #c48914;
    transform: scale(1.2);
}
