/* ============================================================
   INTERAMERICAS BEVERAGES — Design System
   ============================================================ */

/* Evita flash de texto em PT antes da tradução carregar */
html:not([data-iab-ready]) body {
  visibility: hidden;
}

:root {
  --green: #00A651;
  --green-dark: #008744;
  --green-light: #e8f7ef;
  --red: #E4002B;
  --red-dark: #c40024;
  --red-light: #fdeef1;
  --blue-dark: #1B1464;
  --blue: #0074C8;
  --blue-light: #e6f2fb;
  --yellow: #FDB813;
  --yellow-light: #fff8e6;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f4f6f9;
  --gray-100: #e8ecf2;
  --gray-200: #d1d9e6;
  --gray-400: #8b95a8;
  --gray-600: #5a6478;
  --gray-800: #2d3344;
  --gray-900: #141824;
  --black: #0a0c12;
  --gradient-brand: linear-gradient(135deg, var(--green) 0%, var(--blue) 50%, var(--blue-dark) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(27, 20, 100, 0.92) 0%, rgba(0, 116, 200, 0.85) 50%, rgba(0, 166, 81, 0.75) 100%);
  --shadow-sm: 0 2px 8px rgba(27, 20, 100, 0.06);
  --shadow-md: 0 8px 32px rgba(27, 20, 100, 0.1);
  --shadow-lg: 0 20px 60px rgba(27, 20, 100, 0.14);
  --shadow-card: 0 4px 24px rgba(27, 20, 100, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1280px;
  --logo-ratio: 628 / 95;
  --logo-height-header: 48px;
  --logo-height-footer: 42px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; }
button { cursor: pointer; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: var(--container-narrow); }

.section { padding: 100px 0; }
.section--gray { background: var(--off-white); }
.section--dark {
  background: var(--gray-900);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section--dark .section__label { color: var(--yellow); }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.section--dark .section__title { color: var(--white); }

.section__subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
}

.section--dark .section__subtitle { color: rgba(255,255,255,0.72); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(228, 0, 43, 0.3);
}

.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(228, 0, 43, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}

.btn--outline:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 166, 81, 0.3);
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 100%;
}

.header__logo img,
.footer__logo img,
.brand-logo {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  aspect-ratio: var(--logo-ratio);
}

.header__logo img {
  height: var(--logo-height-header);
  transition: filter var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.header--scrolled .header__logo img { filter: none; }

.header__logo img { filter: none; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  color: rgba(255,255,255,0.9);
}

.header--scrolled .header__link { color: var(--gray-800); }

.header__link:hover,
.header__link.active {
  color: var(--green);
}

.header__link.active { font-weight: 600; }

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 4px;
}

.header--scrolled .lang-switcher {
  background: var(--gray-100);
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50px;
  line-height: 0;
  transition: all var(--transition);
}

.lang-switcher__flag {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--transition), transform var(--transition);
}

.lang-switcher__btn:hover .lang-switcher__flag {
  transform: scale(1.06);
}

.lang-switcher__btn.active .lang-switcher__flag {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--green);
}

/* Language dropdown — mobile only (trigger injected via JS) */
.lang-dropdown__trigger,
.lang-dropdown__menu,
.lang-dropdown__chevron,
.lang-dropdown__label {
  display: none;
}

@media (min-width: 769px) {
  .lang-dropdown__menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: 0;
  }
}

.header--scrolled .lang-switcher__btn.active .lang-switcher__flag {
  box-shadow: 0 0 0 2px var(--gray-100), 0 0 0 3px var(--blue-dark);
}

.header--scrolled .lang-switcher__btn.active,
.header--scrolled .lang-switcher__btn:hover {
  background: transparent;
}

.header__cta {
  display: none;
  padding: 10px 22px;
  font-size: 0.8125rem;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.header--scrolled .header__toggle span { background: var(--blue-dark); }

.header__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__toggle.active span:nth-child(2) { opacity: 0; }
.header__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-900);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero__fluid {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.hero__fluid--1 {
  width: 400px;
  height: 400px;
  background: var(--green);
  top: 10%;
  right: -5%;
}

.hero__fluid--2 {
  width: 300px;
  height: 300px;
  background: var(--red);
  bottom: 20%;
  left: -5%;
  animation-delay: -3s;
}

.hero__fluid--3 {
  width: 250px;
  height: 250px;
  background: var(--blue);
  top: 50%;
  left: 40%;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: calc(var(--header-height) + 60px) 0 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title span {
  background: linear-gradient(90deg, var(--yellow), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 640px;
}

/* Hero claro — foto sem overlay, textos escuros */
.hero--light {
  background: var(--white);
}

.hero--light .hero__bg img {
  opacity: 1;
  height: 120%;
  will-change: transform;
}

.hero--light .hero__title {
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: clamp(3.25rem, 8vw, 5.75rem);
  color: var(--blue-dark);
  letter-spacing: 0.01em;
  line-height: 1.05;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero--light .hero__title-line {
  font-family: inherit;
  font-weight: 200;
  font-style: normal;
}

.hero--light .hero__title-line--em,
.hero--light .hero__title-em {
  font-family: inherit;
  font-weight: 200;
  font-style: italic;
  font-synthesis: style;
  color: inherit;
  -webkit-text-fill-color: currentColor;
  transform: skewX(-10deg);
  -webkit-transform: skewX(-10deg);
  transform-origin: left center;
  -webkit-transform-origin: left center;
}

.hero--light .hero__title-line--em {
  display: block;
}

.hero--light .hero__title-em {
  display: inline-block;
}

/* Reveal só com opacidade — evita conflito de transform no mobile (skew do itálico) */
.hero--light .hero__title.reveal {
  transform: none;
  transition: opacity 0.7s ease;
}

.hero--light .hero__title.reveal.visible {
  transform: none;
}

.hero--light .hero__title span,
.hero--light .hero__title-line {
  display: block;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: currentColor;
}

.hero--light .hero__title-line--blue {
  color: var(--blue-dark);
}

.hero--light .hero__title-line--red {
  color: var(--red-dark);
}

.hero--light .hero__subtitle {
  color: var(--gray-600);
}

.hero--light .hero__badge {
  background: var(--green-light);
  border: 1px solid rgba(0, 166, 81, 0.25);
  color: var(--green-dark);
  backdrop-filter: none;
}

.hero--light .btn--secondary {
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}

.hero--light .btn--secondary:hover {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

/* Header sobre hero claro (home) */
.header--light {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-sm);
}

.header--light.header--scrolled {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-sm);
}

.header--light .header__logo img {
  filter: none;
  opacity: 1;
}

.header--light .header__link {
  color: var(--gray-800);
}

.header--light .header__link:hover,
.header--light .header__link.active {
  color: var(--green);
}

.header--light .lang-switcher {
  background: var(--gray-100);
}

.header--light .lang-switcher__btn.active,
.header--light .lang-switcher__btn:hover {
  background: transparent;
}

.header--light .lang-switcher__btn.active .lang-switcher__flag {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--blue-dark);
}

.header--light .header__toggle span {
  background: var(--blue-dark);
}

.hero--page {
  min-height: 420px;
}

.hero--page .hero__content {
  padding: calc(var(--header-height) + 40px) 0 60px;
}

.hero--page .hero__title { font-size: clamp(2rem, 4vw, 3rem); }

/* Page hero variant */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 80px) 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/img_fundo_gotas.webp') center/cover no-repeat;
  opacity: 0.08;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
}

