/* =========================================================
   Cumbre Café - Landing B2B
   Tema editable en :root (colores, fuentes, espaciados)
   ========================================================= */

:root {
  --crema:        #faf6f0;
  --crema-2:      #f3e9dc;
  --cafe-900:     #2b1d14;
  --cafe-700:     #4a3526;
  --cafe-500:     #6f4e37;
  --cafe-300:     #b08d6f;
  --verde:        #5b6b4f;
  --verde-claro:  #7c8a5e;
  --texto:        #33271e;
  --texto-suave:  #6b5d51;
  --blanco:       #ffffff;
  --wa:           #25d366;
  --wa-oscuro:    #1ebe5a;
  --f-titulo: "Fraunces", Georgia, "Times New Roman", serif;
  --f-cuerpo: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --radio:    16px;
  --radio-sm: 10px;
  --sombra:   0 14px 40px -18px rgba(43, 29, 20, .35);
  --sombra-sm:0 6px 18px -10px rgba(43, 29, 20, .3);
  --maxw:     1140px;
  --gap:      clamp(1rem, 3vw, 2rem);
  --sec-y:    clamp(3.5rem, 8vw, 6rem);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--f-cuerpo);
  color: var(--texto);
  background: var(--crema);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--f-titulo); line-height: 1.12; color: var(--cafe-900); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h3 { font-size: 1.2rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.container--narrow { max-width: 760px; }

.section { padding-block: var(--sec-y); }
.section--alt { background: var(--crema-2); }
.section__head { max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; }
.section__lead { color: var(--texto-suave); margin-top: .75rem; font-size: 1.05rem; }
.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--verde); margin-bottom: .6rem;
}

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

.btn {
  --bg: var(--cafe-900); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--f-cuerpo); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border: 0; border-radius: 999px; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--sombra-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sombra); }
.btn:focus-visible { outline: 3px solid var(--verde-claro); outline-offset: 3px; }
.btn--whatsapp { --bg: var(--wa); --fg: #08361b; }
.btn--whatsapp:hover { background: var(--wa-oscuro); }
.btn--ghost {
  --bg: transparent; --fg: var(--cafe-900);
  border: 1.5px solid var(--cafe-300); box-shadow: none;
}
.btn--ghost:hover { background: var(--blanco); }
.btn--sm { padding: .6rem 1.1rem; font-size: .92rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.1rem; }
.btn--block { width: 100%; }
.ico-wa { flex: none; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--crema) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--cafe-300) 30%, transparent);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--cafe-900); }
.brand__mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  background: var(--cafe-900); color: var(--crema); border-radius: 12px;
}
.brand__name { font-family: var(--f-titulo); font-weight: 700; font-size: 1.3rem; letter-spacing: -.01em; }
.brand__name span { color: var(--cafe-500); }
.brand__name--light { color: var(--crema); }
.brand__name--light span { color: var(--cafe-300); }
.nav { display: flex; align-items: center; }
.nav__menu { display: flex; align-items: center; gap: 1.6rem; }
.nav__menu a { font-weight: 500; color: var(--texto); transition: color .15s; }
.nav__menu a:hover { color: var(--cafe-500); }
.nav__cta a { color: #08361b; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--cafe-900); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--cafe-900); /* fallback si las imagenes no cargan */
  padding-block: clamp(4rem, 10vw, 7rem);
  min-height: clamp(540px, 78vh, 760px);
  display: flex; align-items: center;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  transition: opacity 1.4s ease;
}
.hero__slide.is-active { opacity: 1; }
/* PLACEHOLDER: degradados de muestra. Reemplazar por una foto:
   background-image: url(../assets/img/hero-1.webp); */
