/* ================================================================
   ELEPHANTS COOKIES — styles.css
   ================================================================ */

/* 1 ─ Variables */
:root {
  --bg:          #FDF6EC;
  --bg-2:        #F5E9D4;
  --bg-dark:     #2C1503;
  --ink:         #1E0A00;
  --ink-soft:    #4A2800;
  --ink-mute:    #8B6040;
  --accent:      #C4620A;
  --accent-2:    #E8900A;
  --accent-dark: #8B3A00;
  --whatsapp:    #25D366;
  --line:        rgba(44, 21, 3, 0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', system-ui, -apple-system, sans-serif;

  --r-md: 24px;
  --r-lg: 40px;

  --shadow-warm:  rgba(196, 98, 10, 0.15) 0 8px 32px;
  --shadow-hover: rgba(196, 98, 10, 0.28) 0 20px 48px;
  --shadow-hero:  rgba(196, 98, 10, 0.32) 0 24px 64px;

  --max-w: 1280px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

/* 3 ─ Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("assets/img/grain.svg");
  background-repeat: repeat;
  opacity: 0.045;
  pointer-events: none;
  z-index: 9000;
}

/* 4 ─ Cookie cursor */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  font-size: 28px;
  line-height: 1;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  display: none;
  will-change: left, top;
}

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  #cursor { display: block; }
}

/* 5 ─ Layout helpers */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.section-kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 96px);
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-header h2 em {
  color: var(--accent-dark);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 6 ─ Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  padding: 16px 36px;
  border-radius: 60px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-warm);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: scale(1.04);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 24px;
  border-radius: 60px;
  border: 2px solid var(--line);
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.03);
}

/* 7 ─ NAV */
#nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

#nav.nav--solid {
  background: var(--bg);
  box-shadow: 0 2px 20px rgba(44, 21, 3, 0.10);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid rgba(196, 98, 10, 0.25);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-wa {
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  border-radius: 60px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
}

.nav-wa:hover {
  background: var(--accent-dark);
  transform: scale(1.03);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  margin-left: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--bg);
  padding: 28px clamp(20px, 5vw, 80px) 36px;
  border-top: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(44, 21, 3, 0.08);
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}

.mobile-link:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger    { display: flex; }

  .nav-inner {
    gap: 8px;                     /* menos espacio entre items */
  }

  .nav-brand {
    font-size: 0.85rem;
  }

  .nav-wa {
    font-size: 0.72rem;
    padding: 8px 12px;
    letter-spacing: 0.02em;
  }
}

/* 8 ─ HERO */
.hero {
  min-height: calc(100svh - var(--nav-h));
  background: var(--bg);
  position: relative;
  overflow-x: clip;  /* contiene solo la animación de entrada sin clip vertical */
  display: flex;
  align-items: center;
  padding: clamp(64px, 8vw, 120px) 0;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 55% 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  width: 100%;
  grid-template-columns: 48% 1fr;
}

.hero-kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.h1-line1 {
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
}

.h1-line2,
.h1-line3 {
  font-weight: 900;
  color: var(--accent-dark);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero image */
.hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* Slide in then float forever */
  animation: hero-entry-slide 0.8s ease-out both,
             hero-float 4.5s ease-in-out 1s infinite;
}

/* Dulce de leche glow sobre el wrapper */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 18%;
  width: 64%;
  height: 38%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(232, 144, 10, 0.55) 0%,
    rgba(196, 98,  10, 0.18) 50%,
    transparent 75%
  );
  border-radius: 50%;
  filter: blur(22px);
  animation: drip-glow 2.6s ease-in-out 1.2s infinite;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}

#hero-img {
  /* PNG con fondo transparente — proporciones naturales, sin recorte */
  width: clamp(260px, 32vw, 500px);
  height: auto;
  max-width: 100%;
  display: block;
  filter: saturate(1.15) contrast(1.06)
          drop-shadow(0 24px 56px rgba(196, 98, 10, 0.32));
  transform: rotate(-3deg) translateY(var(--parallax-y, 0px));
  transition: filter 0.4s ease, transform 0.4s ease;
  animation: hero-entry-fade 0.8s ease-out both;
  position: relative;
  z-index: 1;
}

#hero-img:hover {
  filter: saturate(1.25) contrast(1.10)
          drop-shadow(0 32px 72px rgba(196, 98, 10, 0.50));
  transform: rotate(-1deg) scale(1.04) translateY(var(--parallax-y, 0px));
}

