/* ════════════════════════════════════════════
   EMUNÁ SWEET – Stylesheet principal
   Paleta Pantone:
     --pink-soft     : #F2D7E0  (Pink Marshmallow 12-2907)
     --pink-medium   : #D4758A  (Chateau Rose 17-2120)
     --nude          : #D4A896  (Spanish Villa 14-1314)
     --sand          : #BD8B69  (Sandstorm 16-1235)
     --sage          : #C5CB9E  (Aloe Wash 13-0608)
     --cream         : #EDE8DE  (Silence 11-0610)
   ════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────── */
:root {
  --pink-soft:    #F2D7E0;
  --pink-medium:  #D4758A;
  --nude:         #D4A896;
  --sand:         #BD8B69;
  --sage:         #C5CB9E;
  --cream:        #EDE8DE;
  --white:        #FFFCF8;
  --dark:         #3B2A27;
  --dark-light:   #6B4F47;
  --text:         #4A3530;
  --text-light:   #8C6E65;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;
  --radius-xl:  48px;

  --shadow-sm:  0 2px 12px rgba(59,42,39,.08);
  --shadow-md:  0 8px 32px rgba(59,42,39,.14);
  --shadow-lg:  0 20px 60px rgba(59,42,39,.20);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

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

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

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

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

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

ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ─── Typography helpers ─────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pink-medium);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--sand);
}

.section-subtitle {
  font-size: 1.12rem;
  color: var(--text-light);
  max-width: 540px;
  margin-inline: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ─── Reveal animations ─────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink-medium);
  color: var(--white);
  border-color: var(--pink-medium);
  box-shadow: 0 4px 20px rgba(212,117,138,.35);
}

.btn-primary:hover {
  background: var(--sand);
  border-color: var(--sand);
  box-shadow: 0 6px 28px rgba(189,139,105,.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-large { padding: 1.1rem 2.6rem; font-size: 1.08rem; }

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid var(--pink-medium);
  color: var(--pink-medium);
  transition: var(--transition);
}

.btn-outline-sm:hover {
  background: var(--pink-medium);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}

.navbar.scrolled {
  background: rgba(255, 252, 248, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: .7rem 0;
}

.navbar.menu-open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nav-container {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  text-decoration: none;
  position: relative;
  z-index: 105;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
  transition: color var(--transition-fast);
}

.navbar:not(.scrolled):not(.menu-open) .logo-text { color: var(--white); }

.logo-sub {
  font-size: .9rem;
  color: var(--pink-medium);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  transition: color var(--transition-fast);
}

.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,.9); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -.2rem;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--pink-medium);
  transition: width var(--transition);
}

.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  background: var(--pink-medium);
  color: var(--white) !important;
  transition: var(--transition);
  box-shadow: 0 3px 14px rgba(212,117,138,.3);
}

.nav-cta:hover {
  background: var(--sand);
  box-shadow: 0 5px 20px rgba(189,139,105,.4);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 105;
}

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

.navbar.scrolled .hamburger span { background: var(--dark); }
.navbar.menu-open .hamburger span { background: var(--dark); }

.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;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center;
  animation: slowZoom 14s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(59,42,39,.72) 0%,
    rgba(59,42,39,.55) 50%,
    rgba(189,139,105,.40) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 3rem 2.5rem;
  max-width: 740px;
  background: rgba(59,42,39,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
}

.hero-eyebrow {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 1.2rem;
  transition-delay: .1s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.2rem;
  transition-delay: .2s;
  text-shadow: 0 2px 16px rgba(59,42,39,.45), 0 1px 3px rgba(0,0,0,.25);
}

.hero-title em {
  font-style: italic;
  color: var(--nude);
  display: block;
}

.hero-slogan {
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,.92);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  transition-delay: .3s;
  text-shadow: 0 1px 8px rgba(59,42,39,.4), 0 1px 2px rgba(0,0,0,.2);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  transition-delay: .4s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: fadeInUp 1.5s ease 1.5s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0);    }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ═══════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════ */
.about {
  position: relative;
  padding: 7rem 0 6rem;
  background: var(--white);
  overflow: hidden;
}

.about-deco-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-soft), var(--nude), var(--sand), var(--sage));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Image */
.about-img-wrap { position: relative; }

.about-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform .8s ease;
}

.about-img-card:hover .about-img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 1.8rem;
  right: 1.8rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sand);
  box-shadow: var(--shadow-md);
}

/* Text */
.about-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-desc strong { color: var(--dark); font-weight: 700; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.2rem;
  transition: var(--transition);
}

.value-card:hover {
  background: var(--pink-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.value-icon { font-size: 1.4rem; margin-bottom: .4rem; display: block; }

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .3rem;
}

.value-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════
   CATEGORIES
   ════════════════════════════════════════════ */
.categories {
  background: var(--cream);
  padding: 4rem 0;
  overflow: hidden;
}

.cats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
}

.cat-chip {
  padding: .75rem 1.7rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid rgba(189,139,105,.2);
  transition: var(--transition);
  cursor: default;
}

.cat-chip:hover {
  background: var(--pink-medium);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,117,138,.3);
}

/* ═══════════════════════════════════════════════
   PRODUCTS
   ════════════════════════════════════════════ */
.products {
  position: relative;
  padding: 7rem 0;
  background: var(--white);
  overflow: hidden;
}

.products-deco {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Product Card */
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(212,168,150,.15);
}

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

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}

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

