/* ============================================================
   RENACER — Hoja de estilos compartida
   Paleta: borgoña-rosa vibrante + neutros cálidos
   ============================================================ */
:root{
  --bg: #fdf8f8;
  --surface: rgba(255,255,255,.96);
  --surface-2: rgba(255,255,255,.84);

  --text: rgba(38, 20, 22, .92);
  --muted: rgba(38, 20, 22, .60);

  --body: rgba(38, 20, 22, .86);
  --muted-2: rgba(38, 20, 22, .56);

  --heading: rgba(150, 35, 58, .97);
  --heading-soft: rgba(150, 35, 58, .90);

  --heading-grad: linear-gradient(90deg,
                    rgba(201, 42, 72, 1),
                    rgba(220, 80, 105, 1),
                    rgba(236, 137, 137, .90)
                  );

  --border: rgba(38, 20, 22, .14);

  --a1: #C9273F;
  --a2: #E05A74;
  --a3: #F2A8B5;
  --a4: #1E1217;

  --radius: 18px;

  --shadow-xs: 0 10px 20px rgba(38,20,22,.10);
  --shadow-sm: 0 14px 32px rgba(38,20,22,.14);
  --shadow-md: 0 24px 60px rgba(38,20,22,.20);
  --shadow-glow: 0 24px 64px rgba(201,39,63,.22);
}

html,body{height:100%}
body{
  background:
    radial-gradient(1000px 560px at 10% 0%, rgba(201,39,63,.13), transparent 58%),
    radial-gradient(900px 500px at 90% 10%, rgba(224,90,116,.12), transparent 56%),
    radial-gradient(700px 400px at 50% 0%, rgba(242,168,181,.10), transparent 60%),
    var(--bg);
  color: var(--body);
}
a{text-decoration:none}
.muted{color:var(--muted-2)}
.container{max-width:1140px}

h1,h2,h3,h4,h5,h6{
  color: var(--heading);
  text-rendering: geometricPrecision;
}

/* ====== NAV DOCK PREMIUM ====== */
.nav-dock{
  position: sticky; top: 0; z-index: 60;
  padding: 12px 0;
}
.dock{
  display:flex; align-items:center; gap: 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,39,63,.18);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 10px 12px;
  position: relative;
  overflow: hidden;
}
.dock:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(900px 240px at 20% -30%, rgba(201,39,63,.14), transparent 60%),
    radial-gradient(900px 240px at 80% -30%, rgba(224,90,116,.12), transparent 60%);
  pointer-events:none;
}
.dock-brand{
  display:flex; align-items:center; gap:.65rem;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--heading);
  position: relative;
  z-index: 1;
}
.dock-brand:hover{background: rgba(49,46,50,.03)}
.brand-logo{
  width: 60px; height: 60px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(49,46,50,.10);
  box-shadow: 0 10px 22px rgba(49,46,50,.08);
  background:#fff;
}
.brand-name{
  font-weight: 950;
  letter-spacing: -.2px;
  color: var(--heading);
  line-height: 1;
}
.dock-links{
  flex: 1;
  display:flex; align-items:center; justify-content:center;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.dock-link{
  position: relative;
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(49,46,50,.74);
  font-weight: 900;
  font-size: .90rem;
  transition: transform .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.dock-link:hover{
  background: rgba(49,46,50,.04);
  color: rgba(49,46,50,.92);
  transform: translateY(-1px);
}
.dock-link.is-active{
  color: var(--a1);
  background: rgba(201,39,63,.07);
}
.dock-indicator{
  position:absolute;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201,39,63,.16), rgba(224,90,116,.12));
  border: 1px solid rgba(201,39,63,.20);
  box-shadow: 0 12px 26px rgba(49,46,50,.10);
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 120px;
  opacity: 0;
  transition: left .22s ease, width .22s ease, opacity .22s ease;
  pointer-events:none;
}
.dock-cta{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow: var(--shadow-xs);
  position: relative;
  z-index: 1;
  transition: transform .18s ease, filter .18s ease;
  white-space: nowrap;
}
.dock-cta:hover{transform: translateY(-1px); filter: saturate(1.06) brightness(.98)}
.dock-wa{display:none}
@media (max-width: 991px){
  .dock-links{display:none}
  .dock-cta{display:none}
  .dock{
    border-radius: 22px;
    padding: 10px 10px;
    justify-content: space-between;
  }
  .dock-wa{
    display:inline-flex; align-items:center; gap:10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(49,46,50,.10);
    background: rgba(255,255,255,.86);
    color: rgba(49,46,50,.92);
    font-weight: 950;
    position: relative;
    z-index: 1;
  }
  .dock-wa-dot{
    width: 10px; height: 10px; border-radius: 999px;
    background: linear-gradient(135deg, var(--a1), var(--a2));
    box-shadow: 0 0 0 6px rgba(201,39,63,.18);
  }
}

