/* Full styles.css (mobile fixed) */
/* Basado en tu HTML y tu CSS adjuntos. :contentReference[oaicite:0]{index=0} :contentReference[oaicite:1]{index=1} */

:root{
  /* Palette: beauty premium (claro, elegante) */
  --bg: #fff7f8;
  --paper: #ffffff;
  --paper2: #fff2f2;
  --ink: #241b1f;
  --muted: rgba(36,27,31,.72);
  --muted2: rgba(36,27,31,.56);
  --stroke: rgba(36,27,31,.10);

  --accent: #d85d78;     /* coral/rose */
  --accent2: #b84a63;    /* deeper rose */
  --gold: #b08d57;       /* subtle premium */
  --shadow: 0 18px 55px rgba(36,27,31,.12);

  --radius: 18px;
  --radius2: 26px;

  --max: 1120px;

  /* mobile safety */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*{ box-sizing: border-box; }
*::before,*::after{ box-sizing: border-box; }

html,body{ height:100%; }
html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 18% 0%, rgba(216,93,120,.14), transparent 62%),
    radial-gradient(900px 420px at 85% 10%, rgba(176,141,87,.10), transparent 62%),
    radial-gradient(1000px 520px at 50% 115%, rgba(216,93,120,.08), transparent 62%),
    var(--bg);
  line-height: 1.55;
  overflow-x: hidden; /* evita corrimientos por overflow */
}

img{ max-width: 100%; display:block; height:auto; }
svg{ max-width:100%; height:auto; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-width: 0;
}

/* Evita overflow en layouts con grid/flex por textos largos */
.header, .header__inner, .brand, .brand__text, .nav, .header__actions,
.hero__grid, .hero__copy, .hero__media, .media, .media__stats, .stat,
.section, .section__head, .grid, .card, .panel, .trust, .trust__score, .trust__bullets,
.callout, .cta__card, .sticky__inner, .footer__grid{
  min-width: 0;
}

/* =========================
   Header
========================= */
.header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 247, 248, .78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}
.brand__mark{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background:
    radial-gradient(12px 12px at 30% 28%, rgba(255,255,255,.9), transparent 58%),
    linear-gradient(135deg, rgba(216,93,120,.95), rgba(176,141,87,.55));
  box-shadow: 0 12px 26px rgba(216,93,120,.20);
  flex: 0 0 auto;
}
.brand__text{
  display:flex;
  flex-direction:column;
  line-height: 1.1;
  min-width: 0;
}
.brand__name{
  font-weight: 750;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand__sub{
  font-size: 12px;
  color: var(--muted2);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav{
  display:none;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav a{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav a:hover{
  background: rgba(255,255,255,.65);
  border-color: rgba(36,27,31,.10);
}

.header__actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex: 0 0 auto;
}

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 700;
  border: 1px solid rgba(36,27,31,.12);
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 22px rgba(36,27,31,.06);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  user-select: none;
  min-height: 44px;      /* tap target */
  max-width: 100%;
  white-space: nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(36,27,31,.10);
}
.btn:active{ transform: translateY(0); }

.btn--primary{
  border-color: rgba(216,93,120,.30);
  background: linear-gradient(135deg, rgba(216,93,120,.95), rgba(184,74,99,.85));
  color: #fff;
}
.btn--soft{ background: rgba(255,255,255,.55); }
.btn--ghost{
  background: transparent;
  border-color: rgba(36,27,31,.14);
  box-shadow: none;
}
.btn--lg{ padding: 12px 16px; }
.btn--sm{ padding: 10px 12px; min-height: 40px; }
.btn--full{ width: 100%; }

.btn__icon{
  width: 18px;
  height: 18px;
  opacity: .95;
  flex: 0 0 auto;
}

/* =========================
   Hero
========================= */
.hero{ padding: 22px 0 16px; }
.hero__grid{
  display:grid;
  gap: 16px;
}

.hero__copy{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(36,27,31,.10);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden; /* evita que chips/botones “se salgan” */
}

.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(36,27,31,.10);
  background: rgba(255,255,255,.80);
  font-weight: 650;
  font-size: 12px;
  color: rgba(36,27,31,.78);
  max-width: 100%;
  min-width: 0;
}
.chip img{ width: 16px; height: 16px; opacity: .85; flex: 0 0 auto; }
.chip--rating{
  border-color: rgba(216,93,120,.18);
  background: rgba(216,93,120,.10);
  color: rgba(36,27,31,.80);
}

.hero h1{
  margin: 8px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.03em;
  font-size: 34px;
  line-height: 1.08;
}
.hero__accent{
  display:block;
  margin-top: 4px;
  color: rgba(216,93,120,.95);
}

.hero__lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
}

