/* 
  Best Fruit - Apresentação Landing Page Stylesheet
  Premium, Clean, and High-Conversion UI/UX Design
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette (Official Logo Colors) */
  --primary-red: #d62828;
  --primary-red-hover: #b31d1d;
  --forest-green: #299D41;
  --forest-green-hover: #1f7b32;
  --green-light: #7CBD3C;
  --green-lime: #ABD251;
  --yellow-support: #FFF0B5;
  --yellow-support-hover: #FFE79A;
  
  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-dark: #071e18;
  
  /* Text */
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --text-light: #f3f4f6;
  
  /* Elevation & Borders */
  --border-color: #e5e7eb;
  --border-green: rgba(13, 59, 48, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(13, 59, 48, 0.05);
  --shadow-lg: 0 16px 32px rgba(13, 59, 48, 0.08);
  --shadow-red: 0 8px 20px rgba(214, 40, 40, 0.15);
  
  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Globals */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.is-hidden {
  display: none !important;
}

/* ================= SECTION HEADERS ================= */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.carousel-instruction {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted) !important;
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}

/* ================= HEADER ================= */
.main-header {
  position: sticky;
  top: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  background-color: transparent;
  display: inline-block;
}

.logo-wrapper img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

.nav-link:hover {
  color: var(--primary-red);
}

.btn-primary-header {
  background-color: var(--primary-red);
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-red);
}

.btn-primary-header:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-1px);
}

/* Mobile Hamburger Menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2100;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 4px;
  transition: var(--transition);
}

/* Full Screen Mobile Overlay Menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 3rem 2rem;
  gap: 2.5rem;
  z-index: 2000;
  text-align: center;
}

.mobile-nav.is-active {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  line-height: 1;
}

.mobile-menu-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--forest-green);
}

.mobile-menu-links a:hover {
  color: var(--primary-red);
}

.btn-primary-mobile {
  background-color: var(--primary-red);
  color: var(--bg-white);
  text-align: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  box-shadow: var(--shadow-red);
  width: 100%;
  max-width: 300px;
}

/* ================= HERO SECTION ================= */
.hero-section {
  padding: 3.5rem 1.5rem;
  background-color: var(--bg-white);
  position: relative;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(13, 59, 48, 0.05);
  color: var(--forest-green);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero-badge svg {
  color: var(--primary-red);
}

.hero-text-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--forest-green);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-text-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-action {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
}

.btn-red {
  background-color: var(--primary-red);
  color: var(--bg-white);
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--forest-green);
  border: 2.5px solid var(--forest-green);
}

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

.hero-trustline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-main-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(13, 59, 48, 0.1));
}

/* ================= HERO PREMIUM PROPOSITION ================= */
.hero-premium-proposition {
  background-color: var(--forest-green);
  color: var(--bg-white);
  padding: 2.2rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.proposition-header .proposition-tag {
  display: inline-block;
  background-color: rgba(255, 183, 3, 0.15);
  color: var(--yellow-support);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.proposition-header h2 {
  font-size: 1.45rem;
  color: var(--bg-white);
  font-weight: 700;
  line-height: 1.25;
}
.proposition-body > p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}
.proposition-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.prop-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.prop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 183, 3, 0.2);
  color: var(--yellow-support);
  font-size: 0.9rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}
.prop-text h3 {
  font-size: 0.95rem;
  color: var(--bg-white);
  margin-bottom: 0.15rem;
  font-weight: 600;
}
.prop-text p {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.75;
  line-height: 1.35;
}

