    :root{
    --bg: #f2f2f2;
    --panel: #0f1624;
    --panel2: #0c1320;
    --text: #000000;
    --muted: #444444;
    --line: #d9d9d9;
    --nav-bg: #F2B705;
    /* acento tipo "legal elegante" */
    --accent: #d9b26a;      /* dorado */
    --accent2: #8fb3ff;     /* azul suave para detalles */

    --radius: 18px;
    --shadow: 0 14px 40px rgba(0,0,0,.35);

    --title: "Playfair Display", serif;
    --body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }

    *{ box-sizing: border-box; }
    html{ scroll-behavior: smooth; }
    body{
    margin: 0;
    font-family: var(--body);
    color: var(--text);
    background: radial-gradient(900px 420px at 10% -10%, rgba(143,179,255,.18), transparent 60%),
                radial-gradient(900px 420px at 90% -10%, rgba(217,178,106,.16), transparent 55%),
                var(--bg);
    }

    img{ max-width: 100%; display: block; }

    .container{
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    }

    /* Topbar */
    .topbar{
    background: rgba(0,0,0,.35);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
    }
    .topbar__inner{
    display: flex;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    }
    .topbar__item{
    color: var(--muted);
    text-decoration: none;
    }
    .topbar__left{ display: flex; gap: 14px; flex-wrap: wrap; }
    .topbar__item:hover{ color: var(--text); }

    /* Header */
    .header{
    position: sticky;
    top: 0;
    z-index: 50;

    background: var(--nav-bg); /* #F2B705 */
    border-bottom: 1px solid rgba(0,0,0,.15);
    backdrop-filter: none; /* sacamos blur */
    }
    .header__inner{
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    }

    .brand{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    }
    .brand__mark{
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.28);
    border-radius: 12px;
    }
    .brand__text{ display: grid; line-height: 1.1; }
    .brand__name{
    font-family: var(--title);
    font-weight: 700;
    font-size: 18px;
    }
    .brand__sub{
    font-size: 13px;
    color: var(--muted);
    }

    /* Nav */
    .nav{
    display: flex;
    gap: 18px;
    align-items: center;
    }
    .nav a{
    color: var(--text);
    opacity: 1;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    }
    .nav a:hover{   color: #5c4300; opacity: 1; }

    .nav__toggle{
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    }
    .nav__toggle span{
    display: block;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 2px;
    }
    /* LOGO EN NAVBAR */
    .brand-logo{
    height: 48px;        /* ajustá este valor */
    width: auto;
    object-fit: contain;
    }
    /* Buttons */
    .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    }
    .btn--primary{
    background: linear-gradient(180deg, rgba(217,178,106,.95), rgba(217,178,106,.78));
    color: #121212;
    box-shadow: 0 10px 24px rgba(217,178,106,.18);
    }
    .btn--primary:hover{ filter: brightness(1.03); }
    .btn--ghost{
    background: rgba(255,255,255,.04);
    border-color: var(--line);
    color: var(--text);
    }
    .btn--ghost:hover{ background: rgba(255,255,255,.06); }

    .header__cta{ white-space: nowrap; }

    /* Hero */
    .hero{
    position: relative;
    padding: 56px 0 30px;
    overflow: hidden;
    }
    .hero__grid{
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 28px;
    align-items: center;
    }
    .eyebrow{
    color: var(--accent);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    }
    .hero__title{
    font-family: var(--title);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin: 12px 0;
    }
    .hero__lead{
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 56ch;
    }
    .hero__actions{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0 18px;
    }
    .hero__stats{
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 18px;
    }
    .stat{
    background: rgba(114, 109, 109, 0.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    }
    .stat__num{
    font-family: var(--title);
    font-size: 22px;
    font-weight: 700;
    }
    .stat__label{
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
    }

    .hero__media{
    display: grid;
    place-items: center;
    }
    .hero__card{
    position: relative;
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
    background: rgba(255,255,255,.03);
    }
    .hero__card img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    opacity: .92;
    }
    .hero__badge{
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(11,15,23,.72);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 10px 12px;
    }
    .hero__badge span{
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(217,178,106,.12);
    border: 1px solid rgba(217,178,106,.28);
    }
    .hero__badge strong{ display: block; }
    .hero__badge small{ display: block; color: var(--muted); margin-top: 2px; }

    .hero__fade{
    position: absolute;
    inset: auto 0 0 0;
    height: 90px;
    background: linear-gradient(180deg, transparent, var(--bg));
    }

    /* Sections */
    .section{
    padding: 64px 0;
    }
    .section--alt{
    background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    }
    .section__head{
    margin-bottom: 22px;
    }
    .section__head h2{
    font-family: var(--title);
    font-size: 34px;
    margin: 0 0 8px;
    }
    .section__head p{
    color: var(--muted);
    margin: 0;
    max-width: 70ch;
    }

    /* Grid + Cards */
    .grid{
    display: grid;
    gap: 14px;
    }
    .grid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
    .grid--4{ grid-template-columns: repeat(4, minmax(0,1fr)); }

    .card{
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    }
    .card h3{
    font-family: var(--title);
    margin: 0 0 8px;
    font-size: 20px;
    }
    .card p{
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.7;
    }
    .list{
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    }
    .list li{ margin: 8px 0; }

    /* Callout */
    .callout{
    margin-top: 18px;
    background: linear-gradient(135deg, rgba(217,178,106,.12), rgba(143,179,255,.08));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: calc(var(--radius) + 6px);
    padding: 18px;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
    }
    .callout h3{
    font-family: var(--title);
    margin: 0 0 4px;
    }
    .callout p{ margin: 0; color: var(--muted); }

    /* About */
    .about{
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 22px;
    align-items: center;
    }
    .about__media img{
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
    height: 420px;
    width: 100%;
    object-fit: cover;
    }
    .about__content h2{
    font-family: var(--title);
    font-size: 34px;
    margin: 0 0 10px;
    }
    .about__content p{
    color: var(--muted);
    line-height: 1.8;
    margin: 0 0 12px;
    }

    .chips{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 18px;
    }
    .chip{
    font-size: 13px;
    color: var(--text);
    background: rgba(255,255,255,.05);
    border: 1px solid var(--line);
    padding: 8px 10px;
    border-radius: 999px;
    }

    /* Steps */
    .step{
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    }
    .step__num{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(217,178,106,.12);
    border: 1px solid rgba(217,178,106,.28);
    margin-bottom: 10px;
    font-weight: 800;
    }
    .step h3{
    margin: 0 0 6px;
    font-family: var(--title);
    }
    .step p{
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    }

    /* Quotes */
    .quote{
    margin: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    }
    .quote blockquote{
    margin: 0 0 10px;
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
    }
    .quote figcaption{
    color: var(--muted);
    font-size: 13px;
    }

    /* Contact */
    .contact{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
    }
    .contact__left h2{
    font-family: var(--title);
    font-size: 34px;
    margin: 0 0 8px;
    }
    .contact__left p{ color: var(--muted); line-height: 1.8; }

    .contact__info{
    display: grid;
    gap: 10px;
    margin: 14px 0;
    }
    .contact__info a, .contact__info span{
    color: var(--text);
    text-decoration: none;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    padding: 12px 12px;
    border-radius: 14px;
    }
    .contact__info a:hover{ background: rgba(255,255,255,.06); }

    .mapNote{
    color: var(--muted);
    border-left: 3px solid rgba(217,178,106,.55);
    padding: 10px 12px;
    background: rgba(255,255,255,.03);
    border-radius: 14px;
    }

    /* Form */
    .contact__form{
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    }
    label{
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 14px;
    }
    input, select, textarea{
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(11,15,23,.55);
    color: var(--text);
    outline: none;
    }
    input:focus, select:focus, textarea:focus{
    border-color: rgba(217,178,106,.55);
    box-shadow: 0 0 0 4px rgba(217,178,106,.12);
    }
    .formNote{
    margin: 10px 0 0;
    color: var(--muted);
    min-height: 20px;
    }
    .privacy{
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
    }

    /* Footer */
    .footer{
    border-top: 1px solid var(--line);
    padding: 22px 0;
    background: rgba(0,0,0,.25);
    }
    .footer__inner{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    }
    .footer__links{
    display: flex;
    gap: 14px;
    }
    .footer__links a{
    color: var(--muted);
    text-decoration: none;
    }
    .footer__links a:hover{ color: var(--text); }
    .muted{ color: var(--muted); margin: 6px 0 0; }

    /* Responsive */
    @media (max-width: 980px){
    .hero__grid{ grid-template-columns: 1fr; }
    .hero__card img{ height: 420px; }
    .hero__stats{ grid-template-columns: 1fr; }
    .grid--3{ grid-template-columns: 1fr; }
    .grid--4{ grid-template-columns: 1fr; }
    .about{ grid-template-columns: 1fr; }
    .contact{ grid-template-columns: 1fr; }
    .callout{ flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 860px){
    .header__inner{ grid-template-columns: 1fr auto; }
    .nav, .header__cta{ display: none; }
    .nav__toggle{ display: inline-block; }

    .nav.is-open{
        display: grid;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 1px);
        background: rgba(242,183,5,.1);
        border-bottom: 1px solid var(--line);
        padding: 14px 20px;
        gap: 10px;
    }
    .nav.is-open a{
        padding: 12px 12px;
        border-radius: 14px;
        background: rgba(242,183,5,.1);
        border: 1px solid var(--line);
    }
    }
