/* ============================================================
   ROCHA BRASIL DISTRIBUIDORA — Styles
   ============================================================ */

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

:root {
  --green-dark:   #0a1f12;
  --green:        #2d6a4f;
  --green-mid:    #40916c;
  --green-light:  #74c69d;
  --gold:         #c5a059;
  --gold-light:   #e6c87a;
  --cream:        #faf7f0;
  --cream-dark:   #f0ebe0;
  --brown:        #5c3d1e;
  --text:         #1a1a1a;
  --text-mid:     #3d3d3d;
  --text-light:   #6b7280;
  --white:        #ffffff;
  --border:       #e5e7eb;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow:       0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
  --radius:       12px;
  --radius-md:    12px;
  --radius-sm:     8px;
  --radius-lg:    20px;
  --transition:   .28s ease;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Utility ---- */
.highlight       { color: var(--gold); }
.highlight-light { color: var(--gold-light); }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(45,106,79,.10);
  border: 1px solid rgba(45,106,79,.20);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-tag--light {
  color: var(--gold-light);
  background: rgba(201,169,78,.12);
  border-color: rgba(201,169,78,.25);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header--light .section-title { color: var(--white); }
.section-header--light .section-desc  { color: rgba(255,255,255,.72); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,.10);
  border-color: var(--white);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.btn--card {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
  font-size: .85rem;
  padding: 10px 20px;
}
.btn--card:hover {
  background: var(--green);
  color: var(--white);
}

.btn--lg   { font-size: 1rem; padding: 16px 32px; }
.btn--sm   { font-size: .82rem; padding: 10px 18px; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 6px 0;
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon { font-size: 1.7rem; line-height: 1; }
.logo__text  { display: flex; flex-direction: column; line-height: 1; }
.logo__name  {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.01em;
  transition: color var(--transition);
}
.logo__sub {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color var(--transition);
}

/* Logo imagem oficial */
.logo__img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1) drop-shadow(0 1px 4px rgba(0,0,0,.18));
  transition: filter var(--transition), opacity var(--transition);
}
.header.scrolled .logo__img {
  filter: brightness(1) drop-shadow(0 1px 6px rgba(0,0,0,.22));
}

.header.scrolled .logo__name { color: var(--green-dark); }
.header.scrolled .logo__sub  { color: var(--gold); }

/* Nav */
.nav { margin-left: auto; }
.nav__list {
  display: flex;
  gap: 4px;
}
.nav__link {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.header.scrolled .nav__link       { color: var(--text-mid); }
.header.scrolled .nav__link:hover { color: var(--green); background: rgba(45,106,79,.08); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.header.scrolled .hamburger span { background: var(--text); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.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;
}

/* Imagem de fundo do hero */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Overlay escuro sobre a imagem para legibilidade do texto */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__overlay {
  background:
    linear-gradient(
      160deg,
      rgba(10,31,18,.78) 0%,
      rgba(10,25,15,.68) 45%,
      rgba(8,20,12,.58) 100%
    );
}

/* Decorative circles */
.hero__bg::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,78,.18) 0%, transparent 70%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,78,.12) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,169,78,.15);
  border: 1px solid rgba(201,169,78,.30);
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero__desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 24px;
}
.stat:first-child { padding-left: 0; }

.stat__num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.stat__label {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.stat__divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.20);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}
.hero__scroll a {
  color: rgba(255,255,255,.55);
  font-size: 1.4rem;
  transition: color var(--transition);
}
.hero__scroll a:hover { color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  padding: 100px 0;
  background: var(--white);
}

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

.sobre__visual { position: relative; }

.sobre__img-wrap {
  position: relative;
  padding-top: 24px;
  padding-left: 24px;
}

.sobre__img-placeholder {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sobre__img-placeholder::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

.sobre__badge-float {
  position: absolute;
  bottom: -20px;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.sobre__badge-float i {
  font-size: 1.8rem;
  color: var(--gold);
}
.sobre__badge-float span {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* Decorative corner accent */
.sobre__img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100px; height: 100px;
  border-top: 4px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: 4px 0 0 0;
}

.sobre__text {}

.sobre__text p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}

.sobre__checks {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sobre__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-mid);
}
.sobre__checks li i {
  color: var(--green);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ============================================================
   PRODUTOS
   ============================================================ */
.produtos {
  padding: 100px 0;
  background: var(--cream);
}

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

.produto-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.produto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.produto-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.produto-card:hover::before { transform: scaleX(1); }

.produto-card--destaque {
  border-color: var(--green-mid);
  background: linear-gradient(160deg, var(--white) 0%, rgba(116,198,157,.05) 100%);
}
.produto-card--destaque::before { transform: scaleX(1); }

.produto-card--cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-color: var(--green);
  color: var(--white);
}
.produto-card--cta h3 { color: var(--white); }
.produto-card--cta p  { color: rgba(255,255,255,.80); }
.produto-card--cta .cta-text {
  color: var(--gold-light);
  font-weight: 600;
  margin: 8px 0 20px;
}

