@charset "UTF-8";
.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.parsley-errors-list {
  margin-bottom: 0; }

body {
  font-family: var(--font-default); }

a {
  color: var(--color-primary); }

.footer {
  padding: 20px 0;
  border-bottom: 1px solid #eee; }

.footer img {
  height: 40px; }

.footer a {
  margin-right: 20px; }

/* Base */
.header {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  background: #fff; }

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px; }

.header__brand {
  display: inline-flex;
  align-items: center; }

.header__logo {
  height: 40px;
  object-fit: cover;
  border-radius: 50%; }

/* Toggle (mobile) */
.header__checkbox {
  display: none; }

.header__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px; }

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px; }
  .header__nav img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%; }

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px; }

.header__item {
  display: inline-flex; }

.header__link {
  text-decoration: none;
  margin: 0; }

.header__link:hover {
  text-decoration: underline; }

/* User */
.header__user {
  display: flex;
  align-items: center;
  gap: 12px; }

.header__logout {
  cursor: pointer; }

.header__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover; }

.header__login {
  margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .header {
    padding: 10px 0; }

  .header__logo {
    height: 36px; }

  /* Mostrar toggle en móvil */
  .header__toggle {
    display: inline-flex; }

  .header__toggle-bar {
    background: #000; }

  /* usa el color de tu marca si quieres */
  .header__nav {
    position: absolute;
    top: 64px;
    /* altura aprox del header */
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
    gap: 12px;
    z-index: 50; }

  .header__checkbox:checked ~ .header__nav {
    display: flex; }

  .header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px; }

  .header__item {
    width: 100%; }

  .header__link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px; }

  /* User en columna */
  .header__user {
    justify-content: space-between;
    gap: 10px; }

  /* Contenedor en móvil: logo a la izq, toggle a la der */
  .header__container {
    position: relative; } }
/* Accesibilidad: estado "X" opcional (simple) */
@media (max-width: 768px) {
  .header__checkbox:checked + .header__toggle .header__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px); }

  .header__checkbox:checked + .header__toggle .header__toggle-bar:nth-child(2) {
    opacity: 0; }

  .header__checkbox:checked + .header__toggle .header__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); }

  .header__toggle-bar {
    transition: transform .2s ease, opacity .2s ease; } }
.header a {
  margin-right: 0; }

.powered-by {
  padding: 15px;
  font-size: 14px; }

.powered-by a {
  color: #222; }

.section, .section-sm, .section-lg {
  border-bottom: 1px solid #eee; }

.footer {
  background-color: #795647;
  color: #FFFFFF;
  /* Top */
  /* Social */
  /* Divider */
  /* Bottom */
  /* Responsive */ }
  .footer .footer__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 20px 28px; }
  .footer .footer__top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start; }
  .footer .footer__logo img {
    display: block;
    height: 44px;
    width: auto; }
  .footer .footer__logo-text {
    display: inline-block;
    font-size: 44px;
    font-weight: 900;
    text-decoration: none;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    line-height: 1; }
  .footer .footer__social {
    justify-self: end;
    min-width: 240px; }
  .footer .footer__social-title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700; }
  .footer .footer__social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px; }
  .footer .footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    transition: transform .15s ease, opacity .15s ease; }
  .footer .footer__social-link:hover {
    transform: translateY(-1px);
    opacity: .9; }
  .footer .footer__icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    fill: currentColor; }
  .footer .footer__divider {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin: 36px 0 18px; }
  .footer .footer__bottom {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; }
  .footer .footer__copyright {
    margin: 0;
    font-size: 14px; }
  .footer .footer__legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap; }
  .footer .footer__legal-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    position: relative; }
  .footer .footer__legal-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease; }
  .footer .footer__legal-link:hover::after {
    transform: scaleX(1); }
  @media (max-width: 960px) {
    .footer .footer__top {
      grid-template-columns: 1fr;
      gap: 28px; }
    .footer .footer__social {
      justify-self: start; } }
  @media (max-width: 520px) {
    .footer .footer__logo img {
      height: 38px; }
    .footer .footer__logo-text {
      font-size: 38px; }
    .footer .footer__legal {
      gap: 16px; } }