/* ============================================================
   CARDS & GRIDS
   ============================================================ */

.grid { display: grid; gap: 28px; }

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

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card__image img { transform: scale(1.06); }

.card__body { padding: 28px; }

.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card__icon--green { background: var(--green-light); color: var(--green); }
.card__icon--blue { background: var(--blue-light); color: var(--blue); }
.card__icon--red { background: #fde8ec; color: var(--red); }
.card__icon--yellow { background: var(--yellow-light); color: #c89400; }

.card__icon--line {
  width: 72px;
  height: 72px;
  background: none;
  border-radius: 0;
  margin-bottom: 24px;
}

.card__icon--line svg {
  width: 44px;
  height: 44px;
  stroke: var(--blue-dark);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.card:hover .card__icon--line svg {
  stroke: var(--green);
}

.card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.card__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Experience flow — sequência horizontal */
.experience-flow {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.experience-flow__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experience-flow__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.experience-flow__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 12, 18, 0.72) 0%,
    rgba(27, 20, 100, 0.58) 45%,
    rgba(10, 12, 18, 0.66) 100%
  );
}

.experience-flow__inner {
  position: relative;
  z-index: 2;
}

.experience-flow__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.experience-flow__header .section__label {
  color: var(--yellow);
  font-size: 0.875rem;
  letter-spacing: 0.16em;
}

.experience-flow__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

.flow-sequence {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
}

.flow-step {
  flex: 1;
  min-width: 0;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.flow-step:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(0, 166, 81, 0.45);
  transform: translateY(-4px);
}

.flow-step__index {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--green);
  margin-bottom: 20px;
}

.flow-step__text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--white);
  margin: 0;
}

.flow-connector {
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  align-self: center;
  padding: 0 4px;
}

.flow-connector svg {
  width: 100%;
  height: 24px;
}

.flow-connector path {
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.85;
}

.flow-connector polygon {
  fill: var(--green);
}

@media (max-width: 900px) {
  .flow-sequence {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: 520px;
  }

  .flow-connector {
    flex: none;
    width: 48px;
    height: 48px;
    margin: 0 auto;
    padding: 0;
    transform: rotate(90deg);
  }

  .experience-flow {
    padding: 64px 0;
  }
}

/* Evolution line — sensação de consumo */
.evolution-line {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.evolution-line__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.evolution-line__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.evolution-line__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 12, 18, 0.78) 0%,
    rgba(27, 20, 100, 0.62) 50%,
    rgba(10, 12, 18, 0.74) 100%
  );
}

.evolution-line__inner {
  position: relative;
  z-index: 2;
}

.evolution-line__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 56px;
}

.evolution-line__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

.evolution-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto 48px;
}

.evolution-item {
  flex: 1;
  min-width: 0;
  padding: 36px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.evolution-item:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(0, 166, 81, 0.45);
  transform: translateY(-4px);
}

.evolution-item__index {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--green);
  margin-bottom: 16px;
}

.evolution-item__title {
  font-family: var(--font-heading);
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.evolution-item__text {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.evolution-divider {
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.evolution-divider span {
  display: block;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0,
    rgba(255, 255, 255, 0.55) 10px,
    transparent 10px,
    transparent 16px
  );
}

.evolution-highlight {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 0 0;
  text-align: center;
}

.evolution-highlight__text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2.375rem);
  font-weight: 800;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.statement-banner {
  position: relative;
  padding: clamp(140px, 22vw, 260px) 0;
  min-height: clamp(480px, 58vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.statement-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.statement-banner__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.statement-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 12, 18, 0.82) 0%,
    rgba(27, 20, 100, 0.68) 50%,
    rgba(10, 12, 18, 0.8) 100%
  );
}

.statement-banner__inner {
  position: relative;
  z-index: 2;
}

.statement-banner__header {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.statement-banner__headline {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2.35vw, 1.75rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Ingredient story — fundo com texto editorial */
.ingredient-story {
  position: relative;
  padding: clamp(100px, 18vw, 160px) 0;
  min-height: clamp(440px, 52vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ingredient-story__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ingredient-story__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: right center;
  will-change: transform;
}

.ingredient-story__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(20, 16, 58, 0.97) 0%,
    rgba(27, 20, 100, 0.92) 18%,
    rgba(27, 20, 100, 0.82) 32%,
    rgba(27, 20, 100, 0.45) 48%,
    rgba(27, 20, 100, 0.12) 58%,
    transparent 68%
  );
}

.ingredient-story__inner {
  position: relative;
  z-index: 2;
}

.ingredient-story__content {
  max-width: 580px;
  padding-right: 24px;
}

.ingredient-story__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.ingredient-story__text {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.96);
  margin: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .evolution-line {
    padding: 64px 0;
  }

  .statement-banner {
    padding: 100px 0;
    min-height: 420px;
  }

  .ingredient-story {
    padding: 88px 0;
    min-height: 420px;
  }

  .ingredient-story__bg img {
    object-position: center center;
  }

  .ingredient-story__overlay {
    background: linear-gradient(
      to right,
      rgba(20, 16, 58, 0.97) 0%,
      rgba(27, 20, 100, 0.94) 55%,
      rgba(27, 20, 100, 0.75) 72%,
      rgba(27, 20, 100, 0.35) 88%,
      transparent 100%
    );
  }

  .ingredient-story__content {
    max-width: none;
    padding-right: 0;
  }

  .evolution-row {
    flex-direction: column;
    max-width: 520px;
    gap: 0;
  }

  .evolution-divider {
    flex: none;
    width: 100%;
    height: 40px;
    padding: 0 32px;
  }

  .evolution-divider span {
    width: 100%;
  }
}

