:root{
  --brand:#0f4c81;        /* Azul Hedonai */
  --cta:#00a86b;          /* Verde botón */
  --bg:#fff;
  --bg-soft:#f5f7fa;
  --text:#1b1b1b;
  --muted:#6b7280;
  --radius:14px;
}

/* Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:'Montserrat',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
.container{width:min(1100px,92%);margin:0 auto}
h1,h2,h3,h4,h5{margin-top:0}

/* Botones */
.btn{
  display:inline-block;
  padding:.9rem 1.3rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  border:0;
  cursor:pointer;
}
.btn--primary{background:var(--cta);color:#fff}
.btn--primary:hover{filter:brightness(1.05)}

/* ===== HERO ===== */
.hero{
  background:var(--brand);
  color:#fff;
  text-align:center;
  padding:48px 0;
}
.hero__wrap{max-width:1100px;margin:0 auto}
.hero__kicker{margin:0 0 .75rem;font-weight:600;font-size:clamp(18px,2.2vw,22px);opacity:.95}
.hero__title{margin:0 0 .8rem;font-weight:700;font-size:clamp(28px,4.5vw,42px);line-height:1.2}
.hero__subtitle{margin:0 0 1rem;font-weight:600;font-size:clamp(20px,2.6vw,24px)}
.hero__support{margin:0 0 1.5rem;font-weight:500;font-size:clamp(16px,2.2vw,20px);opacity:.95}
.hero__cta{margin:.25rem 0 1rem;padding:1rem 1.5rem;font-size:clamp(16px,2.2vw,18px)}
.hero__note{margin:.25rem auto 0;max-width:820px;font-weight:500;font-size:clamp(13px,1.8vw,15px);opacity:.9}

/* ===== Intro / Texto ancho moderado ===== */
.laser-cards{background:#fff;padding:60px 0;text-align:center}
.laser-cards__title{font-size:clamp(28px,3vw,42px);margin:0 0 .5rem}
.laser-cards__intro{max-width:800px;margin:0 auto 2.5rem;color:#475569}
.laser-cards__legal{font-size:.85rem;color:#6b7280;margin-top:.5rem}

/* ===== Video Intro ===== */
.video-intro {
  background: #ebebeb;
  padding: 40px 0;
  text-align: center;
}
.video-intro__player {
  width: 100%;
  max-width: 960px;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* ===== Ventajas ===== */
.advantages{background:#f7f8fa;padding:60px 0}
.advantages__grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.advantages__media{margin:0}
.advantages__media img{width:100%;height:auto;border-radius:12px;display:block;box-shadow:0 6px 20px rgba(0,0,0,0.06)}
.advantages__content h2{font-size:clamp(26px,3vw,38px);margin:0 0 1rem}
.advantages__list{list-style:none;padding:0;margin:0}
.advantages__list li{position:relative;margin:.6rem 0;padding-left:1.6rem;color:#475569;line-height:1.5}
.advantages__list li::before{content:"✓";color:var(--brand);position:absolute;left:0;font-weight:bold}
@media (max-width:900px){
  .advantages__grid{grid-template-columns:1fr;text-align:center}
  .advantages__list li{padding-left:0}
  .advantages__list li::before{display:none}
}

/* ===== About (igual que hero: ancho centrado) ===== */
.about-block {
  background: var(--brand);
  padding: 70px 0;
  color: #fff;
  text-align: center;
}
.about-block__grid {max-width:1100px;margin:0 auto}
.about-block__content h2{
  font-size:clamp(28px,3vw,42px);
  margin:0 0 1rem;color:#fff
}
.about-block__content p{
  margin:0 0 1.2rem;line-height:1.6;color:#f0f4ff
}
.about-block__subtitle{
  font-size:1.20rem;font-weight:600;line-height:1.4;color:#fff;margin:1rem 0 1.5rem
}
.about-block__image{
  display:block;
  width:100%;
  max-width:450px;     /* similar al ancho de un párrafo legible */
  margin:0 auto 20px;
  border-radius:12px;
}
.btn--light{background:#fff;color:var(--brand)}
.btn--light:hover{background:#f0f0f0}

/* ===== Trust (título centrado) ===== */
.trust{background:#fff;padding:48px 0 36px;text-align:center}
.trust__title{margin:0;font-size:clamp(26px,3.2vw,38px);color:var(--brand);font-weight:700}

/* ===== Feature (2 columnas + reverse) ===== */
.feature{background:#fff;padding:60px 0}
.feature__grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.feature__content h3{margin:0 0 .75rem;font-size:clamp(22px,2.6vw,28px);color:var(--text)}
.feature__content p{margin:0 0 1rem;color:#475569;line-height:1.65}
.feature__bullets{list-style:none;margin:0;padding:0;display:grid;gap:12px;color:#475569;line-height:1.6}
.feature__bullets li strong{color:var(--text)}
.feature__media{margin:0}
.feature__media img{width:100%;height:auto;display:block;border-radius:12px;box-shadow:0 8px 24px rgba(0,0,0,.08);object-fit:cover}
.feature--reverse .feature__media{order:-1}
@media (max-width:900px){
  .feature__grid{grid-template-columns:1fr;text-align:center}
  .feature__content{text-align:left}
  .feature--reverse .feature__media{order:0}
  .feature__media img{margin:0 auto}
}

/* ===== CTA Consulta Médica (azul + botón blanco) ===== */
.cta-block{
  background:var(--brand);
  padding:70px 0;
  text-align:center;
  color:#fff;
}
.cta-block__btn{
  background:#fff;color:var(--brand);
  font-size:clamp(16px,2.2vw,18px);
  padding:1rem 1.8rem;border-radius:999px;font-weight:600;
  display:inline-block;text-decoration:none;
  transition:background .2s ease,color .2s ease;
}
.cta-block__btn:hover{background:#f0f0f0;color:var(--brand)}
.cta-block__note{
  max-width:760px;margin:1.5rem auto 0;font-size:1rem;line-height:1.6;color:#f0f4ff;padding-bottom:30px
}

/* ===== Pasos Hedonai ===== */
.steps{background:#ebebeb;padding:70px 0}
.steps__grid{display:grid;gap:24px;margin-bottom:40px}
.steps__grid--3{grid-template-columns:repeat(3,1fr)}
.steps__grid--2{
  grid-template-columns:repeat(2,1fr);
  justify-content:center;
  max-width:calc(1100px * 2 / 3 + 24px);
  margin:0 auto;
}
.step{
  background:#fff;border-radius:12px;padding:24px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  text-align:center;
}
.step h3{margin:0 0 .75rem;font-size:1.15rem;font-weight:700;color:var(--brand)}
.step p{margin:0;color:#475569;line-height:1.6}
@media (max-width:900px){
  .steps__grid--3,.steps__grid--2{grid-template-columns:1fr;max-width:100%}
}

/* ===== Testimonios ===== */
.testimonios{background:#fff;padding:60px 0;text-align:center}
.testimonios h2{margin-bottom:2rem}
.video-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  width:80%;           /* más estrecho */
  margin:0 auto;       /* centrado */
}
.video-card{
  background:#fff;border-radius:12px;overflow:hidden;position:relative;
  aspect-ratio:9/16;box-shadow:0 4px 16px rgba(0,0,0,.06)
}
.video-card iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
@media (max-width:1024px){.video-row{grid-template-columns:repeat(2,1fr);width:90%}}
@media (max-width:600px){.video-row{grid-template-columns:1fr;width:100%}}

/* ===== Formulario (sección azul) ===== */
.contact--blue{background:#0f4c81;padding:70px 0;color:#fff;text-align:center}
.contact__title{margin-bottom:2rem;font-size:clamp(28px,3vw,42px)}
.contact__form{
  background:rgba(0,0,0,0.5);
  padding:30px;border-radius:16px;box-shadow:0 6px 20px rgba(0,0,0,0.25);
  margin:0 auto 25px;max-width:700px;text-align:left
}
.form__grid{display:flex;flex-direction:column;gap:22px}
.form__field label{display:block;font-weight:600;margin-bottom:6px;color:#fff}
input,textarea,select{width:100%;padding:.85rem;border:1px solid #ccc;border-radius:8px;font:inherit}
textarea{resize:vertical;min-height:90px}
.contact__form input:focus,.contact__form select:focus,.contact__form textarea:focus{outline:2px solid #fff}
.check{display:flex;align-items:center;gap:10px;white-space:nowrap;justify-content:flex-start;padding-top:4px;font-size:.95rem}
.check input{margin:0}
.check a{color:#fff;text-decoration:underline}
#submitBtn{width:100%;display:block;text-align:center;margin-top:8px}
.error{color:#ffd2d2;font-size:.85rem;min-height:1rem;margin-top:4px}
.form__status{margin-top:12px;font-size:.9rem;color:#e5efff}
.contact__note{font-size:.85rem;color:#f0f4ff;max-width:700px;margin:.8rem auto 0;text-align:center}
@media (max-width:768px){.contact__form{padding:20px}}

/* ===== Footer ===== */
.footer{padding:25px 0;background:#f7f8fa;font-size:.9rem;color:var(--muted)}
.footer__wrap{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap}
.footer__left{font-weight:500}
.footer__right a{color:var(--brand);text-decoration:none;margin-left:10px;font-weight:500}
.footer__right a:hover{text-decoration:underline}
.footer__right .sep{margin:0 8px;color:#ccc}
@media (max-width:600px){
  .footer__wrap{flex-direction:column;text-align:center;gap:6px}
}

/* Utilidades */
.highlight-yellow{color:#fde047}

/* Checkbox custom (form) */
.form__field.check{display:flex;align-items:center;gap:10px;font-size:.95rem;line-height:1.4}
.form__field.check input[type="checkbox"]{
  appearance:none;width:20px;height:20px;border:2px solid #fff;border-radius:4px;background:transparent;
  cursor:pointer;position:relative;flex-shrink:0
}
.form__field.check input[type="checkbox"]:checked{background:var(--cta);border-color:var(--cta)}
.form__field.check input[type="checkbox"]::after{
  content:"";position:absolute;top:3px;left:6px;width:5px;height:10px;border:solid #fff;border-width:0 2px 2px 0;
  transform:rotate(45deg);opacity:0;transition:opacity .15s ease
}
.form__field.check input[type="checkbox"]:checked::after{opacity:1}
.form__field.check label{color:#fff;margin:0}

.steps__title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  margin: 0 0 2rem;
}

/* ===== Página Gracias ===== */
.thanks {
  background: #f7f8fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  padding: 40px 0;
}

.thanks__wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.thanks__logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
}

.thanks__wrap h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 1rem;
  color: var(--brand);
}

.thanks__wrap p {
  font-size: 1rem;
  color: #475569;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.thanks__wrap .note {
  font-style: italic;
  font-size: 0.9rem;
  color: #6b7280;
}


.thanks__back {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--brand);
  text-decoration: underline;
}

/* Iconos sociales en página Gracias */
.thanks__social {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 1.5rem 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;  
}

.social-link:hover {
  background: #09345c; /* tono más oscuro del brand */
  transform: scale(1.05);
}
