/* ============================================================
   WORLD COSMÉTICOS — STYLESHEET
   ============================================================ */

/* ------------------------------------------------------------
   1. CUSTOM PROPERTIES
------------------------------------------------------------ */
:root {
  /* Palette — identidade gringa */
  --cinza-claro:       #FDF9F6;
  --cinza-medio:       #E8E4DC;
  --cinza-texto:       #3C3540;
  --cinza-escuro:      #2B1F6B;   /* roxo profundo */
  --branco:            #FFFFFF;

  /* Laranja — cor primária da marca */
  --verde-agua:        #F47521;
  --verde-agua-dark:   #F47521;
  --verde-agua-light:  #FFF2E8;

  --laranja-claro:     #F9A14A;
  --laranja-claro-light: #FEF3E2;
  --laranja-escuro:    #D4621A;

  --rosa-queimado:     #E07080;
  --rosa-queimado-light: #FFE8EC;

  /* Roxo — cor secundária da marca */
  --roxo-claro:        #A898D8;
  --roxo-claro-light:  #EEEAFF;
  --roxo-medio:        #7060C8;

  /* Cores das ondas decorativas */
  --wave-mint:         #9FDBBF;
  --wave-pink:         #F4BFBF;
  --wave-peach:        #F7CFB0;
  --wave-lavender:     #C4BCE8;

  /* Typography */
  --font-heading: 'Nunito', 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-elegant: 'Nunito', sans-serif;

  /* Spacing */
  --section-py: 96px;
  --container-max: 1200px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,.08);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.10);

  /* Radius — mais arredondado para identidade lúdica */
  --radius-sm:  10px;
  --radius-md:  20px;
  --radius-lg:  32px;

  /* Transitions */
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --dur:        .3s;
}

/* ------------------------------------------------------------
   2. RESET & BASE
------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cinza-texto);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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

.section { padding: var(--section-py) 0; }

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

/* ------------------------------------------------------------
   3. TYPOGRAPHY HELPERS
------------------------------------------------------------ */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--verde-agua-dark);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--verde-agua-dark);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--cinza-escuro);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: #666;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header { margin-bottom: 64px; }
.section-header .section-label { display: block; }

/* ------------------------------------------------------------
   4. BUTTONS
------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--verde-agua-dark);
  color: var(--branco);
  border-color: var(--verde-agua-dark);
}
.btn-primary:hover {
  background: var(--laranja-escuro);
  border-color: var(--laranja-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,117,33,.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
}

.btn-outline-dark {
  background: transparent;
  color: var(--cinza-escuro);
  border-color: var(--cinza-escuro);
}
.btn-outline-dark:hover {
  background: var(--cinza-escuro);
  color: var(--branco);
}

.btn-lg { padding: 16px 36px; font-size: 15px; }

.btn-full { width: 100%; justify-content: center; }

.btn-whatsapp {
  background: #25D366;
  color: var(--branco);
  border-color: #25D366;
  padding: 16px 32px;
  font-size: 15px;
}
.btn-whatsapp:hover {
  background: #1DAA52;
  border-color: #1DAA52;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-whatsapp svg { width: 20px; height: 20px; }

.btn-gringa {
  background: var(--branco);
  color: var(--cinza-escuro);
  border-color: var(--branco);
  font-weight: 700;
}
.btn-gringa:hover {
  background: transparent;
  color: var(--branco);
  border-color: var(--branco);
}

.btn-gringa-outline {
  background: transparent;
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.4);
}
.btn-gringa-outline:hover {
  background: rgba(255,255,255,.1);
  color: var(--branco);
  border-color: rgba(255,255,255,.8);
}

/* ------------------------------------------------------------
   5. NAVIGATION
------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}

/* Logo como imagem (altura controlada via inline style pelo siteConfig) */
.logo-img {
  height: auto;
  width: auto;
  max-width: 240px;
  max-height: 120px;
  object-fit: contain;
  display: block;
}
.logo-world {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--cinza-escuro);
  transition: color var(--dur);
}
.logo-cosmeticos {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--verde-agua);
  margin-top: 2px;
  transition: color var(--dur);
}
.navbar.scrolled .logo-world { color: var(--cinza-escuro); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--cinza-texto);
  transition: color var(--dur);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--verde-agua);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--cinza-escuro); }
