:root {
  --color-bg: #0A0B0D; /* Deep dark background */
  --color-text-primary: #FFFFFF; /* White text */
  --color-text-secondary: #9CA3AF; /* Gray text */
  
  --color-pill-bg: rgba(255, 255, 255, 0.05); /* Dark frosted glass */
  --color-pill-border: rgba(255, 255, 255, 0.1);
  --color-pill-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  
  --color-btn-highlight: #005B78; /* Brand blue */
  --color-btn-highlight-text: #FFFFFF;

  --font-heading: 'Gantari', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-cta: 'Michroma', sans-serif;
}

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

.hidden {
  display: none !important;
}

html {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
}

body {
  overflow-x: hidden;
  /* Add the soft leaf shadow texture later if needed */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-btn-highlight);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ----------------------------------
   HEADER & NAVIGATION PILLS
----------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
}

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

/* Base Pill Style */
.nav-pill {
  background: var(--color-pill-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-pill-border);
  box-shadow: var(--color-pill-shadow);
  border-radius: 100px; /* Fully rounded pill */
  display: flex;
  align-items: center;
  height: 50px;
  overflow: hidden; /* Ensures the inner button clips perfectly to the pill's border-radius */
}

/* Left Logo Pill */
.logo-pill {
  padding: 6px 24px;
  transition: transform 0.2s ease;
}

.logo-pill:hover {
  transform: scale(1.02);
}

/* Right Nav Pill */
.main-nav {
  padding: 0 0 0 24px;
  gap: 24px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #00E5FF; /* Super bright neon blue */
  filter: none;
  transition: all 0.2s ease;
}

/* Highlight Button inside the pill */
.nav-btn-dark {
  background-color: var(--color-btn-highlight);
  color: var(--color-btn-highlight-text);
  font-family: var(--font-cta);
  padding: 0 24px;
  align-self: stretch; /* Forces the button to stretch to the exact top and bottom bounds of the flex container */
  border-radius: 100px;
  font-size: 0.70rem;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.nav-btn-dark:hover {
  filter: brightness(1.2);
  transform: scale(1.02);
}
/* Header Dark State (White backgrounds) */
.header.header-dark .nav-pill {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.header.header-dark .nav-link {
  color: #111827;
}

.header.header-dark .nav-link:hover {
  color: #00cae0;
  filter: none;
}

.header.header-dark .logo-pill img {
  filter: brightness(0); /* Turns white logo to black */
}

/* Header Accent State (Accent backgrounds) */
.header.header-accent .nav-pill {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.header.header-accent .nav-btn-dark {
  background-color: #FFFFFF;
  color: var(--color-btn-highlight);
}

.header.header-accent .nav-btn-dark:hover {
  filter: brightness(0.95);
}


/* ----------------------------------
   UTILITIES & OVERLAYS
----------------------------------- */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--color-text-primary);
  opacity: 0;
  transform: translateY(20px);
}

.texture-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  background-image: url('../assets/Texture.webp');
  background-size: cover;
  opacity: 0.5;
  mix-blend-mode: screen;
}

/* ----------------------------------
   HERO SECTION
----------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #000000 0%, transparent 70%); /* Black on left fading to transparent on right */
}