.product-card:hover .product-img { transform: scale(1.08); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,42,39,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity .4s ease;
}

.product-card:hover .product-overlay { opacity: 1; }

.product-order-btn {
  background: var(--pink-medium);
  color: var(--white);
  padding: .65rem 1.8rem;
  border-radius: 50px;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .05em;
  transition: var(--transition);
  transform: translateY(10px);
  transition: transform .4s ease, background .3s ease;
}

.product-card:hover .product-order-btn { transform: translateY(0); }
.product-order-btn:hover { background: var(--sand); }

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--sand);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .3rem .9rem;
  border-radius: 50px;
}

.product-info { padding: 1.6rem 1.8rem 1.8rem; }

.product-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .6rem;
}

.product-desc {
  font-size: .97rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.product-tags { display: flex; flex-wrap: wrap; gap: .4rem; }

.tag {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .3rem .85rem;
  border-radius: 50px;
  background: var(--cream);
  color: var(--sand);
}

/* Coming soon */
.product-coming {
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  border: 2px dashed rgba(212,117,138,.3);
  box-shadow: none;
}

.product-coming:hover { transform: translateY(-4px); }

.coming-inner { padding: 2.5rem; }

.coming-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  color: var(--pink-medium);
  animation: spinGold 8s linear infinite;
}

@keyframes spinGold {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.coming-inner h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: .8rem;
  line-height: 1.3;
}

.coming-inner p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════ */
.process {
  background: var(--cream);
  padding: 7rem 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 1.5rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--nude);
  opacity: .5;
  line-height: 1;
  margin-bottom: .5rem;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink-medium);
  margin: .5rem auto 1rem;
  box-shadow: 0 0 0 4px rgba(212,117,138,.2);
}

.step h4 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
}

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

.step-line {
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nude), transparent);
  opacity: .5;
  margin-top: 3.5rem;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════ */
.contact {
  position: relative;
  padding: 7rem 0;
  background: var(--white);
  overflow: hidden;
}

.contact-bg-deco {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
  opacity: .4;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-text {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.contact-methods { display: flex; flex-direction: column; gap: 1rem; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid rgba(189,139,105,.15);
  transition: var(--transition);
}

.contact-method:hover {
  background: var(--pink-soft);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.whatsapp-icon  { background: #25D366; }
.instagram-icon { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.tiktok-icon    { background: #000; }

.method-text { flex: 1; }
.method-text strong { display: block; font-size: 1.02rem; color: var(--dark); }
.method-text span   { font-size: .92rem; color: var(--text-light); }

.method-arrow { color: var(--text-light); flex-shrink: 0; transition: transform var(--transition-fast); }
.contact-method:hover .method-arrow { transform: translateX(4px); color: var(--pink-medium); }

/* Contact Card */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(212,168,150,.2);
}

.contact-card-header {
  display: flex;
  gap: .5rem;
  padding: 1rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(212,168,150,.15);
}

.contact-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand);
  opacity: .5;
}

.contact-card-body { padding: 2rem 1.8rem; }

.card-quote-icon {
  font-size: 3rem;
  font-family: var(--font-display);
  color: var(--pink-soft);
  line-height: 1;
  display: block;
  margin-bottom: .8rem;
}

.card-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.card-response {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}

.response-avatar {
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.response-bubble {
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: .9rem 1.1rem;
  flex: 1;
}

.response-bubble p { font-size: .9rem; color: var(--dark); margin-bottom: .3rem; }

.response-time {
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .03em;
}

.contact-card-cta {
  display: block;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(90deg, var(--pink-medium), var(--sand));
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  transition: opacity var(--transition-fast);
}

.contact-card-cta:hover { opacity: .9; }

/* ═══════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: 9rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(59,42,39,.88) 0%,
    rgba(59,42,39,.75) 60%,
    rgba(189,139,105,.55) 100%
  );
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  background: rgba(59,42,39,.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.06);
  padding: 3.5rem 3rem;
}

.cta-eyebrow { color: var(--nude); }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 14px rgba(59,42,39,.5), 0 1px 3px rgba(0,0,0,.25);
}

.cta-title em { color: var(--nude); font-style: italic; }

.cta-text {
  color: rgba(255,255,255,.92);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 6px rgba(59,42,39,.35);
}

.cta-actions { justify-content: center; display: flex; }

/* ═══════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--nude);
  display: block;
  margin-bottom: .4rem;
}

.footer-tagline { font-size: .92rem; }

.footer-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--nude); }

.footer-social {
  display: flex;
  gap: .8rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--pink-medium);
  border-color: var(--pink-medium);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 1.2rem 0;
  text-align: center;
  font-size: .8rem;
  opacity: .5;
}

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0;  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .about-img     { height: 380px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    padding-top: 5rem;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .4s ease;
    z-index: 98;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link { color: var(--dark) !important; font-size: 1.1rem; }

  .hamburger { display: flex; }

  .hero-title { font-size: clamp(3rem, 13vw, 5rem); }

  .hero-actions { flex-direction: column; }

  .about-grid    { gap: 2.5rem; }
  .contact-grid  { gap: 2.5rem; }
  .products-grid { grid-template-columns: 1fr; }

  .process-steps { flex-direction: column; align-items: center; }
  .step-line { display: none; }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }

  .cats-row { gap: .6rem; }
}

@media (max-width: 480px) {
  .hero-content { padding: 2rem 1rem; }
  .product-img-wrap { height: 240px; }
  .about-img { height: 280px; }
}