.produto-card__icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
  text-align: center;
  width: 100%;
  line-height: 1;
}

.produto-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,.22);
}

.produto-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.produto-card p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.65;
}

.produto-card ul {
  margin-bottom: 20px;
  flex: 1;
  width: 100%;
  text-align: left;
}
.produto-card ul li {
  font-size: .85rem;
  color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.produto-card ul li::before {
  content: '→';
  color: var(--green-mid);
  font-weight: 700;
  font-size: .8rem;
}


/* ============================================================
   PRODUTO CARD — IMAGENS (Vitrine Premium IA)
   ============================================================ */
.produto-card__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .10);
  margin-bottom: 0;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--cream);
}

/* Wrapper relativo para imagem + badge — garante badge sobre a foto */
.produto-card__img-wrap {
  position: relative;
  /* Flush com borda do card via margens negativas */
  width: calc(100% + 56px);
  margin-top: -32px;
  margin-left: -28px;
  margin-right: -28px;
  margin-bottom: 20px;
  /* Mesmo radius que o card externo — fusão de bordas perfeita */
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden !important;
  flex-shrink: 0;
  background: var(--cream);
}
/* Degradê de fusão: foto funde suavemente com a área de texto */
.produto-card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,255,255,.18) 100%);
  pointer-events: none;
  z-index: 1;
}
.produto-card__img-wrap .produto-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  vertical-align: top;     /* elimina gap de baseline abaixo do img */
}
/* Badge: canto superior direito DA FOTO (não do card) */
.produto-card__img-wrap .produto-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  transform: none;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0,0,0,.28);
}

.produto-card:hover .produto-card__img {
  transform: scale(1.04);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .16);
}

@media (max-width: 768px) {
  .produto-card__img { aspect-ratio: 4 / 3; }
}
@media (max-width: 480px) {
  .produto-card__img { aspect-ratio: 3 / 2; border-radius: var(--radius-sm); }
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,78,.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.diferencial-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.diferencial-item:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(201,169,78,.40);
  transform: translateY(-4px);
}

.diferencial-item__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(201,169,78,.15);
  border: 1px solid rgba(201,169,78,.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.diferencial-item h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.diferencial-item p {
  font-size: .875rem;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}

/* ============================================================
   COMO COMPRAR
   ============================================================ */
.como-comprar {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 190px;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.03em;
}

.step__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(45,106,79,.30);
}

.step h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.65;
}

.step__arrow {
  align-self: center;
  font-size: 1.3rem;
  color: var(--green-light);
  padding: 0 4px;
  flex-shrink: 0;
  margin-top: -20px;
}

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

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.10);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 74px;
  background: var(--text);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--text);
}

.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45);
  animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.45); }
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  padding: 100px 0;
  background: var(--cream);
}

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

.contato__info .section-title { text-align: left; }
.contato__info p {
  color: var(--text-mid);
  margin-bottom: 40px;
  font-size: .97rem;
  line-height: 1.7;
}

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

.canal-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.canal-item:is(a):hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.canal-item--whatsapp { border-color: rgba(37,211,102,.35); }
.canal-item--whatsapp .canal-item__icon { background: #25d366; }

.canal-item__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.canal-item div { display: flex; flex-direction: column; gap: 2px; }
.canal-item strong { font-size: .9rem; font-weight: 700; color: var(--text); }
.canal-item span   { font-size: .85rem; color: var(--text-light); }

/* Form */
.contato__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}

.form__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--cream-dark);
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form__group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: all var(--transition);
  resize: vertical;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,106,79,.10);
}

.form__group input.invalid,
.form__group select.invalid,
.form__group textarea.invalid {
  border-color: #dc2626;
  background: #fff5f5;
}

.form__check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form__check input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--green); }
.form__check label { font-size: .8rem; color: var(--text-light); cursor: pointer; }