.hero-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-content {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hero Tag */
.hero-tag {
  color: #00E5FF;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 24px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 100px;
  background-color: rgba(0, 229, 255, 0.05);
  display: inline-block;
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-heading);
  font-size: 5.5rem; /* Slightly larger to match the premium vibe */
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.text-gradient-italic {
  font-weight: 500;
  font-style: italic;
  background: linear-gradient(180deg, #FFFFFF 0%, #C4C4C4 100%); /* Much lighter bottom color for a subtler gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  background: linear-gradient(180deg, #E4E4E7 0%, #D4D4D8 100%); /* Faint, barely noticeable gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.4;
  margin-bottom: 48px;
  max-width: 480px;
  text-wrap: balance;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Global Buttons */
.btn-dark, .hero-btn-primary {
  background-color: var(--color-btn-highlight);
  color: var(--color-btn-highlight-text);
  border: 1px solid transparent;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 400;
  font-family: var(--font-cta);
  font-size: 0.78rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-dark:hover, .hero-btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

.btn-white {
  background-color: #FFFFFF;
  color: #005B78;
  border: 1px solid transparent;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 400;
  font-family: var(--font-cta);
  font-size: 0.875rem;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-white:hover {
  transform: translateY(-2px);
  filter: brightness(0.9);
}

/* Hero Buttons (Legacy classes using global styles) */

.hero-btn-secondary {
  background-color: var(--color-pill-bg);
  color: var(--color-text-primary);
  border: 1px solid var(--color-pill-border);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 400;
  font-family: var(--font-cta);
  font-size: 0.875rem;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ----------------------------------
   HERO RIGHT VISUALS
----------------------------------- */
.hero-visuals {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2; /* Keep above gradient */
}

.hero-glow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 80%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.hero-image {
  width: 80%;
  max-width: none;
  height: auto;
  transform-origin: right center;
}

/* ----------------------------------
   PROBLEMS MARQUEE
----------------------------------- */
.problems-marquee {
  position: relative;
  width: 100%;
  padding: 30px 0 40px 0;
  overflow: hidden;
  background-color: var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.problems-marquee-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.problems-marquee-title::before,
.problems-marquee-title::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #FF6B6B;
  border-radius: 50%;
  box-shadow: 0 0 6px #FF6B6B;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 90s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background-color: rgba(255, 68, 68, 0.05);
  border: 1px solid rgba(255, 68, 68, 0.15);
  border-radius: 100px;
  color: #FF6B6B;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.problem-item i {
  width: 20px;
  height: 20px;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----------------------------------
   SECTION DIVIDER
----------------------------------- */
.section-divider {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px; /* Way smaller, acts as a tab/arrow */
  line-height: 0;
  z-index: 11;
}

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

/* ----------------------------------
   SISTEMA SECTION
----------------------------------- */
.section-sistema {
  background-color: white;
  color: #111827; /* Dark text for contrast */
  padding: 120px 0;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.section-sistema::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/backgroundPattern.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0; /* Keep it behind text and elements */
  opacity: 0.25; /* Kept subtle so it blends cleanly with the white */
  mix-blend-mode: multiply; 
}

.section-sistema::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(at 20% 80%, #000 1px, transparent 0px);
  background-size: 3px 3px;
  background-position: 0 0;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0; /* Keep it behind text and elements */
  opacity: 0.05; /* Kept subtle so it blends cleanly with the white */
  mix-blend-mode: multiply; 
}

.sistema-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  width: 100%;
}

.sistema-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.sistema-tag {
  color: var(--color-btn-highlight);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 24px;
  border: 1px solid rgba(0, 91, 120, 0.3);
  border-radius: 100px;
  background-color: rgba(0, 91, 120, 0.05);
  display: inline-block;
}

.sistema-title {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0A0B0D;
  line-height: 0.95;
  text-transform: uppercase;
}

.text-gradient-dark-italic {
  font-weight: 400;
  font-style: italic;
  font-family: var(--font-heading);
  background: linear-gradient(180deg, #111827 0%, #6B7280 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  margin-left: 0
}

.sistema-subtitle {
  font-size: 1.125rem;
  color: #4B5563;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
  text-wrap: balance;
}

.sistema-video-wrapper {
  width: 100%;
  max-width: 1140px;
  position: relative;
}

.sistema-video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50px;
  box-shadow: inset 0 0 60px 5px white;
}

.sistema-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50px;
}

/* ----------------------------------
   BENEFICIOS SECTION
----------------------------------- */
.section-beneficios {
  background-color: var(--color-btn-highlight);
  color: var(--color-text-primary);
  padding: 140px 0;
  position: relative;
  z-index: 10;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.section-beneficios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative Background Graphics */
.bg-graphic {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05; /* Subtle background visibility */
  background-repeat: no-repeat;
}

.graphic-left {
  left: 0;
  width: 50%;
  height: 80vh;
  max-height: 700px;
  background-image: url('../assets/HalfLogo.svg');
  background-size: contain;
  background-position: left center;
}

.graphic-right {
  right: 0; /* Prevents the star from being cut by the scrollbar */
  width: 50%;
  height: 185px;
  background-image: url('../assets/HalfStar.webp');
  background-size: contain;
  background-position: right center;
}

.beneficios-container {
  display: flex;
  flex-direction: row-reverse; /* Header on right, grid on left */
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 1;
  max-width: 1300px;
}

.beneficios-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.beneficios-tag {
  align-self: center; /* Center within the flex column */
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
}

.beneficios-title {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-text-primary);
  line-height: 0.95;
  text-transform: uppercase;
}

.text-italic-light {
  font-weight: 400;
  font-style: italic;
  font-family: var(--font-heading);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  grid-auto-rows: 1fr; /* Forces all rows to be the same height */
  gap: 32px;
  flex: 1.5; /* Grid takes up slightly more space */
}

.beneficio-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
  height: 100%; /* Ensure it stretches to fill the row */
}

.beneficio-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.beneficio-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.beneficio-icon i {
  width: 30px;
  height: 30px;
}

.beneficio-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.beneficio-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  text-wrap: balance;
}

/* Play button arrangement */
.card-conforto {
  grid-column: 1;
  grid-row: 1;
}

.card-suporte {
  grid-column: 1;
  grid-row: 2;
}

.card-protecao {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  height: calc(50% - 16px); /* 50% of the combined 2 rows minus half the 32px gap equals exactly 1 row height! */
}

/* ----------------------------------
   TECIDO SECTION
----------------------------------- */
.section-tecido {
  background-color: var(--color-bg); /* Deep black fallback */
  background-image: url('../assets/ModalImage.webp');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  color: var(--color-text-primary);
  display: flex;
  position: relative;
  z-index: 10;
  min-height: 100vh;
  margin-top: -14vw; /* Slide under the masked comparison section above */
  padding-top: 14vw; /* Push internal content down away from the mask */
  
  /* Mask to cut the bottom with the curve */
  -webkit-mask-image: 
    linear-gradient(black, black),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1921 280' preserveAspectRatio='none'%3E%3Cpath d='M960.5 85.4951C426.5 184.99 0 77.1113 0 77.1113V1H1921V93.8787C1921 93.8787 1494.5 -14 960.5 85.4951Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-position: 
    top left,
    bottom left;
  -webkit-mask-size: 
    100% calc(100% - 14vw + 5px),
    100% 14vw;
  -webkit-mask-repeat: no-repeat;
  
  mask-image: 
    linear-gradient(black, black),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1921 280' preserveAspectRatio='none'%3E%3Cpath d='M960.5 85.4951C426.5 184.99 0 77.1113 0 77.1113V1H1921V93.8787C1921 93.8787 1494.5 -14 960.5 85.4951Z' fill='black'/%3E%3C/svg%3E");
  mask-position: 
    top left,
    bottom left;
  mask-size: 
    100% calc(100% - 14vw + 5px),
    100% 14vw;
  mask-repeat: no-repeat;
}

/* Gradient overlay so text on the right is readable */
.section-tecido::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(10, 11, 13, 0.95) 0%, rgba(10, 11, 13, 0.7) 45%, rgba(10, 11, 13, 0) 100%);
  z-index: 0;
}

.tecido-content-wrapper {
  position: relative;
  z-index: 3; /* Above the overlay */
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Text aligned to the right side of the container */
  padding: 50px 5% calc(120px + 14vw) 5%; /* Prevent content from being hidden by bottom mask */
}

.tecido-content {
  max-width: 550px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
}

.tecido-tag {
  color: #00E5FF;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 24px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 100px;
  background-color: rgba(0, 229, 255, 0.05);
  display: inline-block;
}

.tecido-title {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  line-height: 0.95;
  text-transform: uppercase;
}

.tecido-subtitle {
  font-size: 1.125rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 16px;
}

.tecido-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.tecido-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tecido-feature i {
  color: #00E5FF;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.tecido-feature h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.tecido-feature p {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.5;
}

.tecido-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.t-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: #E5E7EB;
  font-weight: 500;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.t-badge i {
  width: 16px;
  height: 16px;
  color: #00E5FF;
}

.t-badge:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.3);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ----------------------------------
   COMPARISON SECTION