.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--cinza-texto); }
.navbar.scrolled .nav-links a:hover { color: var(--cinza-escuro); }

.nav-cta { margin-left: 8px; font-size: 13px; padding: 10px 22px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cinza-escuro);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--cinza-escuro); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------
   6. HERO
------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: calc(100vh - 300px); /* 100vh − navbar(≈80px) − banner(220px) */
  display: flex;
  align-items: center;
  background: var(--cinza-claro);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FDF9F6 0%, #FFF8F2 50%, #FFF4EC 100%);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .22;
}
.shape-1 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: var(--laranja-claro);
}
.shape-2 {
  width: 400px; height: 400px;
  bottom: -80px; left: -80px;
  background: var(--roxo-claro);
  opacity: .15;
}
.shape-3 {
  width: 300px; height: 300px;
  top: 50%; left: 40%;
  background: var(--wave-peach);
  opacity: .18;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--laranja-escuro);
  border: 1px solid rgba(244,117,33,.35);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: rgba(244,117,33,.08);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cinza-escuro);
  margin-bottom: 14px;
}
.hero-title em {
  font-style: normal;
  color: var(--verde-agua);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #666;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(43,31,107,.35);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ------------------------------------------------------------
   7. STATS BAR
------------------------------------------------------------ */
.stats-bar {
  background: var(--branco);
  padding: 56px 0;
  border-bottom: 1px solid var(--cinza-medio);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--cinza-escuro);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  color: var(--verde-agua-dark);
}

.stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
  letter-spacing: .02em;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--cinza-medio);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   8. SOBRE
------------------------------------------------------------ */
.sobre {
  background: var(--cinza-claro);
}

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

.sobre-visual {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr;
  gap: 16px;
  align-items: stretch;
  min-height: 340px;
}

.sobre-card-main {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  background: var(--branco);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  min-height: 300px;
}
.lab-icon-large svg { width: 80px; height: 80px; }

/* Foto da fábrica no card Sobre */
.sobre-lab-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  display: block;
}
.sobre-card-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cinza-texto);
}

/* Coluna das badges (ANVISA + BPF) */
.sobre-badges-col {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 190px;
  justify-content: center;
}

.sobre-card-secondary,
.sobre-card-tertiary {
  background: var(--branco);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 3px solid transparent;
}
.sobre-card-secondary { border-left-color: var(--verde-agua); }
.sobre-card-tertiary  { border-left-color: var(--laranja-claro, #F5A84A); }

/* Ícone dentro das badges */
.sobre-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #EBF6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--verde-agua-dark);
}
.sobre-badge-icon svg { width: 18px; height: 18px; }
.sobre-badge-icon--orange {
  background: #FEF0E0;
  color: #C97820;
}

.sobre-mini-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--cinza-escuro);
  line-height: 1.2;
}
.sobre-mini-stat span {
  font-size: 11.5px;
  color: #888;
  line-height: 1.4;
  display: block;
  margin-top: 2px;
}

.sobre-text {
  color: #555;
  margin-bottom: 16px;
  font-size: 15.5px;
}

.sobre-pilares {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}
.pilar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cinza-texto);
}
.pilar-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pilar-icon--verde  { background: var(--verde-agua-dark); }
.pilar-icon--laranja { background: var(--laranja-claro); }
.pilar-icon--rosa   { background: var(--rosa-queimado); }
.pilar-icon--roxo   { background: var(--roxo-medio); }

/* ------------------------------------------------------------
   9. TERCEIRIZAÇÃO
------------------------------------------------------------ */
.terceirizacao {
  background: var(--branco);
}

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

.terceir-card {
  background: var(--cinza-claro);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--cinza-medio);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.terceir-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.terceir-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.terceir-icon svg { width: 26px; height: 26px; }