.hero__buttons{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.hero__buttons .btn{
  flex: 1 1 auto;
}
.hero__buttons .btn--ghost{
  flex: 1 1 auto;
}

.hero__proof{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
.proofCard{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(36,27,31,.10);
  background: rgba(255,255,255,.82);
  min-width: 0;
}
.proofCard__icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(216,93,120,.10);
  border: 1px solid rgba(216,93,120,.18);
  flex: 0 0 auto;
}
.proofCard__icon img{ width: 18px; height:18px; opacity: .9; }
.proofCard strong{ display:block; font-size: 13px; }
.proofCard span{ display:block; font-size: 12px; color: var(--muted2); }

.disclosure{
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted2);
}
.disclosure strong{ color: rgba(36,27,31,.86); }

/* =========================
   Hero Media
========================= */
.media{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(36,27,31,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow);
}
.media__imageWrap{ position: relative; }
.media__img{
  width: 100%;
  height: 330px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}
.media__badge{
  position:absolute;
  left: 14px;
  top: 14px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(36,27,31,.12);
  font-weight: 750;
  font-size: 12px;
  color: rgba(36,27,31,.80);
  max-width: calc(100% - 28px);
}
.media__badge img{ width: 16px; height:16px; opacity: .85; flex: 0 0 auto; }

