/* ==========================================================================
   Café Amanhecer - DTC High-Converting Mobile-First Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAF8;
  --bg-subtle: #F4F4F0;
  
  --text-main: #18181B;
  --text-muted: #52525B;
  --text-light: #71717A;
  
  /* Brand Accents */
  --ochre-orange: #D97706;
  --ochre-orange-hover: #B45309;
  --ochre-light: #FEF3C7;
  
  --gold-primary: #D97706;
  --gold-glow: rgba(217, 119, 6, 0.15);
  
  --emerald-green: #059669;
  --emerald-light: #ECFDF5;
  
  --commercial-dark: #1E1E24;
  --commercial-red: #EF4444;
  
  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 10px 30px rgba(217, 119, 6, 0.25);

  /* Touch & Layout */
  --min-touch-target: 44px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --container-max: 1140px;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.6;
  padding-bottom: 80px; /* Space for Mobile Sticky CTA */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Shared Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px auto;
}

/* Standard Buttons (Min 44x44 Touch Target) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--min-touch-target);
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--ochre-orange) 0%, #B45309 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  width: 100%;
  letter-spacing: 0.02em;
}

.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(217, 119, 6, 0.35);
  background: linear-gradient(135deg, #E67E22 0%, var(--ochre-orange) 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.guarantee-microtext {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
}

/* Header (Clean No-Nav with WhatsApp Contact) */
.site-header {
  padding: 16px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.header-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-main);
  text-transform: uppercase;
}

.header-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  min-height: 40px;
}

.header-whatsapp-btn:hover {
  background: #059669;
  color: #FFFFFF;
  border-color: #059669;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

/* ==========================================================================
   DOBRA 1: HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 32px 0 56px 0;
  background-color: var(--bg-primary);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
}

.kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--ochre-light);
  color: #92400E;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(217, 119, 6, 0.25);
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.08);
}

.hero-headline {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.1rem;
  }
}

.hero-subheadline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subheadline {
    font-size: 1.18rem;
  }
}

/* Minimalist Visual Badges */
.hero-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-secondary);
  border: 1px solid #E4E4E7;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.badge-icon {
  width: 18px;
  height: 18px;
  color: var(--ochre-orange);
}

/* Hero Media Product Showcase */
.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-product-img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.hero-product-img:hover {
  transform: scale(1.02);
}

.sca-floating-tag {
  position: absolute;
  bottom: 20px;
  right: 15px;
  background: #18181B;
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ochre-orange);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sca-floating-tag .score {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ochre-orange);
  line-height: 1;
}

.sca-floating-tag .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #A1A1AA;
  line-height: 1.2;
}

/* ==========================================================================
   DOBRA 2: A IMERSÃO SENSORIAL
   ========================================================================== */