.terceir-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 10px;
}
.terceir-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* ------------------------------------------------------------
   10. PROCESSO
------------------------------------------------------------ */
.processo {
  background: var(--cinza-claro);
  padding-bottom: 80px;
}

.processo-steps {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 16px;
}

.processo-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--verde-agua-dark);
  margin-bottom: 12px;
  line-height: 1;
}

.step-line {
  width: calc(100% + 32px);
  height: 2px;
  background: linear-gradient(to right, var(--verde-agua-dark), var(--verde-agua));
  margin-bottom: 20px;
  position: relative;
}
.step-line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verde-agua-dark);
}
.step-line.last::after { display: none; }

.step-content h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   11. PORTFÓLIO — Photo Cards
------------------------------------------------------------ */
.portfolio {
  background: var(--branco);
}

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

/* Card container */
.portfolio-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--cinza-medio);
  overflow: hidden;
  background: var(--branco);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Image area — aspect-ratio garante altura proporcional uniforme em todos os cards */
.portfolio-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--card-clr-light, #EBF6F6);
  flex-shrink: 0;
}

/* Real photo */
.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--foto-pos, center);
  display: block;
  transition: transform .5s var(--ease);
}
.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.04);
}

/* Fallback (shown when no photo) */
.portfolio-card-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.portfolio-card-fallback svg {
  width: 72px;
  height: 72px;
  color: var(--card-clr, var(--verde-agua));
  opacity: .55;
}

/* When real img loads successfully, it covers fallback (z-index) */
.portfolio-card-img img:not([style*="display:none"]) {
  position: relative;
  z-index: 1;
}

/* Color strip at top of card */
.portfolio-card-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-clr, var(--verde-agua));
  z-index: 2;
}

/* Category badge */
.portfolio-card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--branco);
  background: var(--card-clr, var(--verde-agua));
  padding: 4px 12px;
  border-radius: 50px;
}

/* Overlay gradient on hover */
.portfolio-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,0) 50%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity var(--dur);
}
.portfolio-card:hover .portfolio-card-img::before {
  opacity: 1;
}

/* Card body */
.portfolio-card-body {
  padding: 20px 22px 24px;
  flex: 1;
}
.portfolio-card-body h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 8px;
}
.portfolio-card-body p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.65;
}

/* Upload note (visible only in source, not on page) */
/* To add photos: save arquivo na pasta images/ com os nomes indicados no HTML */

.portfolio-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: var(--cinza-claro);
  border-radius: var(--radius-lg);
}
.portfolio-cta p {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

/* ------------------------------------------------------------
   12. GRINGA
------------------------------------------------------------ */
.gringa {
  position: relative;
  background: var(--verde-agua);
  overflow: hidden;
  padding: var(--section-py) 0;
}

.gringa-bg {
  position: absolute;
  inset: 0;
}
.gringa-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.g-shape-1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: #fff;
  opacity: .10;
}
.g-shape-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: 10%;
  background: var(--laranja-escuro);
  opacity: .30;
}

.gringa-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.gringa-label-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
}

.gringa-logo-area {
  margin-bottom: 32px;
}
.gringa-logo {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE8CC 40%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.gringa-logo-sub {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}

.gringa-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 56px;
}

.gringa-pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.gringa-pilar {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.12);
  text-align: left;
  transition: border-color var(--dur), background var(--dur);
}
.gringa-pilar:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.20);
}

.gp-number {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  color: rgba(255,255,255,.30);
  margin-bottom: 12px;
  line-height: 1;
}