.media__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(36,27,31,.08);
}
.stat{
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(36,27,31,.08);
  background: rgba(255,255,255,.90);
  min-width: 0;
}
.stat__label{
  display:block;
  font-size: 11px;
  color: var(--muted2);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stat__value{
  display:block;
  font-weight: 850;
  letter-spacing: -0.02em;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media__note{
  padding: 12px;
  font-size: 12px;
  color: var(--muted2);
  background: rgba(255,255,255,.86);
  border-top: 1px solid rgba(36,27,31,.08);
}

/* =========================
   Sections
========================= */
.section{ padding: 26px 0; }
.section--alt{
  background: rgba(255,255,255,.40);
  border-top: 1px solid rgba(36,27,31,.06);
  border-bottom: 1px solid rgba(36,27,31,.06);
}
.section__head{
  margin-bottom: 14px;
}
.section__head h2{
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.section__head p{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

/* Layout grids */
.grid{
  display:grid;
  gap: 12px;
}
.grid--2{ grid-template-columns: 1fr; }
.grid--3{ grid-template-columns: 1fr; }

/* Cards / Panels */
.card, .panel{
  border-radius: var(--radius2);
  border: 1px solid rgba(36,27,31,.10);
  background: rgba(255,255,255,.82);
  padding: 16px;
  box-shadow: 0 10px 25px rgba(36,27,31,.06);
}
.card--soft{
  background: rgba(255,255,255,.68);
}
.card__top{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
  min-width: 0;
}
.card__icon{
  width: 20px;
  height: 20px;
  opacity: .86;
  flex: 0 0 auto;
}
.card h3{
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.01em;
  min-width: 0;
}
.card p{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.tag{
  font-size: 12px;
  font-weight: 700;
  color: rgba(36,27,31,.72);
  border: 1px solid rgba(36,27,31,.10);
  background: rgba(255,255,255,.92);
  padding: 7px 10px;
  border-radius: 999px;
  max-width: 100%;
}

.panel__title{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
  min-width: 0;
}
.panel__title img{ width: 18px; height:18px; opacity: .86; flex: 0 0 auto; }
.panel__title h3{ margin: 0; font-size: 15px; letter-spacing: -0.01em; min-width:0; }
.panel ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.panel li{ margin: 8px 0; }

/* Notice */
.notice{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 14px 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(216,93,120,.18);
  background: rgba(216,93,120,.08);
}
.notice img{ width: 18px; height:18px; opacity: .85; margin-top: 3px; flex: 0 0 auto; }
.notice p{ margin: 0; color: rgba(36,27,31,.78); font-size: 13px; }

/* =========================
   Trust section
========================= */
.trust{
  display:grid;
  gap: 12px;
}
.trust__score, .trust__bullets{
  border-radius: var(--radius2);
  border: 1px solid rgba(36,27,31,.10);
  background: rgba(255,255,255,.82);
  padding: 16px;
  box-shadow: 0 10px 25px rgba(36,27,31,.06);
  overflow: hidden;
}
.score{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 0;
}
.score__value{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  letter-spacing: -0.04em;
  color: rgba(216,93,120,.95);
  line-height: 1;
  flex: 0 0 auto;
}
.score__meta{ min-width: 0; }
.score__meta span{
  display:block;
  color: var(--muted2);
  font-size: 13px;
  margin-top: 4px;
}
.stars{ display:flex; gap: 6px; flex-wrap: wrap; }
.stars img{ width: 18px; height:18px; opacity: .88; flex: 0 0 auto; }

.trust__micro{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted2);
}

.bullet{
  display:flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(36,27,31,.08);
}
.bullet:first-child{ border-top: none; padding-top: 0; }
.bullet img{ width: 18px; height:18px; opacity: .82; margin-top: 2px; flex: 0 0 auto; }
.bullet strong{ display:block; font-size: 14px; }
.bullet p{ margin: 5px 0 0; color: var(--muted); font-size: 13px; }

/* =========================
   Callout
========================= */
.callout{
  margin-top: 14px;
  border-radius: var(--radius2);
  border: 1px solid rgba(36,27,31,.10);
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,242,242,.70));
  padding: 16px;
  display:grid;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(36,27,31,.08);
  overflow: hidden;
}
.callout h3{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.callout p{ margin: 0; color: var(--muted); font-size: 14px; }
.callout__micro{ display:block; margin-top: 8px; font-size: 12px; color: var(--muted2); }

/* =========================
   FAQ
========================= */
.faq{ display:grid; gap: 10px; }
.faq__item{
  border-radius: var(--radius2);
  border: 1px solid rgba(36,27,31,.10);
  background: rgba(255,255,255,.82);
  overflow:hidden;
  box-shadow: 0 10px 25px rgba(36,27,31,.06);
}
.faq__item summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor:pointer;
  font-weight: 800;
  font-size: 14px;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary img{
  width: 18px; height:18px;
  opacity: .85;
  transition: transform .15s ease;
  flex: 0 0 auto;
}
.faq__item[open] summary img{ transform: rotate(180deg); }
.faq__item p{
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   CTA
========================= */
.section--cta{ padding: 28px 0 calc(92px + var(--safe-bottom)); }
.cta__card{
  border-radius: 30px;
  border: 1px solid rgba(216,93,120,.20);
  background:
    radial-gradient(900px 320px at 15% 0%, rgba(216,93,120,.16), transparent 60%),
    radial-gradient(900px 320px at 85% 10%, rgba(176,141,87,.12), transparent 60%),
    rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  padding: 18px;
  display:grid;
  gap: 14px;
  overflow: hidden;
}
.cta__left h2{
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
  font-size: 24px;
}
.cta__left p{ margin: 0; color: var(--muted); }
.cta__bullets{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}
.mini{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(36,27,31,.10);
  background: rgba(255,255,255,.90);
  min-width: 0;
}
.mini img{ width: 18px; height:18px; opacity: .85; flex: 0 0 auto; }
.mini span{
  font-weight: 800;
  font-size: 13px;
  color: rgba(36,27,31,.78);
  min-width: 0;
}

.cta__small{
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted2);
}

/* =========================
   Sticky CTA Mobile
========================= */
.sticky{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 12px 12px calc(12px + var(--safe-bottom));
  background: linear-gradient(to top, rgba(255,247,248,.96), rgba(255,247,248,.60));
  border-top: 1px solid rgba(36,27,31,.08);
  backdrop-filter: blur(10px);
}
.sticky__inner{
  width: min(var(--max), calc(100% - 16px));
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(36,27,31,.10);
  background: rgba(255,255,255,.90);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 10px;
  box-shadow: 0 14px 30px rgba(36,27,31,.10);
  min-width: 0;
}
.sticky__text{
  min-width: 0;
}
.sticky__text strong{
  display:block;
  font-size: 13px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky__text span{
  display:block;
  font-size: 12px;
  color: var(--muted2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================
   Footer
========================= */
.footer{
  padding: 26px 0 calc(92px + var(--safe-bottom)); /* espacio por sticky */
  border-top: 1px solid rgba(36,27,31,.08);
  background: rgba(255,255,255,.35);
}
.footer__grid{
  display:grid;
  gap: 12px;
}
.footer__note{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.footer__links{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__links a{
  font-size: 12px;
  font-weight: 800;
  color: rgba(36,27,31,.74);
  border: 1px solid rgba(36,27,31,.10);
  background: rgba(255,255,255,.70);
  padding: 8px 10px;
  border-radius: 999px;
}
.footer__legal{
  color: var(--muted2);
  font-size: 12px;
}
.footer__legal p{ margin: 6px 0 0; }

.brand--footer .brand__sub{ display:none; }

/* =========================
   Mobile refinements (fix “se corre”)
========================= */
@media (max-width: 420px){
  .container{ width: min(var(--max), calc(100% - 28px)); }

  .header__inner{
    gap: 10px;
  }
  .brand{ min-width: 0; }
  .brand__sub{ display:none; } /* evita que empuje el header */
  .header__actions{
    gap: 8px;
  }
  .header__actions .btn{
    padding: 10px 12px;
    min-height: 40px;
  }

  .hero h1{
    font-size: 30px;
  }

  .media__img{
    height: 280px;
  }

  /* stats: en pantallas muy chicas, 2 columnas para que no explote */
  .media__stats{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   Desktop
========================= */
@media (min-width: 900px){
  .nav{ display:flex; }

  .hero{ padding: 34px 0 16px; }
  .hero__grid{
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: start;
  }
  .hero h1{ font-size: 44px; }
  .hero__proof{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .trust{
    grid-template-columns: .9fr 1.1fr;
    align-items: start;
  }
  .callout{
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
  }
  .cta__card{
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    padding: 22px;
  }
  .cta__bullets{ grid-template-columns: 1fr; }
  .footer__grid{
    grid-template-columns: 1.2fr 1fr .8fr;
    align-items: start;
  }
}

/* Hide sticky on desktop */
@media (min-width: 980px){
  .sticky{ display:none; }
  .footer{ padding-bottom: 26px; }
  .section--cta{ padding-bottom: 28px; }
}
