/* =========================
   GLOBAL / DESIGN SYSTEM
   (Pensado para reusar en más páginas)
   ========================= */

:root {
  /* Colors */
  --bg: #f6f1ee;              /* fondo crema */
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --accent: #1ea7d6;          /* azul CTA */
  --dark: #101114;
  --section-tan: #b89e7b;     /* sección "Tu instructora" */
  --card: #ffffff;

  /* Sizes */
  --container: 1100px;
  --radius: 18px;

  /* Typography */
  --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";

  /* Spacing scale */
  --s-1: 8px;
  --s-2: 12px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;

  /* Shadows */
  --shadow: 0 18px 40px rgba(0,0,0,0.14);
}

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

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

html {
  scroll-behavior: smooth;
}


/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(30, 167, 214, 0.5);
  outline-offset: 3px;
}

/* Container */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* Utility */
.u-accent {
  color: var(--accent);
  font-weight: 700;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.12s ease, opacity 0.12s ease;
  user-select: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0px); opacity: 0.95; }

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--dark {
  background: #000;
  color: #fff;
}

/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 238, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #0a66c2; /* vibe LinkedIn */
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.brand__name {
  font-weight: 500;
}

.site-header__cta {
  display: none; /* se muestra en desktop */
}

/* =========================
   HERO
   ========================= */

.hero {
  padding: var(--s-7) 0 var(--s-6);
  position: relative;
  overflow: hidden;
}

/* Fondo suave tipo gradiente / blobs sin imágenes */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;
  z-index: 0;
}

.hero::before {
  top: -180px;
  left: -160px;
  background: radial-gradient(circle at 30% 30%, #d7b3ff, transparent 60%),
              radial-gradient(circle at 70% 60%, #ffb3a7, transparent 55%);
}

.hero::after {
  top: -200px;
  right: -140px;
  background: radial-gradient(circle at 40% 40%, #b0e3ff, transparent 55%),
              radial-gradient(circle at 70% 60%, #ffb8df, transparent 55%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-6);
  align-items: center;
}

.hero__title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.hero__subtitle {
  margin: 0 0 var(--s-4);
  font-size: clamp(16px, 1.6vw, 20px);
  color: #2b2b2b;
  font-weight: 700;
}

.hero__copy p {
  margin: 0 0 12px;
  color: var(--muted);
  max-width: 52ch;
}

.hero__actions {
  margin-top: var(--s-4);
}

.hero__visual {
  display: grid;
  place-items: center;
}

.hero__image {
  width: min(520px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.18));
  border-radius: var(--radius);
}

/* =========================
   SECTION TITLES
   ========================= */

.section-title {
  font-size: clamp(24px, 2.4vw, 34px);
  margin: 0 0 var(--s-4);
  font-weight: 900;
  letter-spacing: -0.4px;
}

.section-title--light {
  color: #fff;
}

/* =========================
   INSTRUCTOR
   ========================= */

.instructor {
  background: linear-gradient(
    90deg,
    #9e805d 0%,
    #bca488 100%
  );
  padding: var(--s-7) 0;
}



.instructor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}

.instructor__copy {
  color: rgba(255,255,255,0.92);
}

.instructor__copy p {
  margin: 0 0 14px;
  max-width: 60ch;
}

/* Photo card */
.instructor__photoWrap {
  display: flex;
  justify-content: center;
}

.instructor__photo {
  width: min(420px, 100%);
  height: auto;
  display: block;
}


/* =========================
   SIGNUP / EMBED AREA
   ========================= */

.signup {
  background: #3b3c3f;
  padding: var(--s-7) 0;
}



.embed-shell__hint {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  background: #0e0f12;
  color: rgba(255,255,255,0.9);
  padding: var(--s-6) 0;
}

.site-footer__inner {
  display: grid;
  gap: var(--s-3);
  justify-items: center;
  text-align: center;
}

.site-footer__title {
  margin: 0;
  font-weight: 900;
}

.social {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
}

/* Link como contenedor invisible */
.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

/* Tamaño del icono */
.social__link img {
  width: 30px;   /* más chico */
  height: 30px;
  display: block;
}

/* Hover: crece sutilmente */
.social__link:hover {
  transform: scale(1.12);
}


.site-footer__legal {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* =========================
   RESPONSIVE
   ========================= */

/* Tablet & down */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }

  .hero__copy p {
    max-width: 60ch;
  }

  .instructor__grid {
    grid-template-columns: 1fr;
  }

  .photo-card {
    border-radius: var(--radius);
  }

  .photo-card__img {
    border-radius: var(--radius);
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 420px;
  }

  .site-header__cta {
    display: inline-flex;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero {
    padding: var(--s-6) 0 var(--s-5);
  }

  .embed-shell {
    padding: var(--s-5);
    min-height: 220px; /* deja buen aire para el embed */
  }
}


/* =========================
   COOKIE CONSENT (minimal)
   ========================= */

.cookie-banner{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
  display: none;
}

.cookie-banner__inner{
  width: min(var(--container), calc(100% - 0px));
  margin-inline: auto;
  display: flex;
   align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-3);
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(248, 243, 238, 0.92);
  border: 1px solid rgba(184, 158, 123, 0.55); /* soft brown */
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.cookie-banner__text{
  margin: 0;
  color: rgba(26,26,26,0.82);
  font-size: 12.5px;
  line-height: 1.35;
  max-width: 72ch;
}

.cookie-banner__text a{
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions{
  display: inline-flex;
  gap: 8px;
  flex: 0 0 auto;
}

.cookie-btn{
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.12s ease, opacity 0.12s ease, background 0.12s ease;
}

.cookie-btn:hover{ transform: translateY(-1px); }
.cookie-btn:active{ transform: translateY(0px); opacity: 0.95; }

.cookie-btn--solid{
  border: 0;
  background: #1a1a1a;
  color: #fff;
}

.cookie-btn--ghost{
  background: transparent;
  border: 1px solid rgba(184, 158, 123, 0.65);
  color: #1a1a1a;
}

.cookie-panel{
  width: min(var(--container), calc(100% - 0px));
  margin: 10px auto 0;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(248, 243, 238, 0.98);
  border: 1px solid rgba(184, 158, 123, 0.55);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  display: none;
}

.cookie-toggle{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(184, 158, 123, 0.35);
  background: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.cookie-toggle input{ margin-top: 3px; }

.cookie-toggle strong{
  display:block;
  font-size: 12.5px;
  letter-spacing: -0.1px;
}

.cookie-toggle em{
  display:block;
  font-style: normal;
  font-size: 12px;
  color: rgba(26,26,26,0.70);
  margin-top: 2px;
}

.cookie-panel__footer{
  display:flex;
  justify-content:flex-end;
}

@media (max-width: 720px){
  .cookie-banner__inner{
    border-radius: var(--radius);
    align-items: flex-start;
    flex-direction: column;
  }
  .cookie-banner__actions{
    width: 100%;
    justify-content: flex-end;
  }
}










.linklike{
  background: none;
  border: none;
  padding: 0;
  color: inherit;          /* o tu color de link */
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}