/* ====== BREADCRUMB ====== */
.breadcrumb-bar{
  padding: 10px 0;
  font-size: .88rem;
  color: rgba(49,46,50,.56);
}
.breadcrumb-bar a{color: var(--a1); }
.breadcrumb-bar a:hover{color: var(--a2)}
.breadcrumb-sep{margin: 0 .4rem; opacity:.5}

/* ====== BOTONES ====== */
.btn-cta{
  border-radius: 999px !important;
  padding-left: 1.2rem; padding-right: 1.2rem;
  box-shadow: var(--shadow-xs);
  font-weight: 900;
}
.btn-primary{
  border: none;
  background: linear-gradient(135deg, var(--a1), var(--a2));
}
.btn-primary:hover{filter: saturate(1.06) brightness(.98); transform: translateY(-1px)}
.btn-outline-secondary{
  border-radius: 999px !important;
  border-color: rgba(49,46,50,.18);
  color: rgba(49,46,50,.90);
  font-weight: 900;
}
.btn-outline-secondary:hover{background: rgba(49,46,50,.04); border-color: rgba(49,46,50,.22)}

/* ====== PAGE HERO (interior) ====== */
.page-hero{
  padding: clamp(48px, 6vw, 80px) 0 clamp(36px, 4vw, 56px);
}
.page-badge{
  display:inline-flex; align-items:center; gap:.55rem;
  padding:.45rem .80rem; border-radius:999px;
  border: 1px solid rgba(201,39,63,.22);
  background: rgba(201,39,63,.07);
  color: var(--a1);
  font-size: .88rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.page-title{
  font-weight: 980;
  letter-spacing: -1px;
  line-height: 1.08;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--heading);
  margin: 0 0 16px;
}
.page-subtitle{
  color: rgba(49,46,50,.68);
  font-size: 1.08rem;
  line-height: 1.60;
  max-width: 68ch;
  margin: 0;
}
.page-divider{
  height: 4px;
  width: 80px;
  border-radius: 999px;
  background: var(--heading-grad);
  margin: 18px 0;
}