/* ================= VIDEO SECTION ================= */
.video-tutorial-section {
  padding: 3.5rem 1.5rem;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.video-tutorial-section .section-header h2 { color: var(--forest-green); }
.video-tutorial-section .section-header p { color: var(--text-muted); }

.video-container {
  max-width: 320px; /* Story vertical format (9:16 aspect ratio) */
  aspect-ratio: 9/16;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--forest-green);
  background-color: #000;
  cursor: pointer;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(13, 59, 48, 0.85), rgba(13, 59, 48, 0.95)), url('imagens-profissionais/MORANGO.png') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  padding: 2rem;
  text-align: center;
}
.video-overlay-tag {
  background-color: var(--primary-red);
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.video-overlay h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.play-btn-huge {
  background-color: var(--primary-red);
  color: var(--bg-white);
  border: none;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(214,40,40,0.5);
  animation: pulse 2s infinite;
  cursor: pointer;
  margin-bottom: 1rem;
}
.play-text {
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(214,40,40,0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(214,40,40,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(214,40,40,0); }
}

/* ================= OFFICIAL BANNER ================= */
.official-banner-section {
  padding: 0;
  background-color: var(--bg-white);
}

.banner-container {
  max-width: 100%;
  margin: 0 auto;
}

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

/* ================= TRUST STRIP (Amarelo Logo) ================= */
.trust-strip {
  background-color: var(--yellow-support);
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(13, 59, 48, 0.1);
  border-bottom: 1px solid rgba(13, 59, 48, 0.1);
}

.strip-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.strip-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.strip-icon-box {
  background-color: rgba(13, 59, 48, 0.08);
  color: var(--forest-green);
  padding: 0.6rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-text h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--forest-green);
  margin-bottom: 0.2rem;
}

.strip-text p {
  font-size: 0.85rem;
  color: var(--forest-green);
  opacity: 0.9;
  line-height: 1.35;
  font-weight: 500;
}

/* ================= PRODUCTS SECTION (Carousel Premium) ================= */
.products-section {
  padding: 3.5rem 0;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

/* Restrict container width to show exactly adjacent fraction */
.carousel-container {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.carousel-item {
  flex: 0 0 300px;
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.45;
  filter: blur(2px) grayscale(15%);
  transform: scale(0.9);
  pointer-events: none;
}

.carousel-item.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1.08);
  pointer-events: auto;
}

.product-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.carousel-item.is-active .product-card {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-green);
}

.product-img-container {
  height: 160px;
  padding: 1rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.product-img-container img {
  max-height: 100%;
  object-fit: contain;
}

.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.15rem;
  color: var(--forest-green);
  margin-bottom: 0.4rem;
}

.product-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.4;
  flex-grow: 1;
}

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

.product-footer .price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--forest-green);
  white-space: nowrap;
}

.product-footer .price small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-footer .price.text-red {
  color: var(--primary-red);
}

.btn-buy {
  background-color: var(--bg-light);
  color: var(--forest-green);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

.btn-buy:hover {
  background-color: var(--forest-green);
  color: var(--bg-white);
  border-color: var(--forest-green);
}

.btn-red-cta {
  background-color: rgba(214, 40, 40, 0.06);
  color: var(--primary-red);
  border-color: rgba(214, 40, 40, 0.2);
}

.btn-red-cta:hover {
  background-color: var(--primary-red);
  color: var(--bg-white);
  border-color: var(--primary-red);
}

.premium-card {
  border: 2px solid rgba(214, 40, 40, 0.25);
  position: relative;
}

.see-more-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-light) !important;
  border: 2.5px dashed var(--forest-green) !important;
  cursor: pointer;
  height: 100%;
  text-decoration: none;
}

.see-more-icon-box {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  background-color: #ffffff;
}

.see-more-icon-box .plus-icon {
  font-size: 4rem;
  font-weight: 300;
  color: var(--forest-green);
  line-height: 1;
}

.see-more-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  padding: 1.25rem;
}

.see-more-info h3 {
  font-size: 1.15rem;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.see-more-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.4;
  padding: 0 0.5rem;
}

.tag-premium {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background-color: var(--primary-red);
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  z-index: 10;
  text-transform: uppercase;
}

.products-cta-row {
  text-align: center;
  margin-top: 1.5rem;
}

.products-cta-row .btn-action {
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
}