.sensory-section {
  padding: 64px 0;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.sensory-header {
  text-align: center;
  margin-bottom: 48px;
}

.sensory-art-banner {
  max-width: 280px;
  margin: 0 auto 20px auto;
  border-radius: var(--radius-md);
}

.sensory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.sensory-card {
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.sensory-card:hover {
  transform: translateY(-5px);
  border-color: var(--ochre-orange);
  box-shadow: var(--shadow-lg);
}

.sensory-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ochre-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.8rem;
}

.sensory-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.sensory-card-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.sensory-tag {
  background: var(--bg-subtle);
  color: var(--ochre-orange-hover);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.sensory-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   DOBRA 3: CONTRASTE DE TORRA
   ========================================================================== */
.roast-contrast-section {
  padding: 64px 0;
  background-color: var(--bg-primary);
}

.roast-contrast-box {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #E4E4E7;
}

@media (min-width: 992px) {
  .roast-contrast-box {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left: Commercial Coffee */
.commercial-side {
  background-color: var(--commercial-dark);
  color: #FFFFFF;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .commercial-side {
    padding: 56px 44px;
  }
}

.commercial-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  color: var(--commercial-red);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.commercial-title {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.commercial-list {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.commercial-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #D4D4D8;
}

.commercial-list li span.icon {
  color: var(--commercial-red);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

/* Right: Café Amanhecer */
.amanhecer-side {
  background-color: #FFFFFF;
  color: var(--text-main);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--ochre-orange);
}

@media (min-width: 768px) {
  .amanhecer-side {
    padding: 56px 44px;
    border-top: none;
    border-left: 4px solid var(--ochre-orange);
  }
}

.amanhecer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ochre-light);
  color: #92400E;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.amanhecer-title {
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.amanhecer-list {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.amanhecer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.amanhecer-list li span.icon {
  color: var(--emerald-green);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.contrast-cta-wrapper {
  margin-top: 36px;
  text-align: center;
}

/* ==========================================================================
   DOBRA 4: A HISTÓRIA DA TERRA
   ========================================================================== */
.farm-history-section {
  padding: 64px 0;
  background-color: var(--bg-secondary);
}

.farm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .farm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.farm-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.farm-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.farm-location-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.farm-content-title {
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.farm-text-paragraph {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.farm-highlights-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.farm-stat-card {
  background: #FFFFFF;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid #E4E4E7;
}

.farm-stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ochre-orange);
}

.farm-stat-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==========================================================================
   DOBRA 5: FICHA TÉCNICA
   ========================================================================== */
.specs-section {
  padding: 64px 0;
  background-color: var(--bg-primary);
}

.specs-card {
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid #F4F4F5;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 18px 24px;
  font-size: 0.98rem;
}

.specs-label {
  font-weight: 700;
  color: var(--text-main);
  width: 40%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.specs-value {
  color: var(--text-muted);
  width: 60%;
  font-weight: 500;
}

.specs-score-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ochre-light);
  color: #92400E;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   DOBRA 6: PROVA SOCIAL (UGC & TESTIMONIALS)
   ========================================================================== */
.social-proof-section {
  padding: 64px 0;
  background-color: var(--bg-secondary);
}

.carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0 40px 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

.review-card {
  flex: 0 0 100%;
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (min-width: 992px) {
  .review-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ochre-orange);
}

.review-user-info {
  display: flex;
  flex-direction: column;
}

.review-user-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.review-verified {
  font-size: 0.75rem;
  color: var(--emerald-green);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.review-stars {
  color: #F59E0B;
  font-size: 1rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.review-ugc-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: auto;
}

/* Carousel Navigation Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: var(--ochre-orange);
  color: #FFFFFF;
  border-color: var(--ochre-orange);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D4D4D8;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: var(--ochre-orange);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   DOBRA 7: OFERTA E CHECKOUT
   ========================================================================== */
.pricing-section {
  padding: 64px 0;
  background-color: var(--bg-primary);
  scroll-margin-top: 20px;
}

.single-pricing-wrapper {
  max-width: 560px;
  margin: 0 auto 40px auto;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid #E4E4E7;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.featured {
  border-color: var(--ochre-orange);
  box-shadow: var(--shadow-lg), 0 0 0 4px var(--gold-glow);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ochre-orange) 0%, #B45309 100%);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.card-title {
  font-size: 1.45rem;
  margin-bottom: 8px;
  text-align: center;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.price-display {
  text-align: center;
  margin-bottom: 24px;
}

.price-display .old-price {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--text-light);
  margin-right: 8px;
}

.price-display .current-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-main);
}

.price-display .price-period {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Grind Option Selector */
.grind-selector-box {
  margin-bottom: 24px;
}

.grind-label {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
  display: block;
}

.grind-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.grind-btn {
  min-height: 44px;
  padding: 8px;
  border: 1px solid #E4E4E7;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  transition: all 0.2s ease;
}

.grind-btn.active {
  border-color: var(--ochre-orange);
  background: var(--ochre-light);
  color: #92400E;
  font-weight: 700;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.pricing-features li span.check {
  color: var(--emerald-green);
  font-weight: 800;
}

/* Guarantee Box */
.guarantee-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--emerald-light);
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .guarantee-box {
    flex-direction: row;
    text-align: left;
    padding: 30px;
  }
}

.guarantee-badge-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.guarantee-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #065F46;
  margin-bottom: 4px;
}

.guarantee-desc {
  font-size: 0.9rem;
  color: #047857;
  line-height: 1.5;
}

/* ==========================================================================
   DOBRA 8: PERGUNTAS FREQUENTES (FAQ) - CORREÇÃO DE EXIBIÇÃO NO DESKTOP
   ========================================================================== */
.faq-section {
  padding: 64px 0 80px 0;
  background-color: var(--bg-secondary);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.active {
  border-color: var(--ochre-orange);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  min-height: var(--min-touch-target);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  gap: 16px;
  cursor: pointer;
}

.faq-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--ochre-orange);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  padding: 0 24px;
  opacity: 0;
}

.faq-item.active .faq-content {
  max-height: 1000px; /* Suficiente para permitir texto longo sem cortar no computador */
  opacity: 1;
  padding: 4px 24px 24px 24px;
}

.faq-content p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ==========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid #E4E4E7;
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none !important;
  }
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
}

.sticky-cta-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
}

.sticky-cta-price {
  font-size: 0.78rem;
  color: var(--ochre-orange-hover);
  font-weight: 700;
}

.sticky-cta-btn {
  min-height: 44px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--ochre-orange) 0%, #B45309 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

/* ==========================================================================
   CHECKOUT MODAL SIMULATION
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.modal-header-title {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.modal-header-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-summary-box {
  background: var(--bg-secondary);
  border: 1px solid #E4E4E7;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.modal-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.modal-summary-row:last-child {
  margin-bottom: 0;
  padding-top: 8px;
  border-top: 1px dashed #E4E4E7;
  font-weight: 700;
  font-size: 1rem;
}

.modal-form-group {
  margin-bottom: 16px;
}

.modal-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-form-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #E4E4E7;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.modal-form-input:focus {
  outline: none;
  border-color: var(--ochre-orange);
}