----------------------------------- */
.section-comparison {
  background-color: white;
  color: #111827;
  display: flex;
  flex-direction: row-reverse; /* Image on the right, content on the left */
  align-items: stretch;
  position: relative;
  z-index: 20; /* Higher than beneficios so it overlays perfectly */
  min-height: 100vh;
  border-radius: 50px 50px 0 0;
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.2); /* Negative Y offset pushes the shadow to the top */
  
  /* Mask to cut the bottom with the curve */
  -webkit-mask-image: 
    linear-gradient(black, black),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1921 280' preserveAspectRatio='none'%3E%3Cpath d='M960.5 85.4951C426.5 184.99 0 77.1113 0 77.1113V1H1921V93.8787C1921 93.8787 1494.5 -14 960.5 85.4951Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-position: 
    top left,
    bottom left;
  -webkit-mask-size: 
    100% calc(100% - 14vw + 5px),
    100% 14vw;
  -webkit-mask-repeat: no-repeat;
  
  mask-image: 
    linear-gradient(black, black),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1921 280' preserveAspectRatio='none'%3E%3Cpath d='M960.5 85.4951C426.5 184.99 0 77.1113 0 77.1113V1H1921V93.8787C1921 93.8787 1494.5 -14 960.5 85.4951Z' fill='black'/%3E%3C/svg%3E");
  mask-position: 
    top left,
    bottom left;
  mask-size: 
    100% calc(100% - 14vw + 5px),
    100% 14vw;
  mask-repeat: no-repeat;
}