.hero__slide--1 { background-image: radial-gradient(120% 100% at 70% 20%, #6f4e37, #2b1d14 70%); }
.hero__slide--2 { background-image: radial-gradient(120% 100% at 30% 30%, #8a6b46, #3a2417 72%); }
.hero__slide--3 { background-image: radial-gradient(120% 120% at 60% 70%, #5b6b4f, #241a10 70%); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(26,17,11,.85), rgba(26,17,11,.55) 50%, rgba(26,17,11,.25));
}
.hero__inner { width: 100%; }
.hero__content { max-width: 620px; }
.hero .eyebrow { color: #e7c9a3; }
.hero__title {
  font-size: clamp(2.3rem, 6vw, 4rem); letter-spacing: -.02em; margin-bottom: 1.1rem;
  color: var(--crema);
}
.hero__title span { color: #e7c9a3; font-style: italic; }
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: color-mix(in srgb, var(--crema) 86%, transparent); max-width: 46ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-block: 1.8rem 1.4rem; }
.hero .btn--ghost { color: var(--crema); border-color: rgba(255,255,255,.45); }
.hero .btn--ghost:hover { background: rgba(255,255,255,.12); }
.hero__bullets {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  color: color-mix(in srgb, var(--crema) 80%, transparent); font-size: .95rem;
}
.hero__bullets li { position: relative; padding-left: 1.4rem; }
.hero__bullets li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: .85rem; height: .5rem;
  border-left: 2px solid var(--verde-claro); border-bottom: 2px solid var(--verde-claro);
  transform: rotate(-45deg);
}
.hero__dots {
  position: absolute; left: 0; right: 0; bottom: 1.4rem; z-index: 2;
  display: flex; justify-content: center; gap: .6rem;
}
.hero__dot {
  width: 11px; height: 11px; border-radius: 50%; cursor: pointer; padding: 0;
  border: 1.5px solid rgba(255, 255, 255, .7); background: transparent;
  transition: background .2s ease, transform .2s ease;
}
.hero__dot.is-active { background: var(--crema); transform: scale(1.15); }

/* -------------------------- Confianza -------------------------- */
.trust { padding-block: 2.2rem; border-bottom: 1px solid color-mix(in srgb, var(--cafe-300) 25%, transparent); }
.trust__label { text-align: center; color: var(--texto-suave); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.2rem; }
.trust__logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(1.2rem, 5vw, 3rem);
}
.trust__logos li {
  font-family: var(--f-titulo); font-weight: 600; font-size: 1.15rem;
  color: var(--cafe-300); opacity: .9; filter: grayscale(1);
}

/* --------------------------- Cards ---------------------------- */
.card {
  background: var(--blanco); border-radius: var(--radio); padding: 1.6rem;
  box-shadow: var(--sombra-sm); border: 1px solid color-mix(in srgb, var(--cafe-300) 18%, transparent);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.card__icon {
  display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 1rem;
  border-radius: 14px; background: color-mix(in srgb, var(--verde) 16%, var(--crema)); color: var(--verde);
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--texto-suave); font-size: .98rem; }

/* ------------------------ Planes / Productos ------------------------ */
.plan {
  display: flex; flex-direction: column; background: var(--blanco);
  border-radius: var(--radio); overflow: hidden; box-shadow: var(--sombra-sm);
  border: 1px solid color-mix(in srgb, var(--cafe-300) 18%, transparent);
  position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.plan--featured { border-color: var(--cafe-500); box-shadow: var(--sombra); }
.plan__badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: var(--cafe-900); color: var(--crema); font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px;
}
.plan__photo {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 70% 25%, color-mix(in srgb, var(--cafe-300) 55%, var(--crema)), var(--cafe-700));
}
.plan__body { display: flex; flex-direction: column; gap: .55rem; padding: 1.5rem; flex: 1; }
.plan__meta { color: var(--verde); font-weight: 600; font-size: .9rem; }
.plan__body > p { color: var(--texto-suave); font-size: .96rem; }
.plan__list { display: grid; gap: .4rem; margin: .4rem 0 1rem; }
.plan__list li { position: relative; padding-left: 1.5rem; font-size: .94rem; }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: .8rem; height: .45rem;
  border-left: 2px solid var(--verde); border-bottom: 2px solid var(--verde); transform: rotate(-45deg);
}
.plan__body .btn { margin-top: auto; }

/* --------------------------- Proceso --------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); counter-reset: step; }
.step {
  background: var(--blanco); border-radius: var(--radio); padding: 1.8rem 1.5rem;
  box-shadow: var(--sombra-sm); text-align: center;
}
.step__num {
  display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 1rem;
  font-family: var(--f-titulo); font-weight: 700; font-size: 1.3rem;
  color: var(--crema); background: var(--verde); border-radius: 50%;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--texto-suave); font-size: .96rem; }
.proceso__cta { text-align: center; margin-top: 2.5rem; }

/* --------------------------- Nosotros --------------------------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__photo {
  display: grid; place-content: center; aspect-ratio: 4 / 3; border-radius: var(--radio);
  color: color-mix(in srgb, #fff 75%, transparent); font-weight: 600;
  background: linear-gradient(135deg, var(--cafe-700), var(--cafe-500));
  box-shadow: var(--sombra);
}
.about__content h2 { margin-bottom: 1rem; }
.about__content p { color: var(--texto-suave); margin-bottom: 1rem; }
.about__stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1.5rem; }
.about__stats strong { display: block; font-family: var(--f-titulo); font-size: 1.9rem; color: var(--cafe-900); }
.about__stats span { font-size: .9rem; color: var(--texto-suave); }

/* -------------------------- Testimonios -------------------------- */
.quote {
  background: var(--blanco); border-radius: var(--radio); padding: 1.7rem;
  box-shadow: var(--sombra-sm); display: flex; flex-direction: column; gap: .9rem;
}
.quote__stars { color: #e0a325; letter-spacing: .1em; }
.quote blockquote { font-size: 1.05rem; color: var(--texto); }
.quote figcaption strong { display: block; color: var(--cafe-900); }
.quote figcaption span { font-size: .88rem; color: var(--texto-suave); }

/* ----------------------------- FAQ ----------------------------- */
.faq { display: grid; gap: .8rem; }
.faq__item {
  background: var(--blanco); border-radius: var(--radio-sm);
  border: 1px solid color-mix(in srgb, var(--cafe-300) 22%, transparent);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 1.3rem;
  font-weight: 600; color: var(--cafe-900); display: flex; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--f-titulo); font-size: 1.4rem; line-height: 1;
  color: var(--verde); transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 1.3rem 1.2rem; color: var(--texto-suave); }

/* --------------------------- CTA final --------------------------- */
.cta-final {
  background:
    radial-gradient(70% 120% at 50% 0%, color-mix(in srgb, var(--cafe-500) 55%, transparent), transparent 60%),
    var(--cafe-900);
  color: var(--crema); text-align: center; padding-block: clamp(3.5rem, 8vw, 6rem);
}
.cta-final h2 { color: var(--crema); }
.cta-final p { color: color-mix(in srgb, var(--crema) 80%, transparent); margin-top: .7rem; max-width: 46ch; margin-inline: auto; }
.cta-final .btn { margin-top: 2rem; }
.cta-final__alt { font-size: .92rem; margin-top: 1.4rem; }
.cta-final__alt a { color: var(--cafe-300); text-decoration: underline; }

/* ----------------------------- Footer ----------------------------- */
.footer { background: #20140d; color: color-mix(in srgb, var(--crema) 78%, transparent); }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.footer__brand p { margin-top: .6rem; max-width: 32ch; font-size: .95rem; }
.footer__nav { display: grid; gap: .5rem; align-content: start; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--crema); }
.footer__contact { display: grid; gap: .8rem; align-content: start; }
.footer__social { display: flex; gap: 1rem; font-size: .9rem; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08); padding-block: 1.3rem;
  font-size: .85rem; color: color-mix(in srgb, var(--crema) 55%, transparent);
}

/* ----------------------- Boton flotante WA ----------------------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 60; width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; background: var(--wa); color: #08361b;
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, .45);
  animation: wa-pulse 2.4s ease-out 6; transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 10px 28px -8px rgba(0,0,0,.45), 0 0 0 0 rgba(37, 211, 102, .5); }
  70%  { box-shadow: 0 10px 28px -8px rgba(0,0,0,.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 28px -8px rgba(0,0,0,.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --------------------- Animaciones de scroll --------------------- */
.reveal { transition: opacity .6s ease, transform .6s ease; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-visible { opacity: 1; transform: none; }
.grid .reveal { transition-delay: calc(var(--i, 0) * 80ms); }

/* ========================= Responsive ========================= */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--crema); border-bottom: 1px solid color-mix(in srgb, var(--cafe-300) 30%, transparent);
    box-shadow: var(--sombra); padding: .5rem 1.1rem 1.1rem;
    clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
    transition: clip-path .3s ease, opacity .25s ease;
  }
  .nav__menu.is-open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .nav__menu li { border-bottom: 1px solid color-mix(in srgb, var(--cafe-300) 18%, transparent); }
  .nav__menu li:last-child { border-bottom: 0; }
  .nav__menu a { display: block; padding: .9rem .2rem; }
  .nav__cta { margin-top: .7rem; }
  .nav__cta a { display: inline-flex; }
  .grid--3, .grid--4, .steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float { animation: none; }
  .hero__slide { transition: none; }
  .btn:hover, .card:hover, .plan:hover { transform: none; }
}