@keyframes hero-entry-slide {
  from { transform: translateX(64px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@keyframes hero-entry-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes hero-float {
  0%,  100% { transform: translateY(0px); }
  50%        { transform: translateY(-16px); }
}

@keyframes drip-glow {
  0%, 100% {
    opacity: 0.20;
    transform: scale(0.88) translateY(-3px);
  }
  40% {
    opacity: 0.70;
    transform: scale(1.10) translateY(5px);
  }
  55% {
    opacity: 0.65;
    transform: scale(1.12) translateY(7px);
  }
}

/* Sprinkles */
.sprinkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sprinkle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: 0.20;
  animation: float-dot linear infinite;
}

.s1 { width:  8px; height:  8px; top: 14%; left:  7%; animation-duration: 6.2s; animation-delay: 0s; }
.s2 { width: 13px; height: 13px; top: 72%; left: 11%; animation-duration: 8.1s; animation-delay: 1.0s; }
.s3 { width:  6px; height:  6px; top: 38%; left:  4%; animation-duration: 7.0s; animation-delay: 2.2s; }
.s4 { width: 10px; height: 10px; top: 22%; right: 7%; animation-duration: 9.0s; animation-delay: 0.5s; }
.s5 { width: 15px; height: 15px; top: 82%; right: 14%; animation-duration: 7.5s; animation-delay: 1.6s; }

@keyframes float-dot {
  0%,  100% { transform: translateY(0)    rotate(0deg); }
  33%        { transform: translateY(-14px) rotate(120deg); }
  66%        { transform: translateY(7px)  rotate(240deg); }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img-wrap {
    order: -1;
  }

  #hero-img {
    width: auto;
    width: clamp(180px, 55vw, 260px);
    height: auto;
    height: auto;
    transform: rotate(0deg) translateY(0) !important;
  }

  .hero-img-wrap {
    animation: hero-entry-slide 0.8s ease-out both,
               hero-float 4.5s ease-in-out 1s infinite;
  }

  .hero-sub,
  .hero-kicker {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }
}

/* 9 ─ MARQUEE */
.marquee-band {
  background: var(--bg-dark);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-band:hover .marquee-inner {
  animation-play-state: paused;
}

.marquee-inner {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--bg);
  letter-spacing: 0.04em;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
}

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

/* 10 ─ COOKIES SECTION */
.cookies-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
}

.cookies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(40px, 6vw, 80px);
}

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

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

/* Cookie card */
.cookie-card {
  background: var(--bg-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  will-change: transform;
}

.cookie-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: rgba(196, 98, 10, 0.25) 0 20px 40px;
}

.card-img-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-dark);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.cookie-card:hover .card-img-wrap img {
  transform: scale(1.06);
  filter: saturate(1.15);
}

.card-body {
  padding: 20px 22px 26px;
}

.card-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}

.card-short {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.card-weight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--ink-mute);
}

.card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent-dark);
}

/* Minis card */
.minis-card {
  background: var(--bg-dark);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}

.minis-img-wrap {
  overflow: hidden;
  min-height: 340px;
}

.minis-img-wrap .img-minis {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.1);
  transition: transform 0.4s ease;
}

.minis-card:hover .img-minis {
  transform: scale(1.03);
}

.minis-body {
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.minis-kicker {
  color: var(--accent-2) !important;
}

.minis-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 12px;
  line-height: 1.2;
}

.minis-short {
  color: rgba(253, 246, 236, 0.72);
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.minis-varieties {
  list-style: disc;
  padding-left: 18px;
  color: rgba(253, 246, 236, 0.60);
  font-size: 0.85rem;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.minis-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  border-top: 1px solid rgba(253, 246, 236, 0.14);
  padding-top: 18px;
}

.minis-card .card-weight {
  color: rgba(253, 246, 236, 0.50);
}

.minis-price {
  color: var(--accent-2) !important;
}

.minis-cta {
  background: var(--whatsapp) !important;
  align-self: flex-start;
}

.minis-cta:hover {
  background: #1db954 !important;
}

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

  .minis-img-wrap {
    min-height: 240px;
  }
}

/* 11 ─ ABOUT */
.about-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.about-logo-wrap {
  display: flex;
  justify-content: center;
}

.about-logo {
  width: clamp(200px, 28vw, 340px);
  height: clamp(200px, 28vw, 340px);
  border-radius: 50%;
  /* background-blend-mode opera sobre los fondos del elemento:
     blanco × --bg-2 = --bg-2 → el fondo blanco del logo desaparece */
  background-image: url("assets/img/logo.png");
  background-color: var(--bg-2);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center 18%;
  box-shadow: rgba(44, 21, 3, 0.18) 0 16px 48px;
  transition: transform 0.6s ease;
}

.about-logo-wrap:hover .about-logo {
  transform: scale(1.03) rotate(2deg);
}

.about-text h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

.about-text h2 em {
  color: var(--accent-dark);
}