.gringa-pilar h5 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.95);
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.gringa-pilar p {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

.gringa-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   13. REVENDEDORES
------------------------------------------------------------ */
.revendedores {
  background: var(--cinza-claro);
}

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

.revendedores-content p {
  font-size: 15.5px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.75;
}

.revendedores-lista {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.revendedores-lista li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--cinza-texto);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--verde-agua-light);
  flex-shrink: 0;
  position: relative;
}
.check-icon::before,
.check-icon::after {
  content: '';
  position: absolute;
  background: var(--verde-agua-dark);
  border-radius: 2px;
}
.check-icon::before {
  width: 2px; height: 5px;
  left: 7px; top: 10px;
  transform: rotate(-45deg);
  transform-origin: bottom;
}
.check-icon::after {
  width: 2px; height: 8px;
  left: 11px; top: 7px;
  transform: rotate(40deg);
  transform-origin: bottom;
}

.revendedores-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rev-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cinza-medio);
  transition: transform var(--dur), box-shadow var(--dur);
}
.rev-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}
.rev-card--mid { margin-left: 32px; }
.rev-card--bot { margin-left: 64px; }

.rev-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.rev-icon svg { width: 48px; height: 48px; }

.rev-card div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 2px;
}
.rev-card div span {
  font-size: 12px;
  color: #888;
}

/* ------------------------------------------------------------
   14. CTA BANNER
------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--laranja-escuro) 0%, var(--verde-agua) 100%);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 8px;
}
.cta-text p {
  color: rgba(255,255,255,.75);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   15. CONTATO
------------------------------------------------------------ */
.contato {
  background: var(--branco);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contato-info p {
  font-size: 15.5px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.75;
}

.contato-itens {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-icon--verde  { background: var(--verde-agua-light); color: var(--verde-agua-dark); }
.ci-icon--laranja { background: var(--laranja-claro-light); color: var(--laranja-escuro); }
.ci-icon--roxo   { background: var(--roxo-claro-light); color: var(--roxo-medio); }

.contato-item div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 2px;
}
.contato-item div span {
  font-size: 14px;
  color: #666;
}

/* Form */
.contato-form-wrap {
  background: var(--cinza-claro);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

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

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

.form-group label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #666;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cinza-medio);
  border-radius: var(--radius-sm);
  background: var(--branco);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cinza-texto);
  transition: border-color var(--dur), box-shadow var(--dur);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde-agua-dark);
  box-shadow: 0 0 0 3px rgba(244,117,33,.14);
}

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

.form-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: -4px;
}

/* ------------------------------------------------------------
   16. FOOTER
------------------------------------------------------------ */
.footer {
  background: var(--cinza-escuro);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 16px;
}
.footer .logo-world { color: var(--branco); font-size: 22px; }
.footer .logo-cosmeticos { color: var(--verde-agua); }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--dur);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  border-color: var(--verde-agua);
  color: var(--verde-agua);
  background: rgba(244,117,33,.12);
}

.footer-links-group h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group ul li a,
.footer-links-group ul li span {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: color var(--dur);
}
.footer-links-group ul li a:hover { color: var(--branco); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: 12px;
  color: rgba(255,255,255,.25);
}