/* NAVBAR BOOTSTRAP: fondo amarillo */
.nav-glass{
  background: rgba(242, 183, 5, 0.88) !important; /* #F2B705 con opacidad */
  border-bottom: 1px solid rgba(0,0,0,.15) !important;
 backdrop-filter: blur(6px); /* glass suave */
}
:root{
  --accent-yellow: #F2B705;
  --accent-purple: #A6498D;
  --ink: #111111;
  --card-bg: rgba(255,255,255,.72);
  --card-border: rgba(0,0,0,.12);
}

/* Cards Áreas */
.area-card{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
}

/* Barra superior con paleta */
.area-card::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-purple));
}

/* Hover sutil (profesional) */
.area-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
  transition: .2s ease;
}

/* Icono con círculo */
.area-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(242,183,5,.18);
  border: 1px solid rgba(242,183,5,.35);
  font-size: 20px;
}

/* Título violeta */
.area-title{
  margin: 8px 0 6px;
  font-family: var(--title);
  font-weight: 700;
  font-size: 25px;
  color: var(--accent-purple);
}

/* Descripción */
.area-desc{
  margin: 0;
  color: rgba(0,0,0,.72);
  line-height: 1.6;
  font-size: 16.5px;
}

/* Lista */
.area-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(0,0,0,.75);
  font-size: 15px;
}
.area-list li{ margin: 8px 0; }