/* Segment pills */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .segments-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .partner-segments {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partner-segments {
    grid-template-columns: 1fr;
  }
}

.segment-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  cursor: default;
}

.segment-pill:hover {
  border-color: var(--green);
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.segment-pill:hover .segment-pill__icon svg {
  stroke: var(--green);
}

.segment-pill__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
}

.segment-pill__icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--blue-dark);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.segment-pill__name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1.35;
}

/* Caixas com conteúdo centralizado */
.boxes-grid .card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.boxes-grid .segment-pill {
  justify-content: center;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(0, 166, 81, 0.3);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.split__image--transparent {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split__image--transparent::after {
  display: none;
}

.split__image--transparent img {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(27, 20, 100, 0.12));
}

.split__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Amazon section */
.amazon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.amazon-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.amazon-card__bg {
  position: absolute;
  inset: 0;
}

.amazon-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amazon-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,12,18,0.92) 0%, rgba(10,12,18,0.3) 60%, transparent 100%);
}

.amazon-card__content {
  position: relative;
  z-index: 1;
  padding: 40px;
}

.amazon-card__tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.amazon-card__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.amazon-card__text {
  color: rgba(255,255,255,0.78);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 400px;
}

/* World map */
.world-map {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px 24px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.world-map--integrated {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.section--global {
  padding-bottom: 80px;
  overflow: hidden;
}

.world-map--integrated .world-map__figure {
  margin: 0 0 40px;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(16px, 4vw, 48px);
  background: transparent;
  aspect-ratio: 2 / 1;
  max-height: min(560px, 72vw);
}

.world-map--integrated .world-map__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.world-map--integrated .countries-list {
  padding-top: 8px;
}

.world-map__figure {
  margin: 0 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 1;
  max-height: 520px;
  background: var(--white);
}

.world-map__image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.world-map__svg {
  width: 100%;
  height: auto;
  opacity: 0.25;
}

.world-map__markers {
  position: absolute;
  inset: 0;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
}

.map-marker__dot {
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.3);
  animation: markerPulse 2s infinite;
}

.map-marker__label {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 4px;
}

@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.3); }
  50% { box-shadow: 0 0 0 10px rgba(0, 166, 81, 0.1); }
}

.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  justify-content: center;
}

.country-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-800);
}

.country-tag__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(27, 20, 100, 0.12);
  background: var(--white);
}

.country-tag__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Quality grid */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quality-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.quality-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.quality-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
}

.quality-item__icon--line {
  width: 56px;
  height: 56px;
  background: none;
  border-radius: 0;
}

.quality-item__icon--line svg {
  width: 40px;
  height: 40px;
  stroke: var(--blue-dark);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.quality-item:hover .quality-item__icon--line svg {
  stroke: var(--green);
}

.quality-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--blue-dark);
}

.quality-item__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--gradient-brand);
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/img_fundo_gotas.webp') center/cover;
  opacity: 0.06;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__text {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  margin-bottom: 36px;
}

.cta-banner .btn--secondary {
  border-color: rgba(255,255,255,0.6);
}

.cta-banner .btn--secondary:hover {
  background: var(--white);
  color: var(--blue-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.footer__logo img {
  height: var(--logo-height-footer);
  margin-bottom: 20px;
}

.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.footer__links li { margin-bottom: 12px; }

.footer__links a {
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--green); }

.footer__contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green);
}

.footer__contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__contact-item a:hover {
  color: var(--green);
}

.footer__office {
  margin-bottom: 20px;
}

.footer__contact-col .footer__office:first-child {
  margin-top: 4px;
}

.footer__office-flag {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  margin-top: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.footer__office-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer__contact-item--office {
  align-items: flex-start;
  margin-bottom: 0;
}

.footer__office-country {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.footer__office-phone {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.footer__office-phone:hover {
  color: var(--green);
}

.footer__office-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.footer__newsletter p {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.footer__form {
  display: flex;
  gap: 8px;
}

.footer__input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.875rem;
}

.footer__input::placeholder { color: rgba(255,255,255,0.4); }

.footer__submit {
  padding: 12px 18px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--transition);
}

.footer__submit:hover { background: var(--green-dark); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8125rem;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a:hover { color: var(--green); }

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

.footer__bottom p a:hover { color: var(--green); }

/* ============================================================
   EMPRESA PAGE
   ============================================================ */

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--blue));
}

.timeline__item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 32px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.timeline__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.timeline__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.value-card:nth-child(2) { border-left-color: var(--red); }
.value-card:nth-child(3) { border-left-color: var(--blue); }
.value-card:nth-child(4) { border-left-color: var(--yellow); }
.value-card:nth-child(5) { border-left-color: var(--green); }
.value-card:nth-child(6) { border-left-color: var(--blue-dark); }

.value-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── MVV Section (Empresa) ── */
.mvv-section .section__header {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.mvv-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(27, 20, 100, 0.06);
  box-shadow: var(--shadow-card);
  position: relative;
  min-height: 100%;
}

.mvv-card--purpose {
  background: var(--green-light);
}

.mvv-card--purpose .mvv-card__bg {
  opacity: 1;
}

.mvv-card--purpose .mvv-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(238, 249, 243, 0.82) 0%,
    rgba(232, 247, 239, 0.74) 50%,
    rgba(226, 244, 235, 0.68) 100%
  );
  pointer-events: none;
}

.mvv-card--purpose .mvv-card__bg img {
  opacity: 0.32;
  object-position: center center;
}

.mvv-card--dna {
  background: var(--red-light);
}