/* ====== HERO PRINCIPAL ====== */
.hero{padding: clamp(34px, 5vw, 86px) 0 22px}
.hero-badge{
  display:inline-flex; align-items:center; gap:.55rem;
  padding:.55rem .85rem; border-radius:999px;
  border: 1px solid rgba(49,46,50,.10);
  background: rgba(255,255,255,.82);
  color: rgba(49,46,50,.74);
  font-size: .92rem;
  box-shadow: var(--shadow-xs);
}
.hero-badge .dot{
  width:8px; height:8px; border-radius:999px;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow: 0 0 0 6px rgba(201,39,63,.18);
}
.hero-title{
  margin-top: 14px;
  font-weight: 980;
  letter-spacing: -1px;
  line-height: 1.06;
  font-size: clamp(2.15rem, 4.2vw, 3.6rem);
  color: var(--heading);
}
.title-gradient{
  display:block;
  background: linear-gradient(90deg, var(--a1), var(--a2), var(--a3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: .35rem;
  filter: saturate(1.1);
}
.hero-subtitle{
  margin-top: 12px;
  color: rgba(49,46,50,.72);
  font-size: 1.08rem;
  line-height: 1.58;
  max-width: 60ch;
}
.trust-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .75rem;
  max-width: 560px;
}

/* ====== CARDS ====== */
.card-soft, .card-outline, .card-gradient, .mini-card, .quote-card, .gallery-item, .panel, .trust-item{
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(201,39,63,.12);
  box-shadow: var(--shadow-sm);
}
.card-soft:before,
.card-outline:before,
.card-gradient:before,
.mini-card:before,
.quote-card:before,
.panel:before,
.trust-item:before{
  content:"";
  position:absolute; inset:0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,39,63,.55), rgba(224,90,116,.35), rgba(242,168,181,.20));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity: .75;
}
.card-soft:after, .card-outline:after, .card-gradient:after, .mini-card:after, .quote-card:after, .panel:after, .trust-item:after{
  content:"";
  position:absolute; inset:-60% -40%;
  background: radial-gradient(240px 140px at 10% 20%, rgba(255,255,255,.70), transparent 60%);
  transform: translateX(-22%);
  opacity: .0;
  transition: opacity .25s ease, transform .45s ease;
  pointer-events:none;
}
.card-soft:hover:after,
.card-outline:hover:after,
.card-gradient:hover:after,
.mini-card:hover:after,
.quote-card:hover:after,
.panel:hover:after,
.trust-item:hover:after{
  opacity: .90;
  transform: translateX(22%);
}
.card-soft{padding: 18px}
.card-outline{padding: 18px; background: rgba(255,255,255,.88)}
.card-gradient{
  padding: 20px 18px;
  background:
    radial-gradient(520px 220px at 15% 0%, rgba(201,39,63,.09), transparent 55%),
    radial-gradient(520px 220px at 85% 0%, rgba(224,90,116,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
}
.card-title{
  font-weight: 980;
  letter-spacing: -.4px;
  margin: 10px 0 6px;
  font-size: 1.12rem;
  color: rgba(49,46,50,.92);
  text-shadow: 0 10px 30px rgba(201,39,63,.12);
}
.card-text{
  color: rgba(49,46,50,.70);
  margin:0;
  line-height: 1.56;
}
.icon-pill{
  width: 38px; height: 38px;
  border-radius: 999px;
  display:inline-flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(201,39,63,.16), rgba(224,90,116,.12));
  border: 1px solid rgba(201,39,63,.22);
  font-weight: 980;
  color: var(--a1);
  box-shadow: 0 10px 22px rgba(201,39,63,.14);
}
.trust-item{padding: .95rem 1rem}
.trust-kpi{font-weight: 980; letter-spacing: -.4px; color: rgba(49,46,50,.94)}
.trust-label{color: rgba(49,46,50,.62); font-size: .92rem; margin-top:.15rem}
.lift{transition: transform .18s ease, box-shadow .18s ease, filter .18s ease}
.lift:hover{transform: translateY(-3px); box-shadow: var(--shadow-md); filter: saturate(1.02)}

/* ====== HERO MEDIA ====== */
.hero-media{
  position:relative;
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid rgba(49,46,50,.10);
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateZ(0);
  animation: breatheFloat 6.5s ease-in-out infinite;
}
.hero-media img{width:100%; display:block}
.floating-card{
  position:absolute; left:14px; right:14px; bottom:14px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(49,46,50,.10);
  box-shadow: var(--shadow-sm);
}
.floating-title{font-weight: 980; letter-spacing:-.4px; color: rgba(49,46,50,.94)}
.floating-text{margin-top: 2px; color: rgba(49,46,50,.70); font-size: .96rem}

/* ====== SECCIONES ====== */
.section{padding: clamp(52px, 6.5vw, 96px) 0}
.section-alt{
  background: linear-gradient(180deg, rgba(201,39,63,.025) 0%, rgba(201,39,63,.04) 50%, rgba(201,39,63,.025) 100%);
}
.section-title{
  font-weight: 980;
  letter-spacing: -0.9px;
  line-height: 1.14;
  font-size: clamp(1.75rem, 3.1vw, 2.55rem);
  margin: 0;
  color: var(--heading-soft);
  position: relative;
  display: inline-block;
}
.section-title:after{
  content:"";
  display:block;
  height: 4px;
  width: min(120px, 45%);
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--heading-grad);
  opacity: .75;
  filter: saturate(1.2);
}
.section-subtitle{
  color: rgba(49,46,50,.68);
  max-width: 78ch;
  margin: 10px auto 0;
  font-size: 1.02rem;
  line-height: 1.62;
}
.section-head{margin-bottom: 26px}

/* ====== PHOTO BAND ====== */
.photo-band{
  position: relative;
  border-top: 1px solid rgba(49,46,50,.08);
  border-bottom: 1px solid rgba(49,46,50,.08);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: background-position;
  filter: saturate(1.14) contrast(1.08);
}
.photo-band:before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(253,248,248,.78), rgba(255,255,255,.60)),
    radial-gradient(900px 520px at 15% 5%, rgba(201,39,63,.22), transparent 62%),
    radial-gradient(900px 520px at 85% 10%, rgba(224,90,116,.18), transparent 60%);
}
.photo-band > .container{position: relative; z-index: 1}
@media (min-width: 992px) and (prefers-reduced-motion: no-preference){
  .photo-band{background-attachment: fixed;}
}

/* ====== FEATURE LIST ====== */
.feature-list{list-style:none; padding:0; margin:0; display:grid; gap:14px}
.feature-list li{
  display:grid; grid-template-columns: 14px 1fr; gap:12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(49,46,50,.10);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.feature-dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  margin-top: 7px;
  box-shadow: 0 0 0 6px rgba(201,39,63,.16);
}

/* ====== GALERÍA ====== */
.gallery-item{
  display:block;
  overflow:hidden;
  border-radius: 18px;
}
.gallery-item img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display:block;
  transition: transform .25s ease;
}
.gallery-item:hover img{transform: scale(1.05)}