/* ========== Hero Split Dayra ========== */
.HeroSplit {
  background: #fff;
  color: #1a1a1a;
  /* Grid de dos columnas 50/50 (la imagen llena altura) */
  /* Columna izquierda: contenido */
  /* Botón principal (naranja) */
  /* Botón secundario (gris claro con borde suave) */
  /* Columna derecha: imagen a cubierta completa */
  /* Responsivo */
  /* Accesibilidad: reducir animación si el usuario lo prefiere */ }
  .HeroSplit .HeroSplit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh; }
  .HeroSplit .HeroSplit__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px clamp(20px, 4vw, 64px);
    max-width: 640px; }
  .HeroSplit .HeroSplit__brand {
    font-family: 'Gaya', sans-serif;
    font-style: italic;
    margin: 0 0 16px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: .2px;
    color: #6A4A3C;
    /* marrón del logo de la captura */ }
  .HeroSplit .HeroSplit__text {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 56ch; }
  .HeroSplit .HeroSplit__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px; }
  .HeroSplit .HeroSplit__btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
    transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease;
    will-change: transform;
    box-shadow: 0px 1px 2px rgba(12, 12, 12, 0.05), inset 0px 32px 24px rgba(255, 255, 255, 0.05), inset 0px 2px 1px rgba(255, 255, 255, 0.25), inset 0px 0px 0px 1px rgba(12, 12, 12, 0.15), inset 0px -2px 1px rgba(0, 0, 0, 0.2); }
  .HeroSplit .HeroSplit__btn--primary {
    background: #DD5F0A;
    color: #FFF; }
    .HeroSplit .HeroSplit__btn--primary.btn-blue {
      background: #1132b7; }
      .HeroSplit .HeroSplit__btn--primary.btn-blue:hover {
        background: #1132b7; }
  .HeroSplit .HeroSplit__btn--primary:hover {
    background: #DD5F0A; }
    .HeroSplit .HeroSplit__btn--primary:hover.btn-blue {
      background: #1132b7; }
      .HeroSplit .HeroSplit__btn--primary:hover.btn-blue:hover {
        background: #1132b7; }
  .HeroSplit .HeroSplit__btn--blue {
    background: #1132b7;
    color: #FFF; }
    .HeroSplit .HeroSplit__btn--blue a {
      color: #FFF; }
  .HeroSplit .HeroSplit__btn--blue:hover {
    background: #1132b7; }
    .HeroSplit .HeroSplit__btn--blue:hover a {
      color: #FFF; }
  .HeroSplit .HeroSplit__btn--secondary {
    background: #EFEFEF;
    color: #111;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); }
  .HeroSplit .HeroSplit__btn--secondary:hover {
    background: #e6e6e6; }
  .HeroSplit .HeroSplit__media {
    position: relative;
    overflow: hidden; }
  .HeroSplit .HeroSplit__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media (max-width: 992px) {
    .HeroSplit .HeroSplit__grid {
      grid-template-columns: 1fr;
      min-height: unset; }
    .HeroSplit .HeroSplit__media {
      order: 2;
      /* contenido primero, imagen después */
      height: 62vh;
      /* alto agradable en móvil */ }
    .HeroSplit .HeroSplit__content {
      order: 1;
      padding: 48px 20px 32px;
      max-width: none; } }
  @media (prefers-reduced-motion: reduce) {
    .HeroSplit .HeroSplit__btn {
      transition: none; } }

.HeroSplit__btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease;
  will-change: transform;
  box-shadow: 0px 1px 2px rgba(12, 12, 12, 0.05), inset 0px 32px 24px rgba(255, 255, 255, 0.05), inset 0px 2px 1px rgba(255, 255, 255, 0.25), inset 0px 0px 0px 1px rgba(12, 12, 12, 0.15), inset 0px -2px 1px rgba(0, 0, 0, 0.2); }

.HeroSplit__btn:hover {
  transform: scale(0.9); }

.HeroSplit__btn--primary {
  background: #DD5F0A;
  color: #FFF; }
  .HeroSplit__btn--primary a {
    color: inherit;
    margin: 0;
    padding: 0 1em; }

.HeroSplit__btn--primary:hover {
  background: #DD5F0A;
  color: #FFF; }

.HeroSplit__btn--blue {
  background: #1132b7;
  color: #FFF; }
  .HeroSplit__btn--blue a {
    color: #FFF; }

.HeroSplit__btn--blue:hover {
  background: #1132b7;
  color: #FFF; }
  .HeroSplit__btn--blue:hover a {
    color: #FFF; }

/* ========= Dayra - Menu ========= */
.DayraMenu {
  background: var(--bg, #5B3A30);
  color: var(--body-color, #F0ECE9);
  /* Columna izquierda (collage + sticker) */ }
  .DayraMenu .DayraMenu__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 20px; }
  .DayraMenu .DayraMenu__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center; }
  .DayraMenu .DayraMenu__art {
    position: relative;
    min-height: 420px; }
  .DayraMenu .DayraMenu__img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 720px;
    border: 0; }
  .DayraMenu .DayraMenu__sticker {
    position: absolute;
    left: -20px;
    top: 12px;
    width: clamp(120px, 18vw, 220px);
    transform: rotate(-8deg);
    pointer-events: none; }
  .DayraMenu .DayraMenu__content {
    max-width: 640px; }
  .DayraMenu .DayraMenu__title {
    font-family: 'Gaya', sans-serif;
    font-style: italic;
    margin: 0 0 14px;
    font-size: clamp(34px, 5.2vw, 56px);
    line-height: 1.12;
    font-weight: 400; }
  .DayraMenu .DayraMenu__text {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.65; }
  .DayraMenu .DayraMenu__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px; }
  .DayraMenu .DayraMenu__stat-title {
    font-size: clamp(28px, 4vw, 48px);
    font-family: 'Gaya', sans-serif;
    font-style: italic;
    font-weight: 900;
    line-height: 1.1; }
  .DayraMenu .DayraMenu__stat-sub {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.98; }
  .DayraMenu .DayraMenu__stat--accent1 .DayraMenu__stat-title {
    color: #FFFFFF;
    font-weight: 400;
    font-family: 'Gaya', sans-serif;
    font-style: italic; }
  .DayraMenu .DayraMenu__stat--accent2 .DayraMenu__stat-title {
    color: #FFFFFF;
    font-family: 'Gaya', sans-serif;
    font-weight: 400;
    font-style: italic; }
  @media (max-width: 992px) {
    .DayraMenu .DayraMenu__grid {
      grid-template-columns: 1fr;
      gap: 28px; }
    .DayraMenu .DayraMenu__art {
      order: 1;
      min-height: 340px; }
    .DayraMenu .DayraMenu__content {
      order: 2; }
    .DayraMenu .DayraMenu__stats {
      grid-template-columns: 1fr;
      gap: 22px; }
    .DayraMenu .DayraMenu__sticker {
      left: 8px;
      top: -10px; } }
  @media (prefers-reduced-motion: reduce) {
    .DayraMenu .DayraMenu__sticker {
      transform: none; } }

.hero-about {
  padding: 4rem 2rem; }
  .hero-about .hero-about__container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap; }
  .hero-about .hero-about__content {
    flex: 1 1 480px; }
  .hero-about__title {
    font-family: 'Gaya', sans-serif;
    color: #DD5F0A;
    font-style: italic;
    font-size: 2.6rem;
    line-height: 1.15;
    font-weight: 400;
    margin: 0 0 1.25rem 0; }
  .hero-about .hero-about__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem 0; }
  .hero-about .hero-about__image {
    flex: 1 1 440px; }
  .hero-about .hero-about__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem; }

@media (max-width: 992px) {
  .hero-about {
    padding: 3rem 1.5rem; }
    .hero-about .hero-about__title {
      font-size: 2.2rem; } }
@media (max-width: 768px) {
  .hero-about__container {
    gap: 2rem; }

  .hero-about__content,
  .hero-about__image {
    flex: 1 1 100%; }

  .hero-about__image {
    order: 2; } }
.contact-section {
  padding: 5rem 2rem 4rem 2rem;
  background: #ffffff; }
  .contact-section .contact-section__container {
    max-width: 1200px;
    margin: 0 auto; }
  .contact-section__header {
    margin-bottom: 3rem; }
  .contact-section .contact-section__title {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 800;
    color: #795647;
    margin: 0 0 0.75rem 0;
    font-family: 'Gaya', sans-serif; }
  .contact-section .contact-section__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin: 0;
    max-width: 640px; }
  .contact-section .contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem 4rem;
    align-items: start;
    margin-top: 4em; }

.contact-card {
  display: grid;
  grid-template-rows: auto auto auto auto;
  row-gap: 0.75rem; }
  .contact-card .contact-card__icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.75rem; }
  .contact-card .contact-card__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111111;
    margin: 0;
    font-family: 'Gaya', sans-serif; }
  .contact-card .contact-card__title--italic {
    font-style: italic; }
  .contact-card .contact-card__text {
    color: #555555;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0 0 0.25rem 0; }
  .contact-card .contact-card__link {
    font-size: 0.98rem;
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease; }
  .contact-card .contact-card__link:hover {
    opacity: 0.7; }

/* Responsive */
@media (max-width: 992px) {
  .contact-section {
    padding: 4rem 1.5rem; }

  .contact-section__title {
    font-size: 2.2rem; }

  .contact-section__grid {
    gap: 3rem 2rem; } }
@media (max-width: 768px) {
  .contact-section__grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem; } }
/* Thank You - Style */
.ty-style {
  background: var(--ty-bg, #0F2892);
  color: var(--ty-fg, #ffffff);
  padding: 64px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Mini-bloques */
  /* Imagen */
  /* Responsive */ }
  .ty-style--bleed {
    width: 100%; }
  .ty-style__container {
    max-width: 1200px;
    margin: 0 auto; }
  .ty-style__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center; }
  .ty-style__title {
    font-size: clamp(28px, 4.2vw, 56px);
    font-family: 'Gaya', sans-serif;
    font-style: italic;
    line-height: 1.08;
    margin: 0 0 16px;
    font-weight: 800; }
  .ty-style__body {
    font-size: 16px;
    line-height: 1.7;
    max-width: 52ch;
    opacity: .95;
    margin-bottom: 28px; }
  .ty-style__mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px; }
  .ty-style__mini-title {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    margin: 0 0 8px; }
  .ty-style__mini-body {
    font-size: 15px;
    line-height: 1.7;
    opacity: .95; }
  .ty-style__right {
    display: flex;
    justify-content: center; }
  .ty-style__media {
    margin: 0;
    width: 100%;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.06); }
  .ty-style__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover; }
  @media (max-width: 1024px) {
    .ty-style__grid {
      grid-template-columns: 1fr;
      gap: 32px; }
    .ty-style__left {
      order: 2; }
    .ty-style__right {
      order: 1; }
    .ty-style__mini {
      grid-template-columns: 1fr; } }

/* ====== Layout base ====== */
.login-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #ffffff; }

.login-split__left {
  display: grid;
  place-items: center;
  padding: 40px 24px; }

.login-card {
  width: 100%;
  max-width: 420px;
  text-align: center; }

.login-card__title {
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: #0F2892;
  margin: 0 0 12px;
  font-family: 'Gaya', sans-serif;
  font-style: italic; }

.login-card__subtitle {
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 28px; }

/* ====== Formulario ====== */
.login-form__field {
  display: block;
  margin-bottom: 14px; }

.login-form__field input {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #f7f7f7;
  color: #222;
  outline: none;
  transition: box-shadow .2s, border-color .2s, background .2s; }

.login-form__field input::placeholder {
  color: #9a9a9a; }

.login-form__field input:focus {
  border-color: #DD5F0A;
  background: #fff;
  box-shadow: 0 0 0 3px #DD5F0A73; }

.login-form__submit {
  width: 100%;
  display: inline-block;
  margin: 12px 0 10px;
  height: 48px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  background-color: #DD5F0A;
  color: #fff;
  border-radius: 9999px; }

.login-form__signup {
  font-size: 14px;
  color: #555;
  margin-top: 8px; }

.login-form__forgot {
  text-decoration: underline;
  color: #DD5F0A; }

.login-form__signup a:hover {
  opacity: .85; }

/* ====== Columna derecha con la imagen ====== */
.login-split__right {
  position: relative;
  min-height: 100%; }

.login-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; }

@media (max-width: 860px) {
  .login-split {
    grid-template-columns: 1fr; }

  .login-split__right {
    display: none;
    order: -1;
    min-height: 46vh; } }
.mt-4 {
  margin-top: 4rem; }

.login-card form input[type=submit] {
  background-color: #DD5F0A; }

.choose-style {
  padding: 4em 16px 72px;
  background: #fff; }

.choose-style__container {
  max-width: 1120px;
  margin: 0 auto; }

.choose-style__heading {
  margin: 0 0 10px;
  font-size: 56px;
  line-height: 1.05;
  text-align: center;
  font-weight: 800;
  color: #0F2892;
  font-family: "Gaya", sans-serif;
  font-style: italic; }

.choose-style__subheading {
  max-width: 840px;
  margin: 0 auto 36px;
  text-align: center;
  color: #555;
  font-size: 16px;
  line-height: 1.6; }

.choose-style__grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
  margin-top: 4em; }

.style-card {
  background: #f6f6f6;
  border-radius: 22px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec; }

.style-card__media {
  position: relative; }

.style-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px 22px 0 0; }

.style-card__sticker {
  position: absolute;
  top: -48px;
  left: 24px;
  width: 92px;
  height: auto;
  z-index: 999;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25)); }

.style-card__body {
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 238px;
  flex: 1; }

.style-card__title {
  margin: 24px 0 2px;
  font-size: 28px;
  line-height: 1.2;
  color: #171717;
  font-weight: 800;
  font-style: italic;
  font-family: "Gaya", sans-serif; }

.style-card__text {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.65; }

.style-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #DD5F0A;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0; }

.style-card__cta:hover {
  opacity: .9; }

.style-card__cta-icon {
  flex: 0 0 auto; }

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .choose-style__heading {
    font-size: 46px; }

  .style-card__sticker {
    width: 84px; } }
@media (max-width: 860px) {
  .choose-style {
    padding: 40px 16px 56px; }

  .choose-style__grid {
    grid-template-columns: 1fr;
    gap: 18px; }

  .style-card {
    margin-top: 40px; }

  .style-card__body {
    min-height: unset; }

  .style-card__sticker {
    top: -40px;
    left: 16px;
    width: 76px; } }
.HeroIntent {
  position: relative;
  width: 100%;
  min-height: 56vh;
  display: grid;
  place-items: stretch;
  overflow: hidden; }
  .HeroIntent--full {
    min-height: 100vh; }
  .HeroIntent__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    filter: none;
    transform: scale(1.02);
    will-change: transform; }
  .HeroIntent__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none; }
  .HeroIntent__container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(48px, 8vw, 96px) clamp(16px, 8vw, 64px); }
    .HeroIntent__container--left {
      display: grid;
      justify-items: start; }
    .HeroIntent__container--center {
      display: grid;
      justify-items: center;
      text-align: center; }
    .HeroIntent__container--right {
      display: grid;
      justify-items: end;
      text-align: right; }
  .HeroIntent__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px; }
  .HeroIntent__title {
    margin: 0;
    font-weight: 700;
    line-height: 1.05;
    font-family: 'Gaya', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(32px, 5vw, 64px);
    /* grande como en la referencia */
    letter-spacing: -0.02em; }
  .HeroIntent__subtitle {
    margin: 0;
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: 1.6;
    opacity: 0.95; }

/* Ajustes responsivos finos */
@media (max-width: 767px) {
  .HeroIntent {
    min-height: 60vh; }
    .HeroIntent .HeroIntent__content {
      gap: 12px; } }
.TakeReins {
  --container: min(1200px, 92vw);
  font-family: inherit;
  /* ---------- HERO ---------- */
  /* ------ LEARN STRIP ------ */
  /* ---------- Responsive ---------- */ }
  .TakeReins .TakeReins__container {
    width: var(--container);
    margin-inline: auto;
    padding: 64px 0; }
    .TakeReins .TakeReins__container--learn {
      padding: 80px 0; }
  .TakeReins .TakeReins__hero {
    text-align: center; }
  .TakeReins .TakeReins__title {
    font-size: clamp(28px, 4.5vw, 56px);
    font-family: 'Gaya', sans-serif;
    font-style: italic;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: .5px;
    margin: 0 0 16px;
    text-transform: none; }
  .TakeReins .TakeReins__subtitle {
    font-size: clamp(16px, 1.4vw, 20px);
    opacity: .95;
    margin: 0 0 28px; }
  .TakeReins .TakeReins__btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease; }
    .TakeReins .TakeReins__btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
      opacity: .95; }
    .TakeReins .TakeReins__btn:active {
      transform: translateY(0); }
  .TakeReins .TakeReins__learn {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff; }
  .TakeReins .TakeReins__overlay {
    position: absolute;
    inset: 0;
    background: var(--learn-overlay, rgba(0, 0, 0, 0.45)); }
  .TakeReins .TakeReins__learnTitle {
    position: relative;
    color: var(--learn-title-color, #fff);
    font-size: clamp(28px, 4vw, 48px);
    font-family: 'Gaya', sans-serif;
    font-style: italic;
    line-height: 1.1;
    font-weight: 800;
    text-align: center;
    margin: 0 0 36px; }
  .TakeReins .TakeReins__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 32px); }
  .TakeReins .TakeReins__item {
    padding: 2em 0.5rem;
    border-radius: 10px;
    text-align: center; }
  .TakeReins .TakeReins__verb {
    font-size: clamp(18px, 2vw, 24px);
    font-family: 'Gaya', sans-serif;
    font-style: italic;
    font-weight: 800;
    letter-spacing: .2px;
    margin-bottom: 8px; }
  .TakeReins .TakeReins__noun {
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 700;
    opacity: .95; }
  @media (max-width: 1024px) {
    .TakeReins .TakeReins__grid {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) {
    .TakeReins .TakeReins__container {
      padding: 48px 0; }
    .TakeReins .TakeReins__grid {
      grid-template-columns: 1fr;
      gap: 20px; } }

.MCReviews {
  background: var(--bg);
  padding: clamp(56px, 6vw, 96px) 0;
  /* Título grande y con personalidad */
  /* Grid de tarjetas */
  /* Tarjeta */
  /* Estrellas */
  /* Texto del review */
  /* Autor */
  /* Responsive */ }
  .MCReviews__container {
    width: min(1200px, 92vw);
    margin-inline: auto; }
  .MCReviews__title {
    color: var(--title);
    text-align: center;
    font-weight: 800;
    font-style: italic;
    font-family: 'Gaya', sans-serif;
    letter-spacing: .3px;
    line-height: 1.15;
    margin: 0 0 clamp(32px, 4vw, 56px);
    font-size: clamp(28px, 4.6vw, 56px); }
  .MCReviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3.2vw, 36px); }
  .MCReviews__card {
    background: var(--card-bg);
    color: var(--card-text);
    border-radius: 28px;
    padding: clamp(20px, 3vw, 36px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08); }
  .MCReviews__stars {
    display: flex;
    gap: 6px;
    margin-bottom: 14px; }
  .MCReviews__star {
    width: 22px;
    height: 22px;
    fill: var(--star); }
    .MCReviews__star--empty {
      opacity: .3; }
  .MCReviews__text {
    margin: 0 0 22px;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.8; }
  .MCReviews__author {
    color: var(--name);
    font-weight: 800;
    margin: 0;
    font-size: clamp(14px, 1.2vw, 16px); }
  @media (max-width: 990px) {
    .MCReviews__grid {
      grid-template-columns: 1fr; } }

