/* =========================
   Eslobar — Apple-like minimal
   ========================= */

:root{
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --text: #0b0b0f;
  --muted: rgba(11, 11, 15, .62);
  --hairline: rgba(11, 11, 15, .10);
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --radius: 22px;
  --radius-lg: 32px;

  --container: 1120px;
  --pad: clamp(18px, 2.2vw, 28px);

  --btn: 44px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 4px; }

.container{
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.muted{ color: var(--muted); }

/* Navbar */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(16px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid var(--hairline);
}

.nav__inner{
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand__mark{
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(11,11,15,.06);
}

.nav__links{
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: rgba(11,11,15,.72);
}

.nav__links a{
  padding: 10px 6px;
  border-radius: 10px;
}
.nav__links a:hover{
  background: rgba(11,11,15,.05);
  text-decoration: none;
}

.nav__cta{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn{
  height: var(--btn);
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none !important;
  user-select: none;
  cursor: pointer;
}

.btn--primary{
  background: #0b0b0f;
  color: #fff;
}
.btn--primary:hover{ filter: brightness(1.05); }

.btn--ghost{
  background: transparent;
  border-color: rgba(11,11,15,.18);
  color: rgba(11,11,15,.86);
}
.btn--ghost:hover{
  background: rgba(11,11,15,.05);
}

/* Hero */
.hero{
  padding: clamp(46px, 6vw, 84px) 0 30px;
}

.hero__inner{
  text-align: center;
}

.eyebrow{
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(11,11,15,.55);
}

.hero__title{
  margin: 0 auto;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 18ch;
}

.hero__subtitle{
  margin: 18px auto 0;
  max-width: 70ch;
  font-size: 20px;
  color: rgba(11,11,15,.74);
  font-weight: 500;
}

.hero__actions{
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__media{
  margin-top: 34px;
}

/* Sections */
.section{
  padding: clamp(56px, 6vw, 90px) 0;
}

.section--alt{
  background: var(--bg-alt);
  border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.section__head{
  max-width: 74ch;
  margin: 0 auto 26px;
  text-align: center;
}

.section__head h2{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #000;
}

.lead{
  margin: 0;
  font-size: 28px;
  color: rgba(0, 0, 0, 1);
  font-weight: 500;
}

/* Cards / grid */
.grid{
  display: grid;
  gap: 14px;
}

.grid--3{
  grid-template-columns: repeat(3, 1fr);
}

.grid--2{
  grid-template-columns: repeat(2, 1fr);
}

.card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}

.section:not(.section--alt) .card{
  background: #fff;
}

.card h3{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.card p{
  margin: 0;
  color: rgba(11,11,15,.72);
  font-size: 15.5px;
}

.card--wide{
  padding: 24px;
}

/* Split layout */
.split{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.split__content h2{
  margin: 10px 0 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.03em;
}

.steps{
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(11,11,15,.78);
}
.steps li{ margin: 10px 0; }

.inline-actions{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(11,11,15,.7);
}
.link{
  color: rgba(11,11,15,.85);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.dot{ opacity: .5; }

/* Images */
.img{
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  background: #fff;
}

.img--hero{
  border-radius: 40px;
}

/* FAQ */
.faq{
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq__item{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 14px 16px;
}

.faq__item summary{
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq__item summary::-webkit-details-marker{ display: none; }
.faq__item p{
  margin: 10px 0 0;
  color: rgba(11,11,15,.74);
}

/* CTA */
.cta{
  padding: clamp(56px, 6vw, 90px) 0;
}

.cta__inner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.cta__text h2{
  margin: 0 0 10px;
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.03em;
}

/* Form */
.form{
  background: rgba(11,11,15,.03);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.field{
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field span{
  font-size: 13px;
  color: rgba(11,11,15,.68);
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font: inherit;
  outline: none;
}

input:focus, textarea:focus{
  border-color: rgba(11,11,15,.35);
  box-shadow: 0 0 0 4px rgba(11,11,15,.08);
}

.fineprint{
  margin: 10px 0 0;
  font-size: 12.5px;
  color: rgba(11,11,15,.58);
}

/* Footer */
.footer{
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 18px 0;
  background: #fff;
}

.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__links{
  display: flex;
  gap: 14px;
  color: rgba(11,11,15,.72);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 920px){
  .nav__links{ display: none; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .cta__inner{ grid-template-columns: 1fr; }
  .hero__inner{ text-align: left; }
  .section__head{ text-align: left; }
  .hero__actions{ justify-content: flex-start; }
}

/* Navbar */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(16px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(11, 11, 15, .10);
}

/* IMPORTANTE: full width + padding (para que quede a la izquierda real) */
.nav__inner{
  height: 56px;
  width: 100%;
  padding: 0 clamp(16px, 2.2vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo pegado a la izquierda */
.nav__logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.nav__logo img{
  height: 26px;              /* ajustá a gusto: 22–30 */
  width: auto;
  display: block;
  border-radius: 8px;        /* si tu svg tiene bordes, podés quitarlo */
}

/* CTA a la derecha */
.nav__cta{
  display: flex;
  align-items: center;
  gap: 10px;
}

h2 {
  font-weight: 500;
};

#que-es .section__head{
  max-width: 7080px;
}
#que-es h2{
  font-size: clamp(26px, 2.8vw, 42px); /* baja un poco para textos largos */
  line-height: 1.18;
}

.section__head--wide{
  max-width: 980px;   /* probá 900–1100 según tu gusto */
}

/* =========================
   Mobile alignment fix
   ========================= */
@media (max-width: 768px) {

  /* Hero: centrar texto */
  .hero,
  .hero__inner,
  .section__head {
    text-align: center;
  }

  /* Títulos */
  .hero__title,
  .section__head h2 {
    margin-left: auto;
    margin-right: auto;
  }

  /* Subtítulos / párrafos */
  .hero__subtitle,
  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  /* Botones */
  .hero__actions {
    justify-content: center;
  }

  /* Botón individual */
  .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .lead{
  margin: 0;
  font-size: 23px;
  color: rgba(0, 0, 0, 1);
  font-weight: 500;
}
}

/* =========================
   Editorial style (ChatGPT)
   ========================= */

.editorial {
  background: #fff;
  color: #000;
  /*padding: clamp(32px, 4vw, 60px) 0; */
}

.editorial__inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

/* Texto */
.editorial__content h2 {
  max-width: 70ch;
  font-size: 25px;
  color: rgba(11,11,15,.74);
  font-weight: 500;
  text-align: center;
}

.editorial__content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(000,000,000,1);
  max-width: 48ch;
  margin-bottom: 28px;
}

/* Acciones */
.editorial__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link--light {
  color: rgba(000,000,000,1);
  font-size: 15px;
  text-decoration: none;
}

.link--light:hover {
  text-decoration: underline;
}

/* Imagen */
.editorial__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  margin-top: 20px;
}

/* =========================
   Responsive (mobile)
   ========================= */
@media (max-width: 900px) { 
  .editorial__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .editorial__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .editorial__actions {
    align-items: center;
  }

   .editorial {
     padding: clamp(32px, 4vw, 60px) 0;
   }

      .editorial__content {
     text-align: center;
   }

   .editorial__content h2 {
     text-align: center;
   }

   .editorial--reverse .editorial__content {
     text-align: center;
   }

   .editorial--reverse .editorial__content h2 {
     text-align: center;
   }
}

/* =========================
   Editorial alignment fix
   ========================= */

/* Texto a la izquierda (default) */
.editorial__content {
  text-align: left;
}

/* Título */
.editorial__content h2 {
  text-align: left;
}

/* =========================
   Reverse (texto a la derecha)
   ========================= */

.editorial--reverse .editorial__content {
  text-align: left;
}

.editorial--reverse .editorial__content h2 {
  text-align: left;
}

.editorial--reverse .editorial__content p {
  margin-left: -0px;
}

/* Botones alineados al texto */
.editorial--reverse .editorial__actions {
  align-items: flex-end;
}



/* =========================================
   MOBILE GLOBAL FIX (≤ 768px)
   ========================================= */
@media (max-width: 768px) {

   /* Texto a la izquierda (default) */
.editorial__content {
  text-align: center;
}

   .editorial--reverse .editorial__content h2 {
     text-align: center;
   }

   .editorial__content h2 {
     text-align: center;
   }

   .editorial--reverse .editorial__content {
     text-align: center;
   }
}

/* =========================================
   Mobile: imagen primero (solo esta sección)
   ========================================= */
@media (max-width: 768px) {

  .editorial--mobile-image-first .editorial__media {
    order: 1 !important;
  }

  .editorial--mobile-image-first .editorial__content {
    order: 2 !important;
  }

}