.comparison-image-wrapper {
  flex: 1; /* Left half */
  position: relative;
  min-height: 500px;
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Image hits the edges perfectly without being constrained in a card */
}

.comparison-content-wrapper {
  flex: 1; /* Right half */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5% calc(100px + 14vw) 5%; /* Prevent content from being hidden by bottom mask */
}

.comparison-content {
  max-width: 550px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
}

.comparison-tag {
  color: var(--color-btn-highlight);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 24px;
  border: 1px solid rgba(0, 91, 120, 0.3);
  border-radius: 100px;
  background-color: rgba(0, 91, 120, 0.05);
  display: inline-block;
}

.comparison-title {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0A0B0D;
  line-height: 0.95;
  text-transform: uppercase;
}

.comparison-subtitle {
  font-size: 1.125rem;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}

.comp-header {
  display: flex;
  justify-content: space-between;
  padding: 0 16px 8px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comp-col {
  flex: 1;
}

.comp-col-bad {
  color: #9CA3AF;
}

.comp-col-good {
  color: var(--color-btn-highlight);
  padding-left: 24px;
}

.comp-row {
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  align-items: stretch;
  overflow: hidden;
}

.comp-cell {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  font-size: 0.95rem;
}

.comp-cell-bad {
  color: #6B7280;
  /* Optional: text-decoration: line-through; */
}

.comp-cell-good {
  color: #111827;
  font-weight: 600;
  background: rgba(0, 91, 120, 0.03); /* Subtle brand background */
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  padding-left: 24px;
}

.icon-bad {
  color: #EF4444;
  width: 20px;
  height: 20px;
}

.icon-good {
  color: var(--color-btn-highlight);
  width: 20px;
  height: 20px;
}
/* ----------------------------------
   DEPOIMENTOS SECTION
----------------------------------- */
.section-depoimentos {
  background-color: #FFFFFF;
  color: #111827;
  position: relative;
  z-index: 9; /* Under tecido's z-index (which is 10) */
  min-height: 100vh;
  margin-top: -14vw; /* Slide under the masked tecido section above */
  padding-top: calc(40px + 14vw); /* Push internal content down away from the mask */
  padding-bottom: 120px;
}

.section-depoimentos::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(at 20% 80%, #000 1px, transparent 0px);
  background-size: 3px 3px;
  background-position: 0 0;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0; /* Keep it behind text and elements */
  opacity: 0.05; /* Kept subtle so it blends cleanly with the white */
  mix-blend-mode: multiply; 
}

.depoimentos-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.depoimentos-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.depoimentos-title {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111827;
  text-transform: uppercase;
}

.depoimentos-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%; /* Span full-width edge-to-edge for premium feel */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between the two marquee rows */
}

.depoimentos-grid {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping for carousel marquee */
  overflow-x: auto; /* Enable horizontal scrolling */
  gap: 24px;
  padding: 12px 4px; /* Padding for hover shadows to not be cut off */
  -ms-overflow-style: none; /* Hide scrollbar IE and Edge */
  scrollbar-width: none; /* Hide scrollbar Firefox */
  width: 100%;
}

.depoimentos-grid::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome, Safari and Opera */
}