/* ------------------------------------------------------------
   17. FLOATING WHATSAPP
------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--branco); }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,.55);
}
.wf-tooltip {
  position: absolute;
  right: 68px;
  background: var(--cinza-escuro);
  color: var(--branco);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur);
}
.wf-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--cinza-escuro);
}
.whatsapp-float:hover .wf-tooltip { opacity: 1; }

/* ------------------------------------------------------------
   18. ANIMATIONS (scroll-reveal)
------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ------------------------------------------------------------
   19. RESPONSIVE
------------------------------------------------------------ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .sobre-grid,
  .revendedores-grid,
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }

  .sobre-visual { min-height: 260px; }
  .sobre-badges-col { width: 160px; }
  .sobre-card-secondary,
  .sobre-card-tertiary { padding: 12px 14px; gap: 10px; }

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

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  .stats-grid { gap: 0; }
  .stat-item { padding: 0 20px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* Hero — banner 170px + navbar ≈75px */
  .hero { min-height: calc(100vh - 245px); }
  .hero-content { padding-top: 24px; padding-bottom: 24px; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(43,31,107,.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; color: var(--branco); }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1000; position: relative; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* Stats */
  .stats-grid { flex-wrap: wrap; gap: 24px; }
  .stat-item { flex: calc(50% - 12px); padding: 16px; }
  .stat-divider { display: none; }

  /* Sobre */
  .sobre-visual { display: none; }

  /* Terceirização */
  .terceir-grid { grid-template-columns: 1fr; }

  /* Processo */
  .processo-steps { flex-direction: column; align-items: flex-start; gap: 32px; }
  .step-line { width: 2px; height: 32px; background: var(--verde-agua); margin: 0 0 0 40px; }
  .step-line::after { display: none; }
  .processo-step { flex-direction: row; gap: 20px; text-align: left; align-items: flex-start; }
  .step-number { min-width: 44px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }

  /* Gringa */
  .gringa-pilares { grid-template-columns: 1fr; }

  /* Revendedores */
  .rev-card--mid { margin-left: 0; }
  .rev-card--bot { margin-left: 0; }

  /* CTA Banner */
  .cta-inner { flex-direction: column; text-align: center; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contato-form-wrap { padding: 24px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  /* Hero — banner 150px + navbar ≈70px */
  .hero { min-height: calc(100vh - 220px); }
  .hero-content { padding-top: 16px; padding-bottom: 16px; }
  .hero-title { font-size: 28px; }
  .gringa-logo { font-size: 52px; }
  .gringa-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   LINHAS BANNER — carousel de linhas de produtos no cabeçalho
   ============================================================ */

/* margin-top definido por JS = navbar.offsetHeight */
.linhas-banner {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #1a1a2e;
  margin-top: 80px;   /* fallback; JS ajusta à altura real do navbar */
}

/* ── Trilha de slides ─────────────────────────────── */
.lb-track {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* ── Cada slide ───────────────────────────────────── */
.lb-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Gradientes únicos por índice (fallback sem foto) */
.lb-slide[data-li="0"] { background-image: linear-gradient(135deg, #4a0080 0%, #9b59b6 100%); }
.lb-slide[data-li="1"] { background-image: linear-gradient(135deg, #0a4f4f 0%, #4A9E9E 100%); }
.lb-slide[data-li="2"] { background-image: linear-gradient(135deg, #c0392b 0%, #e67e22 100%); }
.lb-slide[data-li="3"] { background-image: linear-gradient(135deg, #1a6f8a 0%, #2ecc71 100%); }
.lb-slide[data-li="4"] { background-image: linear-gradient(135deg, #16213e 0%, #0f3460 100%); }
.lb-slide[data-li="5"] { background-image: linear-gradient(135deg, #373b44 0%, #4286f4 100%); }

/* Overlay: sombra suave no topo para legibilidade */
.lb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.30) 0%, transparent 55%);
  z-index: 1;
}
/* Brilho de textura sutil no topo */
.lb-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255,255,255,.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* ── Painel de foto — lado direito do slide ─────── */
.lb-img-frame {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 62%;
  z-index: 2;
  /* Desfade a borda esquerda para fundir com o gradiente do slide */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 36%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 36%);
  /* Animação de entrada */
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.4,0,.2,1);
}
.lb-slide--active .lb-img-frame {
  opacity: 1;
  transform: translateX(0);
}
.lb-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Conteúdo do slide ────────────────────────────── */
.lb-content {
  position: absolute;
  top: 0; left: 0; bottom: 0;   /* sem right:0 — evita conflito com max-width */
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 44px;
  z-index: 4; /* acima do lb-img-frame (z-2) */
  /* animação de entrada por slide */
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.4,0,.2,1);
}
.lb-slide--active .lb-content {
  opacity: 1;
  transform: translateY(0);
}

.lb-badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  padding: 4px 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.28);
  margin-bottom: 12px;
  width: fit-content;
  backdrop-filter: blur(6px);
  transition: background .2s;
}

.lb-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 8px;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
  letter-spacing: -.3px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.lb-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 400px;
}

.lb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--laranja, #F47521);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .15s, box-shadow .2s;
  width: fit-content;
  box-shadow: 0 4px 18px rgba(244,117,33,.45);
  letter-spacing: .2px;
}
.lb-cta:hover {
  background: #d9631a;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(244,117,33,.55);
}
.lb-cta svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .2s; }
.lb-cta:hover svg { transform: translateX(3px); }

/* ── Setas de navegação ───────────────────────────── */
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
}
.lb-arrow:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-50%) scale(1.08);
}
.lb-arrow--prev { left: 20px; }
.lb-arrow--next { right: 20px; }

/* ── Dots ─────────────────────────────────────────── */
.lb-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 10;
}
.lb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background .2s, transform .2s, width .25s;
}
.lb-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