/* CTA al fondo */
.area-cta{
  margin-top: auto;
}

/* Botón con paleta */
.btn-area{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(166,73,141,.30);
  background: rgba(166,73,141,.10);
  color: var(--ink);
  font-weight: 700;
  padding: 12px 14px;
}
.btn-area:hover{
  background: linear-gradient(180deg, rgba(242,183,5,.95), rgba(242,183,5,.78));
  border-color: rgba(242,183,5,.55);
  color: #111;
}
/* HERO CON IMAGEN DE FONDO */
.hero-bg {
  position: relative;
  overflow: hidden;

  /* fondo base blanco/gris */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f4f4f4 100%
  );

  min-height: 620px;
  padding: 140px 0 180px;
}

/* Imagen decorativa */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("hero-fondo.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain; /* NO recorta */

  opacity: 0.18; /* 🔑 ahora se ve */
  z-index: 0;
}
/* Capa blanca suave para legibilidad */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;


  z-index: 1;
}
.hero-bg > * {
  position: relative;
  z-index: 2;
}
/* ===== HERO CONTACTO ===== */
.hero-bg--contact{
  min-height: 520px;
  padding: 100px 0 140px;
}

/* la imagen se ve un poco más sutil en contacto */
.hero-bg--contact::before{
  opacity: 0.16;
  background-position: center bottom;
}
.glass-card iframe{
  display: block;
  border-radius: 0;
}
.brand-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .02em; /* opcional, queda muy elegante */
}
.violeta{
  background: linear-gradient(90deg, #A6498D, #7B2FF7);
  color: #A6498D;
  border: none;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.12);
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

/* ICONO DE FONDO */
.info-card--phone {
  padding-left: 52px;
  background-image: url("telefono.png");
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: 18px center;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(260px, 1fr));
  gap: 28px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1400px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}