/* =================== El Cafetito: modos y extras =================== */

/* Selector Empresas / Personal */
.modo-switch {
  display: inline-flex; gap: 2px; padding: 4px;
  background: color-mix(in srgb, var(--cafe-300) 22%, var(--crema));
  border-radius: 999px;
}
.modo-switch__btn {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--f-cuerpo); font-weight: 600; font-size: .9rem;
  color: var(--cafe-700); padding: .45rem 1rem; border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.modo-switch__btn.is-active { background: var(--cafe-900); color: var(--crema); }
.modo-switch__btn:focus-visible { outline: 3px solid var(--verde-claro); outline-offset: 2px; }

/* Mostrar / ocultar segun el modo activo */
[data-modo="empresas"] .solo-personal { display: none; }
[data-modo="personal"] .solo-empresas { display: none; }

/* Logo en el header */
.brand__logo { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }

/* Chips de datos en la barra de confianza */
.trust__logos li {
  font-family: var(--f-cuerpo); font-weight: 600; font-size: .9rem;
  color: var(--cafe-700); filter: none; opacity: 1;
  background: color-mix(in srgb, var(--cafe-300) 20%, var(--crema));
  padding: .4rem .95rem; border-radius: 999px;
}

/* Etiqueta de cata en tarjetas de producto */
.plan__tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; color: var(--verde);
}
.productos__nota { text-align: center; color: var(--texto-suave); font-size: .92rem; margin-top: 1.5rem; }