.mvv-card--dna .mvv-card__bg {
  opacity: 1;
}

.mvv-card--dna .mvv-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(253, 238, 241, 0.82) 0%,
    rgba(251, 232, 236, 0.74) 50%,
    rgba(251, 228, 233, 0.68) 100%
  );
  pointer-events: none;
}

.mvv-card--dna .mvv-card__bg img {
  opacity: 0.32;
  object-position: center center;
}

.mvv-card--values {
  background: var(--blue-light);
}

.mvv-card--values .mvv-card__bg {
  opacity: 1;
}

.mvv-card--values .mvv-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(238, 245, 252, 0.82) 0%,
    rgba(232, 242, 251, 0.74) 50%,
    rgba(226, 238, 249, 0.68) 100%
  );
  pointer-events: none;
}

.mvv-card--values .mvv-card__bg img {
  opacity: 0.32;
  object-position: center center;
}

.mvv-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mvv-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mvv-card__head {
  position: relative;
  z-index: 2;
  padding: 28px 24px 0;
}

.mvv-card__icon {
  width: 48px;
  height: 48px;
}

.mvv-card__icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mvv-card__icon--green svg { stroke: var(--green); }
.mvv-card__icon--red svg { stroke: var(--red); }
.mvv-card__icon--blue svg { stroke: var(--blue); }

.mvv-card--values .mvv-card__icon svg {
  fill: none;
  stroke: var(--blue);
}

.mvv-card__label {
  margin: 16px 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mvv-card--purpose .mvv-card__label { color: var(--green-dark); }
.mvv-card--dna .mvv-card__label { color: var(--red-dark); }
.mvv-card--values .mvv-card__label { color: var(--blue); }

.mvv-card__heading {
  margin: 8px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--blue-dark);
}

.mvv-card__rule {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 16px;
  border-radius: 2px;
}

.mvv-card--purpose .mvv-card__rule { background: var(--green); }
.mvv-card--dna .mvv-card__rule { background: var(--red); }
.mvv-card--values .mvv-card__rule { background: var(--blue); }

.mvv-card__desc {
  position: relative;
  z-index: 2;
  margin: 16px 0 0;
  padding: 0 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.mvv-card__figure {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  min-height: 160px;
  margin-top: 8px;
  padding: 0 16px 0;
}

.mvv-card__figure img {
  width: auto;
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  display: block;
}

.mvv-card--purpose .mvv-card__figure {
  margin-top: -18px;
  margin-bottom: -18px;
}

.mvv-card--purpose .mvv-card__figure img {
  max-width: 96%;
  max-height: 250px;
}

.mvv-card--purpose .mvv-card__footer {
  z-index: 3;
  margin-top: -10px;
}

.mvv-card__visual {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 180px;
  margin-top: 12px;
  padding: 0 16px;
}

.mvv-card__visual--purpose {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mvv-card__chart {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 48%;
  width: calc(100% - 32px);
  height: 90px;
}

.mvv-card__photo {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 88%;
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto;
}

.mvv-card__spacer {
  flex: 1;
  min-height: 80px;
}

.mvv-card__footer {
  position: relative;
  z-index: 2;
  margin: 16px;
  padding: 18px 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.mvv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.mvv-stat__num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}

.mvv-stat__label {
  margin-top: 6px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--gray-600);
}

.mvv-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.mvv-pillar {
  padding: 4px 6px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
}

.mvv-pillar:last-child { border-right: none; }

.mvv-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.mvv-card--dna .mvv-pillar__icon svg {
  stroke: var(--red);
}

.mvv-pillar__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--blue);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mvv-pillar__title {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--blue-dark);
}

.mvv-pillar__text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--gray-600);
}

.mvv-values-list {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 8px 0 0;
  padding: 0 24px 24px;
}

.mvv-value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.mvv-value-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mvv-value-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--white);
}

.mvv-card--values .mvv-value-item__icon {
  border-color: var(--blue);
}

.mvv-value-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mvv-card--values .mvv-value-item__icon svg {
  stroke: var(--blue);
}

.mvv-value-item__title {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.mvv-value-item__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-600);
}

@media (max-width: 1100px) {
  .mvv-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .mvv-stats,
  .mvv-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mvv-pillar {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 12px;
  }

  .mvv-pillar:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.card__icon--line-lg {
  width: 88px;
  height: 88px;
  margin-bottom: 28px;
}

.card__icon--line-lg svg {
  width: 52px;
  height: 52px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid--uniform {
  gap: 20px;
}

.gallery-grid--uniform img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition);
}

.gallery-grid img:hover { transform: scale(1.03); }

.gallery-grid:not(.gallery-grid--uniform) img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ============================================================
   PRODUTOS PAGE
   ============================================================ */

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.products-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.products-sidebar__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.products-search {
  position: relative;
  margin-bottom: 28px;
}

.products-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}

.products-search input:focus { border-color: var(--blue); }

.products-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}

.filter-list li { margin-bottom: 4px; }

.filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-light);
  color: var(--green);
  font-weight: 600;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-50);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body { padding: 24px; }

.product-card__category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.product-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card__link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-card__link:hover { color: var(--green); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--gray-400);
}

.products-count {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

/* ── Product catalog (text) ── */
.product-profiles {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.product-profiles__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.product-profiles__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
}

.product-profiles__list li {
  padding: 8px 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-full, 999px);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800);
}

.sugar-levels {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.sugar-levels__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.sugar-levels__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.sugar-levels__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
}