/* ================= COMO FUNCIONA (Verde Logo) ================= */
.how-it-works {
  padding: 3.5rem 1.5rem;
  background-color: var(--forest-green);
}

.how-it-works .section-header h2 {
  color: var(--bg-white);
}

.how-it-works .section-header p {
  color: var(--text-light);
  opacity: 0.85;
}

.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background-color: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-3px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--forest-green);
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.1rem;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.45;
}

/* ================= SEÇÃO DE ENTREGA (Amarelo Logo) ================= */
.delivery-section {
  padding: 3.5rem 1.5rem;
  background-color: var(--yellow-support);
}

.delivery-section .section-header h2 {
  color: var(--forest-green);
}

.delivery-section .section-header p {
  color: var(--forest-green);
  opacity: 0.9;
  font-weight: 500;
}

.delivery-grid {
  max-width: 960px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.delivery-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(13, 59, 48, 0.1);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.delivery-icon {
  color: var(--primary-red);
  margin-bottom: 1.25rem;
}

.delivery-card h3 {
  font-size: 1.25rem;
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

.delivery-card p {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.delivery-card .delivery-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
  margin-bottom: 0;
}

.delivery-cta {
  text-align: center;
}

/* ================= COMBINE SEUS FAVORITOS (Vermelho Logo) ================= */
.custom-order-section {
  padding: 3.5rem 1.5rem;
  background-color: var(--primary-red);
}

.custom-order-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.custom-order-card h2 {
  color: var(--bg-white);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.custom-order-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 1.75rem;
}

.example-box {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  max-width: 340px;
  margin: 0 auto 2rem;
  text-align: left;
}

.example-box h4 {
  color: var(--yellow-support);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.example-box ul {
  list-style: none;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.example-box ul li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.example-box ul li::before {
  content: "✓";
  color: var(--yellow-support);
  font-weight: 800;
}

.success-message {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--bg-white);
  font-weight: 600;
  white-space: nowrap;
}

.success-message strong {
  color: var(--yellow-support);
  font-weight: 800;
}

.btn-white-cta {
  background-color: var(--bg-white);
  color: var(--primary-red);
  font-weight: 800;
}

.btn-white-cta:hover {
  background-color: var(--yellow-support);
  color: var(--forest-green);
  transform: translateY(-2px);
}

/* ================= COMPARISON SECTION ================= */
.comparison-section {
  padding: 3.5rem 1.5rem;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.comparison-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.comparison-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.comparison-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  border-bottom: 1.5px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.comparison-card-header h3 {
  font-size: 1.15rem;
  color: var(--forest-green);
  margin: 0 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  white-space: nowrap;
}

.comparison-card.premium-card .comparison-card-header h3 {
  color: var(--primary-red);
}

.comparison-card.premium-card .comparison-card-header {
  border-color: rgba(214, 40, 40, 0.15);
}

.grade-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

.grade-badge.grade-b {
  background-color: rgba(13, 59, 48, 0.08);
  color: var(--forest-green);
  border: 1px solid rgba(13, 59, 48, 0.15);
}

.grade-badge.grade-a {
  background-color: rgba(214, 40, 40, 0.08);
  color: var(--primary-red);
  border: 1px solid rgba(214, 40, 40, 0.15);
}

.comparison-card.premium-card {
  border: 2.5px solid var(--primary-red);
  box-shadow: var(--shadow-md);
}

}

.comparison-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.comparison-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.comparison-features svg {
  color: var(--primary-red);
  flex-shrink: 0;
}

.comparison-card.premium-card .comparison-features svg {
  color: var(--forest-green);
}

/* ================= ABOUT SECTION (Vermelho, split bleed centered 100%) ================= */
.about-section {
  padding: 3.5rem 1.5rem;
  background-color: var(--bg-light);
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--primary-red);
  color: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  width: 100%;
  align-items: stretch;
}

.about-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  font-size: 2.2rem;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-image-wrapper {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15); /* Removes transparent padding from the original image */
  display: block;
}

/* ================= WHOLESALE SECTION (Amarelo, split bleed centered 100%) ================= */
.wholesale-section {
  padding: 3.5rem 1.5rem;
  background-color: var(--bg-light);
}

.wholesale-container {
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--yellow-support);
  color: var(--forest-green);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.wholesale-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  width: 100%;
  align-items: stretch;
}