.about-para {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 36px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillar strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.pillar span {
  font-size: 0.875rem;
  color: var(--ink-mute);
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-logo {
    width: 200px;
    height: 200px;
  }

  .pillar {
    justify-content: center;
    text-align: left;
  }
}

/* 12 ─ CTA SECTION */
.cta-section {
  background: var(--bg-dark);
  padding: clamp(100px, 12vw, 160px) 0;
  text-align: center;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.cta-h2 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--bg);
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-h2 em {
  color: var(--accent-2);
}

.cta-sub {
  color: rgba(253, 246, 236, 0.68);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 48px;
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--whatsapp);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.07em;
  padding: 20px 52px;
  border-radius: 60px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.30);
  animation: pulse-green 3s ease-in-out infinite;
  margin-bottom: 24px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-wa-big:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 56px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes pulse-green {
  0%,  100% { box-shadow: 0 8px 36px rgba(37, 211, 102, 0.30); }
  50%        { box-shadow: 0 8px 60px rgba(37, 211, 102, 0.65); }
}

.cta-micro {
  color: rgba(253, 246, 236, 0.44);
  font-size: 0.875rem;
}

/* 13 ─ FOOTER */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(253, 246, 236, 0.07);
  padding: clamp(48px, 7vw, 88px) 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo-wrap { display: block; }

.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  mix-blend-mode: screen;     /* sobre fondo oscuro: aclara en vez de oscurecer */
  border: 3px solid rgba(253, 246, 236, 0.18);
  transition: transform 0.3s ease;
}

.footer-logo-wrap:hover .footer-logo {
  transform: scale(1.06);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(253, 246, 236, 0.68);
}

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

.footer-nav a,
.footer-nav span {
  color: rgba(253, 246, 236, 0.48);
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: var(--accent-2);
}

.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-wa-link,
.footer-ig-link {
  color: rgba(253, 246, 236, 0.60);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-wa-link:hover,
.footer-ig-link:hover {
  color: var(--accent-2);
}

.footer-copy {
  color: rgba(253, 246, 236, 0.28);
  font-size: 0.78rem;
  margin-top: 4px;
}

.footer-framelity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(253, 246, 236, 0.22);
  font-size: 0.72rem;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
  margin-top: -8px;
}

.footer-framelity:hover {
  color: rgba(253, 246, 236, 0.55);
}

.framelity-logo {
  height: 16px;
  width: auto;
  opacity: 0.35;
  filter: brightness(10);
  transition: opacity 0.2s;
  display: inline-block;
}

.footer-framelity:hover .framelity-logo {
  opacity: 0.65;
}

/* 14 ─ MOBILE STICKY BAR */
.sticky-wa-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 12px 20px;
  background: rgba(44, 21, 3, 0.97);
  border-top: 1px solid rgba(253, 246, 236, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-wa-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--whatsapp);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border-radius: 60px;
  transition: background 0.2s;
}

.btn-wa-sticky:hover {
  background: #1db954;
}

@media (max-width: 480px) {
  .sticky-wa-bar { display: block; }
  body { padding-bottom: 80px; }
}

/* 15 ─ REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Defensive: force-show if scripting disabled */
@media (scripting: none) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* 16 ─ HERO SOCIAL PROOF MICRO */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.84rem;
  color: var(--ink-mute);
  font-weight: 600;
}

.hero-sp-stars {
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
}

@media (max-width: 768px) {
  .hero-social-proof {
    justify-content: center;
  }
}

/* 17 ─ TRUST BAR */
.trust-bar {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #B85010 60%, var(--accent) 100%);
  padding: clamp(28px, 4vw, 48px) 0;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.025) 10px,
    rgba(255,255,255,0.025) 20px
  );
  pointer-events: none;
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(16px, 3vw, 40px);
  position: relative;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trust-num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
}

.trust-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.trust-sep {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 12px;
  }
  .trust-sep { display: none; }
  .trust-item { gap: 3px; }
}

/* 18 ─ COOKIE CARD CTA */
.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  background: var(--whatsapp);
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.03em;
  padding: 11px 16px;
  border-radius: 12px;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.card-cta:hover {
  background: #1aab54;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* 19 ─ TESTIMONIALS */
.testi-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
  position: relative;
}

.testi-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  opacity: 0.4;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

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

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

.testi-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--accent-2);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testi-card:hover {
  transform: translateY(-7px);
  box-shadow: rgba(196, 98, 10, 0.16) 0 20px 48px;
}

.testi-stars {
  color: var(--accent-2);
  font-size: 0.95rem;
  letter-spacing: 2px;
  padding-top: 8px;
}

.testi-text {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.74;
  font-style: italic;
  flex: 1;
}

.testi-footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.testi-loc {
  font-size: 0.76rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* 20 ─ CARD VISUAL POLISH */
.cookie-card {
  box-shadow: rgba(44, 21, 3, 0.06) 0 2px 12px;
}

.section-header h2 {
  letter-spacing: -0.02em;
}

.cta-h2 {
  letter-spacing: -0.02em;
}

/* address reset — no font-style for the footer address */
.footer-contact {
  font-style: normal;
}