.sugar-levels__item {
  min-width: 72px;
  padding: 14px 20px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.product-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-catalog--single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.product-catalog__cta {
  text-align: center;
  margin-top: 40px;
}

.product-spec {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.section--gray .product-spec {
  background: var(--white);
}

.product-spec:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.product-spec__thumb {
  flex-shrink: 0;
  width: 168px;
  height: 168px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.product-spec__thumb img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 168px;
  object-fit: contain;
  object-position: top center;
}

.product-spec__content {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.product-spec__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.product-catalog .product-spec {
  opacity: 1;
}

.product-spec__type {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0;
}

.product-spec__note {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.5;
}

.product-spec__toggle {
  margin-top: 16px;
  font-size: 0.875rem;
  padding: 10px 18px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.product-spec:hover .product-spec__toggle:not([hidden]) {
  animation: product-spec-toggle-pulse 2.2s ease-in-out infinite;
  border-color: var(--red);
  color: var(--red-dark);
}

.product-spec:hover .product-spec__toggle.btn--outline:not([hidden]):hover,
.product-spec:hover .product-spec__toggle.btn--outline:not([hidden]):focus-visible {
  animation: none;
  color: var(--white);
  border-color: var(--white);
  background: var(--red);
}

@keyframes product-spec-toggle-pulse {
  0%, 100% {
    transform: scale(1);
    border-color: var(--red);
    box-shadow: 0 0 0 0 rgba(228, 0, 43, 0);
  }
  50% {
    transform: scale(1.04);
    border-color: var(--red-dark);
    box-shadow: 0 0 0 6px rgba(228, 0, 43, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-spec:hover .product-spec__toggle:not([hidden]) {
    animation: none;
    border-color: var(--red);
    color: var(--red-dark);
  }

  .product-spec:hover .product-spec__toggle.btn--outline:not([hidden]):hover,
  .product-spec:hover .product-spec__toggle.btn--outline:not([hidden]):focus-visible {
    color: var(--white);
    border-color: var(--white);
    background: var(--red);
  }
}

.product-spec__panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.product-spec__panel:not([hidden]) {
  display: block;
}

.product-spec--open {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.product-spec__table-wrap {
  margin: 0 0 16px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--off-white);
}

.product-spec__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.product-spec__table th,
.product-spec__table td {
  padding: 11px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-100);
}

.product-spec__table tbody tr:last-child td {
  border-bottom: none;
}

.product-spec__table thead th {
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.product-spec__flavor-label {
  color: var(--gray-800);
  line-height: 1.45;
  font-weight: 500;
}

.product-spec__close {
  font-size: 0.875rem;
  padding: 10px 18px;
}

@media (max-width: 768px) {
  .product-catalog { grid-template-columns: 1fr; }

  .product-spec {
    gap: 16px;
    padding: 20px;
  }

  .product-spec__thumb {
    width: 128px;
    height: 128px;
  }

  .product-spec__thumb img {
    max-height: 128px;
  }

  .product-spec__name {
    scroll-margin-top: 92px;
  }

  .product-spec--open {
    scroll-margin-top: 92px;
  }
}

/* ── Packaging ── */
.packaging-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.packaging-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.packaging-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.packaging-card__image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 40px;
  min-height: 240px;
}

.packaging-card__image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: top center;
}

@media (min-width: 768px) {
  .packaging-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
  }

  .packaging-card__image {
    min-height: auto;
    padding: 32px 40px 32px 48px;
    align-self: start;
  }

  .packaging-card__image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 420px;
    margin: 0;
  }
}

.packaging-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 32px 32px;
}

.packaging-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.packaging-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.packaging-card__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.packaging-card__specs {
  margin-top: auto;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.packaging-card__specs-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
  padding: 10px 16px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-600);
}

.packaging-card__specs-list {
  list-style: none;
}

.packaging-card__specs-list li {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
}

.packaging-card__specs-list li:last-child {
  border-bottom: none;
}

.packaging-card__ref {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.packaging-card__value {
  font-size: 0.9375rem;
  color: var(--gray-800);
  line-height: 1.4;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  margin-bottom: 28px;
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-card__image {
  overflow: hidden;
  min-height: 200px;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__body {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-card__category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 50px;
}

.blog-card__date {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.blog-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--blue-dark);
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card__read {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget__title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
}

.sidebar-categories li { margin-bottom: 8px; }

.sidebar-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}

.sidebar-categories a:hover { color: var(--green); }

.sidebar-categories span {
  font-size: 0.75rem;
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 50px;
  color: var(--gray-600);
}

/* ============================================================
   CONTATO PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-layout > * {
  min-width: 0;
}

.contact-info__heading {
  font-size: 1.75rem;
  margin-bottom: 32px;
}

.contact-office {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}

.contact-office:last-of-type {
  margin-bottom: 36px;
}

.contact-office__country {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.contact-office__flag {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(27, 20, 100, 0.1);
  background: var(--white);
}

.contact-office__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-office__phone {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 1.625rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.contact-office__phone:hover {
  color: var(--green);
}

.contact-office__address {
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.65;
}

.contact-info__social {
  margin-top: 8px;
}

.contact-info__social .contact-info__label {
  margin-bottom: 12px;
}

.contact-info__item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--green);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.contact-info__icon--line {
  width: 56px;
  height: 56px;
  background: none;
  border-radius: 0;
}

.contact-info__icon--line svg {
  width: 40px;
  height: 40px;
  stroke: var(--blue-dark);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.contact-info__item:hover .contact-info__icon--line svg {
  stroke: var(--green);
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue-dark);
  word-break: break-word;
}

.contact-info__value a {
  word-break: break-word;
}

.contact-info__value a:hover { color: var(--green); }

.contact-info__entries {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__entry + .contact-info__entry {
  padding-top: 0;
}

.contact-info__sublabel {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.contact-info__address {
  font-style: normal;
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  scroll-margin-top: 110px;
}

.contact-form__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form__subtitle {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 116, 200, 0.12);
  background: var(--white);
}

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

.phone-input {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.phone-input select {
  width: auto;
  min-width: 148px;
  max-width: 42%;
  flex-shrink: 0;
  padding-right: 28px;
}

.phone-input input {
  flex: 1;
  min-width: 0;
}

.form-group.error .phone-input select,
.form-group.error .phone-input input {
  border-color: var(--red);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--red);
}

.form-error {
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 6px;
  display: none;
}

.form-group.error .form-error { display: block; }

.form-success {
  display: none;
  padding: 20px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
}

.form-success.visible { display: block; }

.form-success--error {
  background: rgba(228, 0, 43, 0.08);
  color: var(--red-dark);
}

.contact-form__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.contact-form__submit.is-loading {
  pointer-events: none;
}

.pre-briefing__inner {
  max-width: 820px;
  margin: 0 auto;
}

.pre-briefing__header {
  text-align: center;
  margin-bottom: 32px;
}

.pre-briefing__body {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow-card);
}

.pre-briefing__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.pre-briefing__text:last-of-type {
  margin-bottom: 0;
}

.pre-briefing__steps {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}

.pre-briefing__steps-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.pre-briefing__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.pre-briefing__list li + li {
  margin-top: 12px;
}

.pre-briefing__list strong {
  color: var(--blue-dark);
  font-weight: 600;
}

.pre-briefing__cta {
  margin-top: 36px;
  text-align: center;
}

.section--map {
  padding: 0 0 40px;
  overflow: hidden;
}

.contact-map {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  height: clamp(360px, 45vw, 520px);
  min-height: 360px;
  background: var(--gray-100);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 20px;
}

.contact-map__address {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

.contact-map__link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

.contact-map__link:hover {
  color: var(--green);
}

.contact-info .footer__social a {
  background: var(--gray-100);
  color: var(--blue-dark);
}

.contact-info .footer__social a:hover {
  background: var(--green);
  color: var(--white);
}

/* ============================================================
   CLIENTES PAGE
   ============================================================ */

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.case-card__segment {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.case-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.case-card__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.case-card__metrics {
  display: flex;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.case-metric__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}

.case-metric__label {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.partner-segments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.partner-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 32px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.partner-segment:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green);
}

.partner-segment:hover .partner-segment__icon svg {
  stroke: var(--green);
}

.partner-segment__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-segment__icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--blue-dark);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.partner-segment__name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-dark);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--blue-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus { top: 16px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* Certifications */
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.cert-grid img {
  height: 64px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(30%);
  transition: all var(--transition);
}

.cert-grid img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

/* ── Compliance (Empresa) ── */
.compliance-split {
  align-items: center;
  gap: 56px;
}

.compliance-panel {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}

.compliance-panel__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.compliance-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.compliance-list li {
  border-radius: var(--radius-md);
}

.compliance-list__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  background: var(--off-white);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--blue-dark);
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.compliance-list__btn:hover,
.compliance-list__btn:focus-visible {
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0, 80, 48, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.compliance-list__btn svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  stroke: var(--green);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compliance-list__btn span {
  flex: 1;
}

/* Certificate lightbox */
.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cert-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.cert-lightbox[hidden] {
  display: none;
}

.cert-lightbox:not([hidden]) {
  display: flex;
}

.cert-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.82);
  backdrop-filter: blur(4px);
}