.depoimento-card {
  flex: 0 0 auto; /* Don't shrink, don't grow */
  width: 280px; /* Smaller card width */
  background: #F9FAFB;
  border: 1px solid #F3F4F6;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.depoimento-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.star-filled {
  color: #FBBF24;
  fill: #FBBF24;
  width: 16px;
  height: 16px;
}

.star-unfilled {
  color: #E5E7EB;
  fill: none;
  width: 16px;
  height: 16px;
}

.depoimento-text {
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1; /* Pushes author section down evenly */
  font-style: italic;
}

.depoimento-author h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #10B981;
  font-weight: 600;
}

.verified-badge i {
  width: 12px;
  height: 12px;
}


/* ----------------------------------
   FAQ SECTION
----------------------------------- */
.section-faq {
  background-color: var(--color-btn-highlight);
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
  color: var(--color-text-primary);
  padding: 140px 0;
  position: relative;
  z-index: 10;
}

.section-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}


.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}

.faq-tag {
  align-self: center;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.faq-accordion {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 32px 32px 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

/* ----------------------------------
   FOOTER
----------------------------------- */
.site-footer {
  background: #070809 radial-gradient(circle at 85% 50%, rgba(0, 91, 120, 0.05) 0%, transparent 65%);
  color: var(--color-text-primary);
  position: relative;
  z-index: 12;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.4);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(at 20% 80%, #fff 1px, transparent 0px);
  background-size: 3px 3px;
  background-position: 0 0;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0; /* Keep it behind text and elements */
  opacity: 0.04; /* Subtle dotted grid against the dark background */
}

.footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: var(--font-heading);
  font-size: clamp(10rem, 18vw, 22rem);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  padding-top: 140px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-btn-highlight);
  letter-spacing: -0.01em;
}

.footer-description {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-btn-highlight);
  display: inline-block;
  flex-shrink: 0;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-address {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 280px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-socials {
  display: flex;
  gap: 32px;
}

.footer-socials a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #FFFFFF;
}

/* ----------------------------------
   EXTRA PRODUCTS STRIP
----------------------------------- */
.section-extra-products {
  background-color: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 50px 0;
  position: relative;
  z-index: 11; /* Keep it above the slide-under overlay elements */
  color: #111827;
}

.extra-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.extra-products-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4B5563; /* Darker gray for readability on white bg */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  user-select: none;
}

.extra-products-tag::before,
.extra-products-tag::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #005B78;
  border-radius: 50%;
  box-shadow: 0 0 6px #005B78;
}

.extra-products-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.extra-products-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}

.extra-product-card.horizontal-card {
  display: flex;
  flex-direction: row;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.extra-product-card.horizontal-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.extra-product-image-wrapper {
  position: relative;
  width: 140px;
  min-width: 140px;
  overflow: hidden;
  background-color: #F3F4F6;
}

.extra-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.extra-product-card.horizontal-card:hover .extra-product-image {
  transform: scale(1.05);
}

.extra-product-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  text-align: left;
}

.extra-product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.extra-product-rating .stars-container {
  display: flex;
  gap: 2px;
}

.extra-product-rating .stars-container i {
  width: 12px;
  height: 12px;
}

.extra-product-rating .rating-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #6B7280;
  font-weight: 500;
}

.extra-product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.extra-product-category {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.4;
  color: #6B7280;
  margin: 0;
}

.extra-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  margin-top: 12px;
}

.extra-product-price .price-old {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #9CA3AF;
}

.extra-product-price .price-new {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.extra-product-selectors-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.extra-product-select {
  flex: 1;
  height: 32px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #4B5563;
  padding: 0 8px;
  background-color: #F9FAFB;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s ease;
}

.extra-product-select:focus {
  border-color: var(--color-btn-highlight);
}

.extra-product-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  overflow: hidden;
  height: 36px;
  background: #FFFFFF;
}

.qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  color: #4B5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.qty-btn:hover {
  background-color: #F3F4F6;
  color: #111827;
}