#section-products h1 {
  font-family: 'Gaya', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.1;
  margin: 0 0 1em;
  color: #0F2892; }
#section-products h4 {
  font-family: 'Gaya', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 1.3rem);
  line-height: 1.1;
  margin: 0.5rem 0; }

.ProductCard {
  display: flex;
  flex-direction: column;
  margin-bottom: 3em; }
  .ProductCard__description {
    flex: 1;
    font-size: 0.90rem; }
  .ProductCard a {
    color: #DD5F0A;
    font-weight: 600; }
    .ProductCard a:hover {
      text-decoration: underline; }

.btn.btn-schema-1 {
  background-color: #0F2892; }

.btn.btn-schema-2 {
  background-color: #DD5F0A; }

.testimonials {
  padding: 56px 20px; }

.testimonials__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px; }

@media (min-width: 992px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px; } }
.testimonial {
  --bg:#f5f5f5;
  --fg:#1f1f1f;
  background: var(--bg);
  color: var(--fg);
  border-radius: 28px;
  padding: 28px 24px 32px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center; }

.testimonial__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 6px 0 10px;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); }

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.testimonial__name {
  font-family: 'Gaya', sans-serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.15;
  margin: 4px 0 2px;
  text-align: center;
  font-weight: 700; }

.testimonial__role {
  font-family: 'Gaya', sans-serif;
  font-style: italic;
  font-size: 14px;
  opacity: .85;
  margin: 0 0 10px;
  text-align: center;
  font-style: italic; }