.cert-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.25s ease;
}

.cert-lightbox.is-open .cert-lightbox__dialog {
  transform: scale(1) translateY(0);
}

.cert-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-dark);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, transform 0.2s ease;
}

.cert-lightbox__close:hover,
.cert-lightbox__close:focus-visible {
  background: var(--white);
  transform: scale(1.05);
  outline: none;
}

.cert-lightbox__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.cert-lightbox__title {
  margin: 0;
  padding: 18px 56px 14px 20px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  border-bottom: 1px solid var(--gray-100);
}

.cert-lightbox__frame {
  flex: 1;
  overflow: auto;
  padding: 16px;
  background: var(--off-white);
}

.cert-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .cert-lightbox {
    padding: 12px;
  }

  .cert-lightbox__dialog {
    max-height: calc(100vh - 24px);
  }

  .cert-lightbox__title {
    padding-right: 48px;
    font-size: 0.9375rem;
  }

  .cert-lightbox__frame {
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .compliance-split {
    gap: 32px;
  }

  .compliance-panel {
    padding: 24px 20px;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 1024px) {
  .header__cta { display: inline-flex; }
}

@media (max-width: 1024px) {
  .split,
  .amazon-grid,
  .grid--3,
  .grid--4,
  .quality-grid,
  .mvv-grid,
  .footer__grid,
  .products-layout,
  .blog-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .blog-card { grid-template-columns: 1fr; }
  .blog-card__body { padding: 28px; }
  .blog-card__image { min-height: 220px; }

  .products-sidebar { position: static; }
  .blog-sidebar { position: static; }

  .gallery-grid,
  .gallery-grid--uniform { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img:first-child { grid-row: auto; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --logo-height-header: 32px;
  }

  .container { padding: 0 16px; }

  .section { padding: 64px 0; }

  .section__header { margin-bottom: 40px; }

  .section__title {
    font-size: clamp(1.625rem, 6vw, 2.25rem);
  }

  .section__subtitle {
    font-size: 1rem;
  }

  .grid { gap: 20px; }

  .page-hero {
    padding: calc(var(--header-height) + 40px) 0 56px;
  }

  .page-hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .page-hero__text {
    font-size: 1rem;
  }

  .breadcrumb {
    font-size: 0.8125rem;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 16px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding: calc(var(--header-height) + 32px) 0 56px;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero--light .hero__title {
    font-size: clamp(2.75rem, 10.5vw, 4rem);
  }

  .hero--light .hero__title-line--em,
  .hero--light .hero__title-em {
    font-style: italic;
    font-synthesis: style;
    -webkit-text-fill-color: currentColor;
    transform: skewX(-12deg);
    -webkit-transform: skewX(-12deg);
    transform-origin: left center;
    -webkit-transform-origin: left center;
  }

  .hero--light .hero__title-line--em {
    display: block;
  }

  .hero--light .hero__title.reveal,
  .hero--light .hero__title.reveal.visible {
    transform: none;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  /* Home hero (light) — improve text readability on mobile only */
  .hero--light::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.82) 48%,
      rgba(255, 255, 255, 0.35) 72%,
      rgba(255, 255, 255, 0.08) 100%
    );
    pointer-events: none;
  }

  .hero--light .hero__bg img {
    filter: saturate(0.9) contrast(0.95);
  }

  .hero--light .hero__subtitle {
    color: var(--gray-800);
  }

  .hero--light .btn-group .btn--secondary {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-color: rgba(27, 20, 100, 0.28);
    box-shadow: 0 4px 20px rgba(27, 20, 100, 0.08);
  }

  .hero--light .btn-group .btn--secondary:hover {
    background: rgba(27, 20, 100, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--white);
    border-color: var(--blue-dark);
  }

  /* Home — About section: hide image on mobile */
  .section[aria-labelledby="about-title"] .split__image {
    display: none;
  }

  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: rgba(10, 12, 18, 0.45);
    z-index: 999;
    pointer-events: auto;
  }

  /* ── Mobile header bar ── */
  .header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(27, 20, 100, 0.07);
  }

  .header--light {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 1px 0 rgba(27, 20, 100, 0.07);
  }

  body.nav-open .header {
    box-shadow: var(--shadow-sm);
  }

  .header__inner {
    gap: 10px;
  }

  .header__logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 96px);
  }

  .header__logo img {
    height: var(--logo-height-header);
    max-height: var(--logo-height-header);
    width: auto;
    max-width: 100%;
  }

  .header__actions {
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }

  .lang-switcher.lang-dropdown {
    position: relative;
    padding: 0;
    background: transparent;
    gap: 0;
  }

  .lang-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 52px;
    min-height: 40px;
    padding: 6px 10px;
    border-radius: 50px;
    background: var(--gray-100);
    border: 1px solid var(--gray-100);
    line-height: 0;
    transition: background var(--transition), border-color var(--transition);
  }

  .lang-dropdown__trigger:hover,
  .lang-dropdown--open .lang-dropdown__trigger {
    background: var(--white);
    border-color: var(--gray-200);
  }

  .lang-dropdown__flag {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .lang-dropdown__chevron {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--gray-600);
    border-bottom: 2px solid var(--gray-600);
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition);
    flex-shrink: 0;
  }

  .lang-dropdown--open .lang-dropdown__chevron {
    transform: rotate(-135deg) translateY(1px);
  }

  .lang-dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 168px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 6px;
    z-index: 1003;
    flex-direction: column;
    gap: 2px;
  }

  .lang-dropdown--open .lang-dropdown__menu {
    display: flex;
  }

  .lang-dropdown__menu .lang-switcher__btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
  }

  .lang-dropdown__menu .lang-switcher__btn.active {
    background: var(--green-light);
  }

  .lang-dropdown__menu .lang-switcher__btn.active .lang-switcher__flag {
    box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--green);
  }

  .lang-dropdown__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.2;
  }

  .header--light .lang-switcher {
    background: transparent;
  }

  .header__toggle {
    display: flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    padding: 8px;
  }

  .header__toggle span,
  .header--light .header__toggle span {
    background: var(--blue-dark);
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: min(300px, 88vw);
    height: calc(100dvh - var(--header-height));
    height: calc(100vh - var(--header-height));
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 28px;
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header__nav.open { right: 0; }

  .header__link {
    color: var(--gray-800);
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
  }

  .header__link:hover,
  .header__link.active {
    color: var(--green);
  }

  .header__cta {
    display: inline-flex;
    width: 100%;
    margin-top: 20px;
    justify-content: center;
  }

  .grid--2 { grid-template-columns: 1fr; }

  .partner-segments {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .split { gap: 40px; }

  .form-checkbox {
    font-size: 0.875rem;
  }

  .cert-grid img { height: 52px; }

  .packaging-card__image { min-height: auto; }

  .split__stats { grid-template-columns: 1fr; }

  .quality-item {
    padding: 20px;
    gap: 16px;
  }

  .quality-item__icon--line svg {
    width: 36px;
    height: 36px;
  }

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

  .phone-input { flex-direction: column; }

  .phone-input select {
    max-width: none;
    width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .contact-form {
    padding: 24px 20px;
    scroll-margin-top: calc(var(--header-height) + 16px);
  }

  .contact-form__title {
    font-size: 1.25rem;
  }

  .contact-form__subtitle {
    margin-bottom: 24px;
  }

  .contact-layout { gap: 32px; }

  .contact-info__item {
    gap: 12px;
    margin-bottom: 24px;
  }

  .contact-info .contact-info__icon--line {
    width: 36px;
    height: 36px;
  }

  .contact-info .contact-info__icon--line svg {
    width: 26px;
    height: 26px;
  }

  .contact-info > .section__title,
  .contact-info__heading {
    font-size: 1.5rem !important;
    margin-bottom: 24px !important;
  }

  .contact-office {
    margin-bottom: 24px;
    padding-bottom: 24px;
    text-align: left;
  }

  .contact-office__country {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }

  .contact-office__phone,
  .contact-office__address {
    text-align: left;
  }

  .contact-office__phone {
    font-size: 1.375rem;
  }

  .contact-info__item--emails .contact-info__value,
  .contact-info__item--emails .contact-info__value a {
    font-size: 0.8125rem;
    word-break: normal;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .form-group--checkbox {
    margin-bottom: 20px;
  }

  .contact-map {
    height: clamp(300px, 62vh, 440px);
    min-height: 300px;
  }

  .section--map {
    padding-bottom: 32px;
  }

  .contact-map__footer {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 16px;
  }

  .contact-map__link {
    white-space: normal;
  }

  .cta-banner { padding: 56px 0; }

  .cta-banner__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .statement-banner {
    padding: 72px 0;
    min-height: auto;
    background: var(--gray-900);
  }

  .statement-banner__bg {
    overflow: hidden;
  }

  .statement-banner__bg img {
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
  }

  .statement-banner__headline {
    font-size: clamp(1rem, 4.5vw, 1.35rem);
    letter-spacing: 0.04em;
  }

  .ingredient-story {
    min-height: auto;
    padding: 72px 0;
  }

  .ingredient-story__overlay {
    background: linear-gradient(
      to bottom,
      rgba(20, 16, 58, 0.96) 0%,
      rgba(27, 20, 100, 0.9) 40%,
      rgba(27, 20, 100, 0.5) 65%,
      transparent 82%
    );
  }

  .ingredient-story__bg img {
    object-position: center top;
  }

  .ingredient-story__title {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
  }

  .ingredient-story__text {
    font-size: 0.9375rem;
  }

  .product-catalog { grid-template-columns: 1fr; }

  .product-spec {
    gap: 16px;
    padding: 20px;
  }

  .sugar-levels {
    margin-top: 40px;
    padding: 28px 20px;
  }

  .sugar-levels__item {
    min-width: 64px;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .packaging-grid {
    gap: 28px;
    max-width: none;
  }

  .packaging-card__image {
    padding: 24px 20px;
  }

  .packaging-card__body {
    padding: 24px 20px 28px;
  }

  .packaging-card__specs-head,
  .packaging-card__specs-list li {
    grid-template-columns: minmax(64px, 0.85fr) 1.4fr;
    gap: 8px;
    padding: 10px 12px;
  }

  .packaging-card__ref,
  .packaging-card__value {
    font-size: 0.875rem;
  }

  .countries-list {
    gap: 8px;
    padding: 0 4px;
  }

  .country-tag {
    font-size: 0.75rem;
    padding: 8px 14px 8px 10px;
  }

  .country-tag__icon {
    width: 30px;
    height: 30px;
  }

  .world-map--integrated .world-map__figure {
    max-height: none;
    aspect-ratio: auto;
    padding: 0 8px;
  }

  .section--global { padding-bottom: 48px; }

  .footer__grid { gap: 32px; }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .footer__bottom p {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .cookie-consent {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .world-map:not(.world-map--integrated) { padding: 24px; }

  .gallery-grid,
  .gallery-grid--uniform { grid-template-columns: 1fr; }
}

/* ── Legal pages ── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-sm);
}

.legal-content__updated {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.legal-content section {
  margin-bottom: 32px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover { color: var(--primary-dark); }

/* ── Form checkbox ── */
.form-group--checkbox { margin-bottom: 24px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-group--checkbox.error .form-checkbox { color: var(--error, #dc2626); }

/* ── Smart preloader (slow loads only) ── */
body.preloader-active {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 249, 252, 0.94);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-preloader.is-visible {
  opacity: 1;
  visibility: visible;
}

.site-preloader.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.site-preloader__content {
  text-align: center;
}

.site-preloader__logo-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gray-100);
  border-top-color: var(--green);
  border-right-color: var(--blue);
  animation: preloader-spin 1.35s linear infinite;
}

.site-preloader__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.site-preloader__bar {
  width: 112px;
  height: 3px;
  margin: 22px auto 0;
  background: var(--gray-100);
  border-radius: 999px;
  overflow: hidden;
}

.site-preloader__bar-fill {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: 999px;
  background: var(--gradient-brand);
  animation: preloader-slide 1.15s ease-in-out infinite;
}

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

@keyframes preloader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader__ring,
  .site-preloader__bar-fill {
    animation: none;
  }

  .site-preloader__ring {
    border-top-color: var(--green);
    border-right-color: var(--blue);
  }

  .site-preloader__bar-fill {
    width: 55%;
    margin: 0 auto;
  }
}

/* ── Floating WhatsApp button ── */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.92);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, box-shadow 0.2s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-float:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px) scale(1.05);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

/* ── Cookie consent banner ── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  padding: 20px 0;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}

.cookie-consent.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent__content { flex: 1; min-width: 260px; }

.cookie-consent__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.cookie-consent__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-consent__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-consent__link {
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.cookie-consent__link:hover { color: var(--primary); }

.cookie-consent__accept {
  white-space: nowrap;
  min-width: 140px;
}

body.cookie-consent-visible { padding-bottom: 0; }

@media (max-width: 768px) {
  .legal-content { padding: 32px 24px; }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__links {
    justify-content: center;
    order: 2;
  }

  .cookie-consent__accept { width: 100%; }
}

@media (max-width: 480px) {
  :root {
    --header-height: 58px;
    --logo-height-header: 26px;
  }

  .container { padding: 0 14px; }

  .section { padding: 52px 0; }

  .section__header { margin-bottom: 32px; }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn { width: 100%; }

  .btn { width: 100%; }

  .hero__content { padding-bottom: 48px; }

  .hero--light::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.86) 52%,
      rgba(255, 255, 255, 0.42) 76%,
      rgba(255, 255, 255, 0.10) 100%
    );
  }

  .header__inner { gap: 8px; }

  .header__logo {
    max-width: calc(100% - 88px);
  }

  .lang-dropdown__trigger {
    min-width: 48px;
    min-height: 38px;
    padding: 5px 8px;
  }

  .lang-dropdown__flag {
    width: 20px;
    height: 20px;
  }

  .lang-dropdown__menu {
    min-width: 156px;
    right: -4px;
  }

  .header__toggle {
    min-width: 38px;
    min-height: 38px;
    padding: 7px;
  }

  .header__nav {
    width: min(280px, 92vw);
    padding: 4px 16px 24px;
  }

  .header__link {
    padding: 14px 0;
    font-size: 0.9375rem;
  }

  .partner-segments {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
    line-height: 1.1;
  }

  .hero--light .hero__title {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
    line-height: 1.08;
  }

  .hero--light .hero__title-line--em,
  .hero--light .hero__title-em {
    font-style: italic;
    transform: skewX(-12deg);
    -webkit-transform: skewX(-12deg);
  }

  .product-spec {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-spec__content { padding-top: 0; }

  .product-spec__thumb {
    width: 120px;
    height: 120px;
  }

  .product-spec__thumb img {
    max-height: 120px;
  }

  .sugar-levels__grid {
    gap: 8px;
  }

  .sugar-levels__item {
    min-width: calc(33% - 8px);
    flex: 1 1 calc(33% - 8px);
    padding: 10px 8px;
  }

  .segment-pill,
  .partner-segment {
    padding: 24px 16px;
  }

  .segment-pill__icon,
  .partner-segment__icon {
    width: 60px;
    height: 60px;
  }

  .segment-pill__icon svg,
  .partner-segment__icon svg {
    width: 36px;
    height: 36px;
  }

  .evolution-item {
    padding: 24px 20px;
  }

  .flow-step {
    padding: 24px 20px;
  }

  .legal-content { padding: 28px 18px; }

  .pre-briefing__body { padding: 24px 18px; }

  .card__body { padding: 20px; }

  .amazon-card { min-height: 320px; }

  .contact-form {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
  }

  .contact-office__flag {
    width: 26px;
    height: 26px;
  }

  .contact-info .contact-info__icon--line {
    width: 30px;
    height: 30px;
  }

  .contact-info .contact-info__icon--line svg {
    width: 22px;
    height: 22px;
  }

  .contact-info__item--emails .contact-info__value,
  .contact-info__item--emails .contact-info__value a {
    font-size: 0.75rem;
  }

  .contact-info__item--emails .contact-info__value {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .contact-map {
    height: clamp(260px, 55vh, 360px);
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