.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 28px;
  background: rgba(45,106,79,.06);
  border: 1.5px solid rgba(45,106,79,.20);
  border-radius: var(--radius);
  margin-top: 20px;
}
.form__success.show { display: flex; }
.form__success i    { font-size: 2.2rem; color: var(--green); }
.form__success strong { font-size: 1rem; color: var(--green-dark); }
.form__success span   { font-size: .88rem; color: var(--text-mid); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer__brand .logo--light .logo__name { color: var(--white); }
.footer__brand .logo--light .logo__sub  { color: var(--gold-light); }
.footer__brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.58);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__links h4,
.footer__contato h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.60);
  transition: color var(--transition);
}
.footer__links ul a:hover { color: var(--white); }

.footer__contato p {
  font-size: .85rem;
  color: rgba(255,255,255,.58);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__contato p i { color: var(--gold-light); }

.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom span {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   ANIMATIONS / SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  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; }

/* ============================================================
   DESKTOP — hero e logo (ajustes visuais apenas acima de 1024px)
   ============================================================ */
@media (min-width: 1025px) {
  /* Logo: tamanho equilibrado no header */
  .logo__img { height: 46px; }

  /* Overlay direcional: escuro à esquerda → transparente à direita */
  .hero__overlay {
    background: linear-gradient(
      to right,
      rgba(8,22,14,.82) 0%,
      rgba(8,22,14,.70) 30%,
      rgba(8,22,14,.22) 60%,
      rgba(8,22,14,.04) 100%
    );
  }

  /* Decorações desabilitadas no desktop para evitar artefatos visuais */
  .hero__bg::before,
  .hero__bg::after { display: none; }

  /* Hero: texto ancorado à esquerda, imagem ocupa o fundo inteiro */
  .hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 90vh;
  }

  /* Conteúdo: coluna fixa à esquerda — sobrescreve margin: 0 auto do .container */
  .hero__content {
    max-width: 600px;
    margin-left: 100px;
    margin-right: 0;
    padding-top: 100px;
    padding-bottom: 72px;
    text-align: left;
  }

  /* Garante que não haja fundo indesejado nos textos */
  .hero__title,
  .hero__desc,
  .hero__badge { background: transparent; }

  /* Título: proporcional, sem excesso de peso */
  .hero__title {
    font-size: 2.6rem;
    line-height: 1.18;
    margin-bottom: 18px;
  }

  /* Subtítulo: compacto e objetivo */
  .hero__desc {
    font-size: .97rem;
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.65;
  }

  /* Botões: espaçamento contido */
  .hero__actions {
    gap: 12px;
    margin-bottom: 44px;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .produtos__grid      { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__grid  { grid-template-columns: repeat(2, 1fr); }
  .footer__inner       { grid-template-columns: 1fr 1fr; }
  .sobre__inner        { grid-template-columns: 1fr; gap: 48px; }
  .sobre__visual       { max-width: 480px; margin: 0 auto; }
  .contato__inner      { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .header__cta { display: none; }

  .nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    transform: translateY(-110%);
    opacity: 0;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { color: var(--text); padding: 12px 16px; display: block; border-radius: 10px; }
  .nav__link:hover { background: var(--cream); color: var(--green); }

  .hamburger { display: flex; }

  .hero__title  { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; }
  .hero__stats   { gap: 4px; }
  .stat          { padding: 0 16px; }
  .stat__num     { font-size: 1.5rem; }

  .produtos__grid     { grid-template-columns: 1fr; justify-items: center; }

  /* Cards: 92% largura + centralizado em mobile */
  .produto-card {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 20px;
    text-align: center;
    align-items: center;
  }
  /* Wrapper flush em tablet */
  .produto-card__img-wrap {
    width: calc(100% + 40px);
    margin-top: -24px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .produto-card ul {
    text-align: left;
    width: 100%;
  }
  .produto-card ul li {
    justify-content: flex-start;
  }
  .produto-card__icon {
    margin: 8px auto 10px;
  }
  /* Badge: mover de top-right para centro-topo (sobre a imagem) */
  .produto-card__badge {
    top: 14px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .diferenciais__grid { grid-template-columns: 1fr; }

  .steps { flex-direction: column; align-items: center; gap: 0; }
  .step__arrow { transform: rotate(90deg); margin: 4px 0; }

  .form__row { grid-template-columns: 1fr; }
  .contato__form-wrap { padding: 28px 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__badge { font-size: .7rem; }
  .hero__title { font-size: 1.9rem; }

  /* Cards mais largos: reduzir padding do container só na seção produtos */
  .produtos .container { padding: 0 12px; }
  .produto-card        { padding: 20px 14px; }
  /* Wrapper flush em smartphone */
  .produto-card__img-wrap {
    width: calc(100% + 28px);
    margin-top: -20px;
    margin-left: -14px;
    margin-right: -14px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .produtos            { padding: 60px 0; }
  .stat__divider { display: none; }
  .stat { text-align: center; flex-basis: 100%; padding: 8px 0; }
  .hero__stats { flex-direction: column; gap: 4px; }
}

/* ============================================================
   CATEGORIAS
   ============================================================ */
.categories {
  padding: 100px 0;
  background: var(--cream);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.cat-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.cat-card:hover::before { transform: scaleX(1); }

.cat-card--destaque {
  border-color: var(--green-mid);
  background: linear-gradient(160deg, #fff 0%, rgba(116,198,157,.06) 100%);
}
.cat-card--destaque::before { transform: scaleX(1); }

.cat-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 99px;
}

.cat-card__icon { font-size: 2.2rem; }

.cat-card__name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.3;
}

.cat-card__desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.55;
  flex: 1;
}

.cat-card__link {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap var(--transition);
}
.cat-card:hover .cat-card__link { gap: 10px; }

.categories__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--outline-dark {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-mid);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn--outline-dark:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   QUEM ATENDEMOS
   ============================================================ */
.audience {
  padding: 100px 0;
  background: var(--white);
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.audience-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 32px;
  text-align: center;
  transition: all var(--transition);
}

.audience-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  background: var(--white);
}

.audience-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 6px 18px rgba(45,106,79,.25);
}

.audience-card h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.audience-card p {
  font-size: .83rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2318 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,78,.10) 0%, transparent 70%);
  pointer-events: none;
}

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

.final-cta__text .section-tag { margin-bottom: 20px; }

.final-cta__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.final-cta__text p {
  color: rgba(255,255,255,.68);
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.final-cta__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.final-cta__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.80);
  font-family: var(--font-head);
  font-weight: 600;
}
.final-cta__checks li i {
  color: var(--green-light);
  font-size: .85rem;
  flex-shrink: 0;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.final-cta__main-btn {
  font-size: 1.05rem;
  padding: 18px 36px;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
}
.final-cta__main-btn:hover {
  box-shadow: 0 12px 36px rgba(37,211,102,.50);
}

.final-cta__secondary-btn {
  font-size: .9rem;
}

.final-cta__contact {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.final-cta__contact a {
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.final-cta__contact a:hover { color: var(--white); }
.final-cta__contact i { color: var(--green-light); }

/* ============================================================
   RESPONSIVE — novas seções
   ============================================================ */
@media (max-width: 1024px) {
  .categories__grid { grid-template-columns: repeat(3, 1fr); }
  .audience__grid   { grid-template-columns: repeat(3, 1fr); }
  .final-cta__inner { grid-template-columns: 1fr; gap: 52px; }
  .final-cta__actions { align-items: stretch; }
  .final-cta__main-btn { justify-content: center; }
  .final-cta__secondary-btn { text-align: center; justify-content: center; }
}

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

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

/* ============================================================
   URGENCY STRIP
   ============================================================ */
.urgency-strip {
  background: var(--green-dark);
  border-bottom: 2px solid var(--gold);
  padding: 13px 0;
  overflow: hidden;
}
.urgency-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
}
.urgency-strip__inner i {
  margin-right: 6px;
  font-size: .95rem;
}
.urgency-strip__sep {
  color: rgba(197,160,89,.4);
  font-weight: 400;
}
@media (max-width: 600px) {
  .urgency-strip__sep { display: none; }
  .urgency-strip__inner { gap: 8px; }
  .urgency-strip__inner span { width: 100%; text-align: center; }
}

/* WhatsApp pulse — upgrade: two rings */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.25);
  animation: pulse-ring 2.4s ease-out infinite .6s;
}

/* ============================================================
   LOGO WATERMARK — Elite Brand Stamp (v=premium)
   ============================================================ */
/* Logo oficial no canto inferior das imagens dos cartões */
.produto-card__img-wrap::before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 12px;
  width: 88px;
  height: 36px;
  background: url('../assets/img/logo-rocha-brasil-oficial.png') no-repeat center / contain;
  opacity: 0.65;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.35));
}

/* ============================================================
   HARMONIA TOTAL — overflow + border-radius sem pontas quadradas
   ============================================================ */
.produto-card {
  overflow: hidden !important;
}
.produto-card__img-wrap .produto-card__img {
  border-radius: inherit;
}