/* ── Indicador de progresso ───────────────────────── */
.lb-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--laranja, #F47521);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* ── Contador de slides ───────────────────────────── */
.lb-counter {
  position: absolute;
  bottom: 22px;
  right: 24px;
  z-index: 10;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.5px;
}

/* ── Hero — reset padding (banner já está no fluxo) ─ */
.hero-content {
  padding-top: 100px;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .linhas-banner  { height: 170px; }
  .lb-title       { font-size: 20px; }
  .lb-desc        { display: none; }
  .lb-content     { padding: 0 22px; max-width: 100%; }
  .lb-badge       { margin-bottom: 6px; }
  /* No mobile: mostra a foto como fundo full-bleed com overlay escuro */
  .lb-img-frame   { width: 100%; -webkit-mask-image: none; mask-image: none; opacity: 0; }
  .lb-slide--active .lb-img-frame { opacity: 1; transform: none; }
  .lb-slide       { position: relative; }
  /* Overlay mais forte no mobile para o texto ficar legível sobre a foto */
  .lb-overlay     { background: linear-gradient(to right, rgba(8,12,20,.88) 0%, rgba(8,12,20,.55) 60%, rgba(8,12,20,.20) 100%),
                    linear-gradient(to bottom, rgba(0,0,0,.20) 0%, transparent 50%); }
  .lb-arrow       { width: 36px; height: 36px; font-size: 20px; }
  .lb-arrow--prev { left: 10px; }
  .lb-arrow--next { right: 10px; }
}
@media (max-width: 480px) {
  .linhas-banner  { height: 150px; }
  .lb-title       { font-size: 17px; }
  .lb-content     { padding: 0 14px; max-width: 100%; }
  .lb-cta         { font-size: 12px; padding: 8px 14px; }
  .lb-counter     { display: none; }
  .lb-badge       { font-size: 8.5px; padding: 3px 10px; margin-bottom: 4px; }
}

/* ============================================================
   PORTFOLIO — card clicável
   ============================================================ */
.portfolio-card {
  cursor: pointer;
}

.portfolio-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 18px;
}

.portfolio-card-footer .btn-ver-linha {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--verde-agua-dark, #4A9E9E);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: gap .2s;
}
.portfolio-card-footer .btn-ver-linha svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}
.portfolio-card:hover .btn-ver-linha svg {
  transform: translateX(4px);
}

/* ============================================================
   MODAL DE PRODUTOS — redesign com hero banner + grid + carousel
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 35, 0.72);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-panel {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(28px) scale(.96);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,.26);
}
.modal-overlay.open .modal-panel {
  transform: translateY(0) scale(1);
}

/* ── Hero banner ──────────────────────────────────── */
.modal-hero {
  position: relative;
  height: 190px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0a4f4f 0%, #4A9E9E 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.modal-hero--no-img {
  background-image: none !important;
  background: linear-gradient(135deg, #0a4f4f 0%, #4A9E9E 100%);
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,30,.75) 0%, rgba(10,20,30,.15) 60%, transparent 100%);
}

.modal-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 22px 20px;
}

.modal-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.22);
  color: #fff;
  margin-bottom: 7px;
  backdrop-filter: blur(4px);
}

.modal-hero-content h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
  margin: 0 0 5px;
}