.qty-input {
  width: 30px;
  height: 100%;
  border: none;
  border-left: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #111827;
  outline: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-add-to-cart {
  flex: 1;
  background-color: #005B78;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  height: 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-add-to-cart:hover {
  background-color: #054E61;
}

.btn-add-to-cart:active {
  transform: scale(0.98);
}

@media (max-width: 1024px) {
  .extra-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .extra-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ----------------------------------
   RESPONSIVENESS
----------------------------------- */
@media (max-width: 992px) {
  .nav-link {
    display: none; /* Hide just the links on mobile */
  }

  .carousel-btn {
    display: none; /* Hide buttons on mobile, let them swipe natively */
  }

  .main-nav {
    gap: 0;
    padding: 0; /* Remove padding since only the button remains */
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .hero-container {
    flex-direction: column;
    gap: 60px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .hero-actions a {
    width: fit-content;
    justify-content: center;
    text-align: center;
  }

  .hero-visuals {
    justify-content: center;
    width: 100%;
  }

  .hero-image {
    width: 100%;
    transform: none;
  }

  .hero-title {
    font-size: 4rem;
  }

  .sistema-title {
    font-size: 3.5rem;
  }

  .sistema-container {
    gap: 40px;
  }

  .section-beneficios {
    height: auto;
    min-height: 100vh;
    padding: 120px 0; /* Ensure content flows naturally and doesn't bleed out top */
  }

  .beneficios-container {
    flex-direction: column; /* Stacks header on top */
    gap: 60px;
  }

  .beneficios-header {
    align-items: center;
    text-align: center;
  }

  .beneficios-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    grid-auto-rows: auto;
  }

  .card-conforto, .card-suporte, .card-protecao {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    height: 100%; /* Reset the calculated height on mobile */
  }

  .beneficios-title {
    font-size: 3.5rem;
  }

  .section-comparison {
    flex-direction: column; /* Stacks image on top, content below */
  }

  .comparison-image-wrapper {
    width: 100%;
    min-height: 400px;
  }

  .comparison-image {
    position: relative; /* Switch away from absolute so it flows */
    height: 400px;
  }

  .comparison-content-wrapper {
    padding: 60px 5% calc(80px + 14vw) 5%; /* Bottom padding must account for the 14vw wave mask */
  }

  .comparison-table {
    gap: 8px;
  }
  
  .comp-cell {
    padding: 12px;
    font-size: 0.85rem;
    gap: 8px;
  }
  
  .comp-cell-good {
    padding-left: 12px;
  }

  .comp-col-good {
    padding-left: 12px;
  }

  .depoimentos-grid {
    padding-bottom: 20px;
  }

  /* FAQ Mobile Adjustments */
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  .faq-answer p {
    padding: 0 20px 24px 20px;
  }

  /* Footer Mobile Adjustments */
  .footer-container {
    flex-direction: column;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .footer-brand {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    align-self: center;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
  }
  .footer-col {
    min-width: 140px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-socials {
    gap: 24px;
  }

  .section-tecido {
    min-height: auto;
  }

  .section-tecido::before {
    /* Switch gradient to vertical for mobile readability */
    background: linear-gradient(to bottom, rgba(10, 11, 13, 0.95) 0%, rgba(10, 11, 13, 0.8) 60%, rgba(10, 11, 13, 0.3) 100%);
  }

  .tecido-content-wrapper {
    padding: 100px 5% 140px 5%; /* Revert back since section handles padding-top */
    align-items: flex-start;
  }

  .tecido-content {
    align-items: center;
    text-align: center;
  }

  .tecido-feature {
    text-align: left;
  }

  .hero-title, .tecido-title, .comparison-title, .depoimentos-title, .faq-title {
    font-size: 3.5rem;
  }
}

/* Extremely small screens */
@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }

  .sistema-title,
  .beneficios-title,
  .comparison-title,
  .tecido-title,
  .depoimentos-title {
    font-size: 2.5rem;
  }
}

/* ----------------------------------
   FLOATING WHATSAPP BUTTON
----------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  height: 52px;
  background-color: #25D366; /* Official WhatsApp Green */
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 0 18px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  z-index: 9999; /* Ensure it is above all page overlays and menus */
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  cursor: pointer;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* Forces black SVG path to render in white */
  transition: transform 0.3s ease;
}

.whatsapp-btn-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  animation-play-state: paused; /* Pause pulsing on hover for cleaner interaction */
}

.whatsapp-btn:hover img {
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 4px 16px rgba(37, 211, 102, 0.3);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 4px 16px rgba(37, 211, 102, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 16px rgba(37, 211, 102, 0.3);
  }
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 24px;
    right: 24px;
    height: 44px;
    padding: 0 18px 0 14px;
    gap: 8px;
  }

  .whatsapp-btn img {
    width: 20px;
    height: 20px;
  }
  
  .whatsapp-btn-text {
    font-size: 0.8rem;
  }
}