.testimonial__body {
  width: 100%;
  max-width: 520px;
  margin-top: 8px; }

.testimonial__quote {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  text-wrap: pretty; }

/* Temas por tarjeta */
.testimonial--lime {
  --bg:#BFE07A;
  --fg:#142019;
  background: var(--bg);
  color: var(--fg);
  border-radius: 28px;
  padding: 28px 24px 32px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center; }

.testimonial--light {
  --bg:#F2F2F2;
  --fg:#202020;
  background: var(--bg);
  color: var(--fg);
  border-radius: 28px;
  padding: 28px 24px 32px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center; }

.testimonial--blue {
  --bg:#2F46C0;
  --fg:#ffffff;
  background: var(--bg);
  color: var(--fg);
  border-radius: 28px;
  padding: 28px 24px 32px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center; }

.testimonial--blue .testimonial__role,
.testimonial--blue .testimonial__quote {
  color: #fff; }

.double-videos {
  background-color: #0047FF;
  padding: 8em 0; }
  .double-videos__container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px; }
    @media (max-width: 768px) {
      .double-videos__container {
        flex-direction: column;
        gap: 15px; } }
  .double-videos__item {
    border: 3px solid #FF6F00;
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto; }
    .double-videos__item video {
      width: 100%;
      max-width: 300px;
      height: 100%;
      display: block;
      object-fit: cover;
      border-radius: 10px; }

.btn-blue {
  background: #1132b7; }