/* Fotos de producto: imagen real con color de respaldo si falta el archivo.
   PLACEHOLDER de imagenes: assets/img/producto-roja.jpg, producto-kraft.jpg, producto-verde.jpg */
.plan__photo { background-size: cover; background-position: center; }
.plan__photo--cafe {
  background-image: radial-gradient(circle at 70% 25%, color-mix(in srgb, var(--cafe-300) 55%, var(--crema)), var(--cafe-700));
}
.plan__photo--roja  { background-image: url(../assets/img/producto-roja.jpg),  linear-gradient(135deg, #8c2420, #b5302a); }
.plan__photo--kraft { background-image: url(../assets/img/producto-kraft.jpg), linear-gradient(135deg, #b9966a, #7d5c3a); }
.plan__photo--verde { background-image: url(../assets/img/producto-verde.jpg), linear-gradient(135deg, #1f5132, #2e7d4f); }

/* Hero: fotos reales con degradado de respaldo.
   PLACEHOLDER de imagenes: assets/img/hero-1.jpg, hero-2.jpg, hero-3.jpg */
.hero__slide--1 { background-image: url(../assets/img/hero-1.jpg), radial-gradient(120% 100% at 70% 20%, #6f4e37, #2b1d14 70%); }
.hero__slide--2 { background-image: url(../assets/img/hero-2.jpg), radial-gradient(120% 100% at 30% 30%, #8a6b46, #3a2417 72%); }
.hero__slide--3 { background-image: url(../assets/img/hero-3.jpg), radial-gradient(120% 120% at 60% 70%, #5b6b4f, #241a10 70%); }

/* Foto de finca en Nosotros.
   PLACEHOLDER de imagen: assets/img/finca-villa-rica.jpg */
.about__photo--finca {
  background-image: url(../assets/img/finca-villa-rica.jpg), linear-gradient(135deg, var(--cafe-700), var(--cafe-500));
  background-size: cover; background-position: center;
}

/* Header responsive con el selector */
@media (max-width: 760px) {
  .modo-switch__btn { font-size: .82rem; padding: .4rem .8rem; }
  .header__inner { gap: .5rem; }
}
@media (max-width: 480px) {
  .brand__name { font-size: 1.05rem; }
  .modo-switch { order: 3; }
}

/* Fotos reales de producto en formato vertical (la bolsa entra completa) */
.plan__photo--roja, .plan__photo--kraft, .plan__photo--verde { aspect-ratio: 3 / 4; }
/* Foto de Nosotros (polaroid) en formato vertical */
.about__photo--finca { aspect-ratio: 4 / 5; }

/* Logo del header: recorte circular (quita las esquinas oscuras del badge) */
.brand__logo {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px -3px rgba(0, 0, 0, .4);
}

/* Logo del header un poco mas grande */
.brand__logo { width: 54px; height: 54px; }

/* Logo grande en el footer (se ve bien sobre el fondo oscuro) */
.footer__logo {
  width: 88px; height: 88px; border-radius: 50%; object-fit: cover;
  margin-bottom: 1rem; box-shadow: 0 6px 20px -6px rgba(0, 0, 0, .55);
}

/* Logo grande dentro del hero (aro claro para resaltar sobre el fondo oscuro) */
.hero__logo {
  width: clamp(88px, 12vw, 120px); height: auto; aspect-ratio: 1 / 1;
  border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(250, 246, 240, .92);
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, .55);
  margin-bottom: 1.4rem;
}

/* Doble CTA (WhatsApp + correo) en el bloque final */
.cta-final__btns { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }
.cta-final__btns .btn { margin-top: 0; }
.btn--correo {
  background: transparent; color: var(--crema);
  border: 1.5px solid rgba(250, 246, 240, .6); box-shadow: none;
}
.btn--correo:hover { background: rgba(250, 246, 240, .12); }