.modal-hero-content p {
  font-size: 12.5px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.modal-close:hover { background: rgba(255,255,255,.38); }
.modal-close svg { width: 17px; height: 17px; color: #fff; }

/* ── Body (scroll) ────────────────────────────────── */
.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 20px 24px;
}

/* ── Empty state ──────────────────────────────────── */
.modal-empty {
  text-align: center;
  padding: 40px 20px;
  color: #9ca3af;
}
.modal-empty svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: block;
  opacity: .3;
}
.modal-empty p {
  font-size: 14px;
  font-style: italic;
}

/* ── Grid de produtos ─────────────────────────────── */
.modal-produtos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-prod-card {
  border-radius: 16px;
  border: 1.5px solid #ebebeb;
  overflow: hidden;
  transition: border-color .22s, box-shadow .22s, transform .22s;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.modal-prod-card:hover {
  border-color: var(--verde-agua, #6BBEBE);
  box-shadow: 0 6px 24px rgba(107,190,190,.20);
  transform: translateY(-3px);
}

/* ── Carousel ─────────────────────────────────────── */
.car-wrap {
  position: relative;
  background: #fafafa;
  overflow: hidden;
  /* hint visual de que é clicável */
}
.car-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.06);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  z-index: 1;
}
.modal-prod-card:hover .car-wrap::after { opacity: 1; }

.car-track {
  display: flex;
  transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.car-track img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 3 / 4;    /* proporção retrato — ideal para embalagens */
  height: auto;
  object-fit: contain;
  background: #fafafa;
  display: block;
  padding: 10px;
  box-sizing: border-box;
}

.car-no-img {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6fa;
  color: #d1d5db;
}
.car-no-img svg {
  width: 40px;
  height: 40px;
  opacity: .35;
}

.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #374151;
  box-shadow: 0 2px 10px rgba(0,0,0,.14);
  transition: background .18s, transform .15s;
  z-index: 3;
}
.car-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.car-arrow--prev { left: 8px; }
.car-arrow--next { right: 8px; }

/* Ícone de zoom no canto — indica clicabilidade */
.car-zoom-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(255,255,255,.82);
  border-radius: 6px;
  padding: 3px 5px;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  color: #6b7280;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity .2s;
}
.car-zoom-hint svg { width: 12px; height: 12px; }
.modal-prod-card:hover .car-zoom-hint { opacity: 1; }

.car-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 7px 0 5px;
  background: #fafafa;
}
.car-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
}
.car-dot.active {
  background: var(--verde-agua, #6BBEBE);
  transform: scale(1.35);
}

/* ── Info do produto ──────────────────────────────── */
.modal-prod-info {
  padding: 12px 14px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.modal-prod-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.modal-prod-desc {
  font-size: 11.5px;
  color: #6b7280;
  margin: 5px 0 0;
  line-height: 1.5;
}
.modal-prod-preco {
  display: inline-block;
  margin-top: auto;
  padding-top: 10px;
  background: var(--verde-agua-light, #EBF6F6);
  color: var(--verde-agua-dark, #4A9E9E);
  font-size: 13px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
  margin-top: 10px;
}

/* ── Footer ───────────────────────────────────────── */
.modal-footer {
  padding: 14px 20px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.modal-footer .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 600px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-panel   { border-radius: 22px 22px 0 0; max-height: 93vh; }
  .modal-hero    { height: 160px; }
  .modal-produtos-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   20. LIGHTBOX — foto completa do produto
------------------------------------------------------------ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 12px 60px rgba(0, 0, 0, .6);
  user-select: none;
  animation: lbIn .22s ease both;
}
@keyframes lbIn {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, .14);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .18s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, .28); }
.lightbox-close svg   { width: 20px; height: 20px; }

/* cursor de zoom nas fotos do carousel */
.car-track img { cursor: zoom-in; }


/* ------------------------------------------------------------
   21. ONDAS DECORATIVAS — assinatura visual gringa
------------------------------------------------------------ */
.wave-divider {
  position: relative;
  line-height: 0;
  overflow: hidden;
  display: block;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Onda antes do footer — invertida */
.wave-divider--flip svg {
  transform: scaleX(-1);
}