.about__content p,
.text-justify {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.glass-card p {
  text-align: justify;
  text-justify: inter-word;
}
@media (max-width: 576px) {
  .text-justify {
    text-align: left;
  }
}/* Justificación profesional para textos largos */
.text-justify,
.glass-card p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Evitar cortes feos en pantallas chicas */
@media (max-width: 576px) {
  .text-justify,
  .glass-card p {
    text-align: left;
    hyphens: none;
  }
}
/* Fotos del equipo alineadas */
.team-photo {
  width: 100%;
  max-width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
/* ===== SECCIÓN VIDEO ===== */
.video-section {
  padding: 80px 20px;
  text-align: center;
}

.video-title {
  font-size: 36px;
  margin-bottom: 10px;
}

.video-subtitle {
  color: #555;
  margin-bottom: 40px;
}

/* Slider */
.video-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
/* Flechas */
.video-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  cursor: pointer;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

/* Marco del video */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
}

/* Imagen de fondo / contorno */
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Montaje del video */
#videoMount {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Video real */
.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.video-dots {
  display: flex;
  justify-content: center;
  gap: 10px;

  margin-top: 16px;
}

.video-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;

  background: #c9c9c9;
  cursor: pointer;
}

.video-dot.is-active {
  background: #8b2c6f; /* tu violeta */
}
.footer-dev {
  background: #f4f5f7; /* gris suave */
  border-top: 1px solid rgba(0,0,0,.08);
}

.footer-signature {
  line-height: 1.3;
}

.footer-logo-dev {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-mail {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-mail:hover {
  text-decoration: underline;
  color: #111827;
}
.video-lazy{
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.video-thumb{
  display:block;
  width:100%;
  height:auto;
}
.video-play{
  position:absolute;
  inset:0;
  margin:auto;
  width:72px;
  height:72px;
  border-radius:999px;
  border:0;
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:28px;
}
.video-play:hover{ background:rgba(0,0,0,.7); }
.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;

  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 22px;
  cursor: pointer;
}

.video-prev {
  left: -22px;
}

.video-next {
  right: -22px;
}
/* ===== VIDEO SLIDER FIX: centrado + flechas afuera ===== */
.video-slider{
  position: relative;
  max-width: 1200px;     /* ancho máximo del bloque */
  margin: 0 auto;        /* centra el slider */
  padding: 0 80px;       /* espacio interno para que entren flechas */
}

.video-frame{
  width: min(1100px, 92vw); /* hace el video grande pero responsive */
  margin: 0 auto;           /* centra el marco */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}

.video-frame video,
.video-frame iframe{
  width: 100%;
  height: auto;
  display: block;
}

/* Flechas */
.video-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;                 /* arriba del video */
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.video-prev{ left: 18px; }     /* dentro del padding del slider */
.video-next{ right: 18px; }

.video-nav:hover{ background: #fff; }

/* Puntitos centrados abajo */
.video-dots{
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

/* Responsive: menos padding y flechas más cerca */
@media (max-width: 768px){
  .video-slider{ padding: 0 56px; }
  .video-nav{ width: 44px; height: 44px; }
  .video-prev{ left: 10px; }
  .video-next{ right: 10px; }
}