.wholesale-image-wrapper {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}

.wholesale-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center; /* Shift focus to right to clip cut on the left */
  transform: scale(1.35); /* Added zoom to completely hide cropped borders */
  display: block;
}

.wholesale-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wholesale-content h3 {
  font-size: 2rem;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

.wholesale-content p {
  font-size: 0.95rem;
  color: var(--forest-green);
  opacity: 0.95;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.btn-green-cta {
  background-color: var(--forest-green);
  color: var(--bg-white);
  align-self: flex-start;
}

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

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 3.5rem 1.5rem;
  background-color: var(--bg-white);
}

.faq-container {
  max-width: 760px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--border-green);
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-white);
}

.faq-item summary {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest-green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

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

.faq-chevron {
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--forest-green);
  border-right: 2px solid var(--forest-green);
  transform: rotate(45deg);
  transition: var(--transition);
}

.faq-item[open] .faq-chevron {
  transform: rotate(-135deg);
}

.faq-item p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.faq-support-text {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* ================= FINAL CTA ================= */
.final-cta-section {
  padding: 3.5rem 1.5rem;
  background-color: var(--forest-green);
}

.final-cta-card {
  max-width: 960px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3.5rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.final-cta-card h2 {
  color: var(--bg-white);
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.final-cta-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.btn-outline-white {
  background-color: transparent;
  color: var(--bg-white);
  border: 2.5px solid var(--bg-white);
}

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

.final-cta-card .support-text {
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.85;
  display: block;
}

/* ================= FOOTER ================= */
.main-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 44px;
  width: auto;
  align-self: flex-start;
  background-color: #ffffff;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
}

.footer-brand-column p {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.75;
  line-height: 1.45;
}

.footer-info-column h4,
.footer-links-column h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.footer-info-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-social-icons-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
}

.social-icon-box-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  transition: var(--transition);
}

.social-icon-box-link:hover {
  background-color: var(--forest-green);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.footer-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.75;
}

.footer-links-column a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.75;
  margin-bottom: 0.6rem;
}

.footer-links-column a:hover {
  color: var(--yellow-support);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.55;
}

/* ================= WHATSAPP FLOATING BUTTON ================= */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  transition: var(--transition);
}

.whatsapp-floating-btn:hover {
  transform: scale(1.1);
  background-color: #20ba59;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-text-content h1 {
    font-size: 2.4rem;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .strip-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .delivery-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .about-grid, .wholesale-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-premium-proposition {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-image-wrapper, .wholesale-image-wrapper {
    min-height: 280px;
  }

  .wholesale-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-logo {
    align-self: center;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-text-content h1 {
    font-size: 1.85rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-action {
    width: 100%;
  }
  
  .strip-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .custom-order-card {
    padding: 2rem 1.25rem;
  }
  
  .custom-order-card h2 {
    font-size: 1.6rem;
  }
  
  .final-cta-card {
    padding: 2.5rem 1.25rem;
  }
  
  .final-cta-card h2 {
    font-size: 1.65rem;
  }

  .carousel-item {
    flex: 0 0 240px;
  }

  .product-info {
    padding: 1rem;
  }

  .product-footer .price {
    font-size: 1.1rem;
  }

  .btn-buy {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .carousel-instruction {
    font-size: 0.85rem;
  }

  .products-cta-row .btn-action {
    width: auto;
    font-size: 0.85rem;
    padding: 0.7rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .cta-buttons .btn-action {
    width: 100%;
    max-width: 280px;
  }
}

/* ================= REVEAL ON SCROLL ANIMATIONS ================= */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0) !important;
}

/* Delay classes for staggered animation */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