/* ====== TESTIMONIOS ====== */
.quote-card{padding: 18px}
.quote{
  margin:0;
  color: rgba(49,46,50,.84);
  line-height: 1.62;
  font-size: 1.02rem;
}
.quote-name{font-weight: 980; letter-spacing: -.2px; color: rgba(49,46,50,.94)}
.avatar-fake{
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(201,39,63,.30), rgba(224,90,116,.20));
  border: 1px solid rgba(201,39,63,.20);
  box-shadow: 0 10px 22px rgba(201,39,63,.18);
}

/* ====== CTA ====== */
.cta-inner{
  display:grid; gap: 14px; grid-template-columns: 1fr;
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(201,39,63,.18);
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(201,39,63,.14), transparent 60%),
    radial-gradient(700px 320px at 90% 10%, rgba(224,90,116,.12), transparent 60%),
    rgba(255,255,255,.94);
  box-shadow: var(--shadow-md);
}
.cta-title{
  margin:0;
  font-weight: 980;
  letter-spacing: -0.9px;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.18;
  color: var(--heading-soft);
}
.cta-sub{margin: 8px 0 0; color: rgba(49,46,50,.68); line-height:1.6}
.cta-actions{display:flex; gap:.6rem; flex-wrap:wrap}
@media (min-width: 992px){
  .cta-inner{grid-template-columns: 1.2fr .8fr; align-items:center; padding: 28px 26px}
  .cta-actions{justify-content: flex-end}
}

/* ====== FAQ ====== */
.accordion-clean .accordion-item{
  background: transparent;
  border: 1px solid rgba(49,46,50,.10);
  border-radius: 18px;
  overflow:hidden;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.accordion-clean .accordion-button{
  background: rgba(255,255,255,.94);
  color: rgba(49,46,50,.94);
  box-shadow:none;
  font-weight: 980;
}
.accordion-clean .accordion-body{
  background: rgba(255,255,255,.88);
  color: rgba(49,46,50,.72);
}

/* ====== FOOTER ====== */
.footer{
  background: #1A0A0E;
  color: rgba(255,255,255,.75);
}
.footer-top{
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.footer-tagline{
  font-size: .82rem;
  color: rgba(255,255,255,.50);
  margin-top: 4px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.footer-col-title{
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--a2);
  margin-bottom: 14px;
}
.footer-links{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px}
.footer-links a{
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .875rem;
  transition: color .18s;
}
.footer-links a:hover{color:#fff}
.footer-contact-item{
  display:flex; align-items:flex-start; gap:10px;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
}
.footer-contact-icon{
  width: 20px; height: 20px; flex-shrink:0;
  border-radius: 50%;
  background: rgba(201,39,63,.25);
  display:flex; align-items:center; justify-content:center;
  font-size: .65rem;
  color: var(--a2);
  margin-top: 1px;
}
.footer-wa-btn{
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--a1);
  color: #fff;
  font-size: .825rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, transform .18s;
}
.footer-wa-btn:hover{background:#a8202f; color:#fff; transform: translateY(-1px)}
.footer-bottom{
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
@media (min-width: 768px){
  .footer-bottom{flex-direction:row; justify-content:space-between; text-align:left}
}
.footer-bottom a{color:rgba(255,255,255,.45); text-decoration:none; transition:color .18s}
.footer-bottom a:hover{color:rgba(255,255,255,.85)}
.footer-divider-accent{
  height: 3px;
  background: linear-gradient(90deg, var(--a1) 0%, var(--a2) 50%, transparent 100%);
}
.link-muted{color: rgba(49,46,50,.70)}
.link-muted:hover{color: rgba(49,46,50,.94)}

/* ====== WHATSAPP FLOAT ====== */
.wa-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,.50), 0 2px 8px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
}
.wa-float:hover{
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.60), 0 4px 12px rgba(0,0,0,.22);
}
.wa-float svg{
  width: 32px;
  height: 32px;
  fill: #fff;
}
@media (max-width: 575px){
  .trust-row{grid-template-columns:1fr}
  .wa-float{width:52px; height:52px; right:16px; bottom:16px}
  .wa-float svg{width:28px; height:28px}
}

/* ====== MOVIMIENTO ====== */
@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important; scroll-behavior:auto !important}
}
.reveal{
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.reveal.in{opacity: 1; transform: translateY(0) scale(1)}
.reveal.fade-left{transform: translateX(-14px) scale(.992)}
.reveal.fade-right{transform: translateX(14px) scale(.992)}
.reveal.fade-left.in,
.reveal.fade-right.in{transform: translateX(0) scale(1)}

@keyframes breatheFloat{
  0%,100%{transform: translateY(0)}
  50%{transform: translateY(-6px)}
}

@supports not (-webkit-touch-callout: none){
  .photo-band{ filter: saturate(1.05) contrast(1.02); }
}