/* ----------------------------------
   CART DRAWER & SYNC LOADER
----------------------------------- */

.cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #005B78;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 11, 13, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -10px 0 30px rgba(10, 11, 13, 0.1);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E7EB;
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 4px;
}

.cart-drawer-close:hover {
  color: #111827;
  transform: scale(1.1);
}

.cart-drawer-close i {
  width: 20px;
  height: 20px;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty-state {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cart-empty-state i {
  color: #9CA3AF;
  margin-bottom: 16px;
}

.btn-continue-shopping:hover {
  background-color: #054E61 !important;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #F3F4F6;
  padding-bottom: 16px;
}

.cart-item-image-wrapper {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #F3F4F6;
  border: 1px solid #E5E7EB;
}

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

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  transition: color 0.2s ease;
}

.cart-item-remove:hover {
  color: #EF4444;
}

.cart-item-remove i {
  width: 16px;
  height: 16px;
}

.cart-item-options {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #6B7280;
  margin: 4px 0 8px 0;
}

.cart-item-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  overflow: hidden;
  height: 28px;
  background: #FFFFFF;
}

.cart-qty-btn {
  background: none;
  border: none;
  width: 24px;
  height: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4B5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cart-qty-btn:hover {
  background-color: #F3F4F6;
  color: #111827;
}

.cart-qty-input {
  width: 24px;
  height: 100%;
  border: none;
  border-left: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #111827;
  outline: none;
  -moz-appearance: textfield;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item-price {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid #E5E7EB;
  background-color: #F9FAFB;
}

.btn-checkout:hover {
  background-color: #054E61 !important;
}

.btn-checkout:active {
  transform: scale(0.98);
}

.sync-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 20000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sync-loading-overlay.active {
  display: flex;
  opacity: 1;
}

.sync-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #E5E7EB;
  border-top-color: #005B78;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.sync-loading-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-top: 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
    right: -100vw;
  }
}

/* Quick Add Section inside Cart Drawer Footer */
.cart-quick-add-section {
  margin-bottom: 20px;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 16px;
}

.quick-add-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Suggestions Carousel Container */
.quick-adds-carousel {
  position: relative;
  overflow: hidden;
  height: 128px; /* height to contain compact horizontal item with good margins */
}

.quick-add-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s ease;
  z-index: 1;
}

.quick-add-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.quick-add-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 12px;
  height: 100%;
  box-sizing: border-box;
}

.quick-add-left {
  aspect-ratio: 1;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
}

.quick-add-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-add-right {
  display: flex;
  flex-direction: column;
  gap: 12px; /* comfortable margin between elements */
  justify-content: center;
  flex: 1;
}

.quick-add-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1;
}

.quick-add-stars {
  display: flex;
  gap: 1.5px;
}

.quick-add-star-icon {
  width: 10px;
  height: 10px;
  color: #FBBF24;
  fill: #FBBF24;
  stroke: none;
}

.quick-add-rating .rating-text {
  font-weight: 700;
  color: #111827;
}

.quick-add-rating .rating-count {
  font-weight: 400;
  color: #6B7280;
  margin-left: 2px;
}

.quick-add-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.quick-add-name {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.quick-add-price {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-btn-highlight);
}

.quick-add-selectors-row {
  display: flex;
  gap: 8px;
}

.quick-add-select {
  flex: 1;
  height: 28px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #4B5563;
  padding: 0 6px;
  background-color: #F9FAFB;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s ease;
}

.quick-add-select:focus {
  border-color: var(--color-btn-highlight);
}

.btn-quick-add {
  background-color: var(--color-btn-highlight);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  height: 28px;
  width: 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-quick-add:hover {
  background-color: #054E61;
}

.btn-quick-add:active {
  transform: scale(0.98);
}

/* Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #D1D5DB;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background-color: var(--color-btn-highlight);
  transform: scale(1.2);
}

/* Motociclistas Hero Background */
.hero-motociclistas {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-motociclistas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/motoFundo.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12; /* Quase transparente (12% de opacidade) */
  z-index: -1;
  pointer-events: none;
}
