/* =========================
   RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#ffffff;
  overflow-x:hidden;
}

/* =========================
   HEADER ESTÁTICO
========================= */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;

  background:
  rgba(0,8,20,.90);

  backdrop-filter:blur(15px);

  border-bottom:
  1px solid rgba(255,255,255,.08);

  box-shadow:
  0 8px 25px rgba(0,0,0,.20);

  z-index:9999;

  transition:.35s ease;
}

/* =========================
   BODY FIX
========================= */
body{
  padding-top:90px; /* EVITA QUE EL HEADER TAPE CONTENIDO */
}

/* =========================
   CONTENEDOR INTERNO
========================= */
.header-container{
  width:100%;
  max-width:1280px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:30px;

  padding:0 10px;

  position:relative;
}

/* Menú */

.nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav a{
  position:relative;

  color:#fff;
  text-decoration:none;

  font-size:.95rem;
  font-weight:600;

  transition:all .3s ease;
}

.nav a::after{

  content:'';

  position:absolute;

  left:0;
  bottom:-6px;

  width:0;
  height:2px;

  background:
  linear-gradient(
  90deg,
  #00d4ff,
  #8b5cf6
  );

}

.nav a:hover{
  color:#00d4ff;
}

.nav a:hover::after{
  width:100%;
}

/* Botones destacados */

.admin-link{

  padding:10px 18px;

  border-radius:50px;

  background:
  linear-gradient(
  135deg,
  #00d4ff,
  #0099cc
  );

  color:#fff !important;

  box-shadow:
  0 5px 15px rgba(0,212,255,.15);

}

.admin-link:hover{

  transform:translateY(-3px);

  box-shadow:
  0 10px 25px rgba(0,212,255,.30);
}

/* Botón hamburguesa */

.menu-toggle{

  display:none;

  width:48px;
  height:48px;

  border:none;
  border-radius:12px;

  background:
  rgba(255,255,255,.08);

  color:#fff;

  cursor:pointer;

}

.menu-toggle:hover{

  background:
  rgba(0,212,255,.15);

  color:#00d4ff;
}

/* Responsive */

@media(max-width:992px){

  .header-container{
    padding:0;
  }

  .menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .nav{

    position:absolute;

    top:85px;
    right:0;

    width:290px;

    background:
    rgba(8,17,31,.98);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:25px;

    flex-direction:column;
    align-items:flex-start;

    display:none;

    box-shadow:
    0 20px 40px rgba(0,0,0,.35);
  }

  .nav.active{
    display:flex;
  }

  .nav a{
    width:100%;
    padding:8px 0;
  }
}


/* =========================
   NAV
========================= */
.nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  position:relative;
}

/* HOVER */
.nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:2px;
  background:#00bfff;
}

.nav a:hover::after{
  width:100%;
}

/* =========================
   ADMIN BUTTON
========================= */
.admin-link{
  padding:8px 16px;
  border-radius:8px;
  background:linear-gradient(90deg,#007bff,#8a2be2);
}

/* =========================
   MENU HAMBURGUESA
========================= */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

/* =========================
   TABLETS
========================= */
@media screen and (max-width:992px){

  .header{
    padding:14px 20px;
  }

  .nav{
    gap:14px;
  }

}

/* =========================
   MOBILE
========================= */
@media screen and (max-width:768px){

  body{
    padding-top:80px;
  }

  .menu-toggle{
    display:block;
  }

  .header{
    padding:14px 18px;
  }

  .nav{
    position:absolute;
    top:100%;
    left:0;

    width:100%;

    background:#000814;

    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:18px;
    padding:20px 0;

    display:none;

    border-top:1px solid rgba(255,255,255,.08);
  }

  .nav.active{
    display:flex;
  }

  .nav a{
    width:100%;
    text-align:center;
    padding:10px 0;
  }

  .admin-link{
    width:220px;
    text-align:center;
  }

}

/* =========================
   SMALL MOBILE
========================= */
@media screen and (max-width:576px){

  body{
    padding-top:75px;
  }

  .header{
    padding:12px 15px;
  }

  .menu-toggle{
    font-size:24px;
  }

  .nav{
    gap:14px;
    padding:18px 0;
  }

  .nav a{
    font-size:13px;
  }

}

/* =========================
   EXTRA SMALL
========================= */
@media screen and (max-width:400px){

  .nav a{
    font-size:12px;
  }

  .admin-link{
    width:200px;
  }

}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* OVERLAY (oscurece para leer texto) */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}

/* TEXTO */
.hero-content {
  color: #fff;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
}

.hero p {
  color: #ddd;
  margin: 10px 0;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #00c2ff;
  color: #fff;
  text-decoration: none;
  margin-top: 15px;
}

/* SECCIONES */
section {
  padding: 80px 40px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  padding: 20px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* BENEFICIOS */
.beneficios {
  background: #f5f5f5;
}

/* =========================
   CTA SECTION
========================= */
.cta{
  position:relative;
  padding:100px 20px;
  background:
    linear-gradient(
      135deg,
      #020617,
      #071426,
      #0b1d35
    );

  overflow:hidden;
  text-align:center;
}

/* =========================
   CONTENT
========================= */
.cta-content{
  max-width:900px;
  margin:auto;
  margin-bottom:50px;
}

.cta-tag{
  display:inline-block;
  padding:8px 18px;
  border-radius:30px;

  background:rgba(0,191,255,.12);
  border:1px solid rgba(0,191,255,.25);

  color:#00bfff;
  font-size:14px;
  font-weight:600;

  margin-bottom:25px;
}

.cta h2{
  font-size:3rem;
  line-height:1.2;
  margin-bottom:20px;
  color:#fff;
}

.cta p{
  max-width:750px;
  margin:auto;

  font-size:1.1rem;
  line-height:1.8;
  color:#cbd5e1;
}

/* =========================
   TESTIMONIOS
========================= */
.testimonios{
  padding:100px 20px;
  background:
    linear-gradient(
      135deg,
      #020617,
      #071426
    );

  color:#fff;
  text-align:center;
}

/* CONTENT */
.testimonios-content{
  max-width:850px;
  margin:auto;
  margin-bottom:60px;
}

.testimonios-tag{
  display:inline-block;

  padding:8px 18px;

  border-radius:30px;

  background:rgba(0,191,255,.12);

  border:1px solid rgba(0,191,255,.2);

  color:#00bfff;

  font-size:14px;
  font-weight:600;

  margin-bottom:20px;
}

.testimonios h2{
  font-size:2.8rem;
  margin-bottom:20px;
}

.testimonios-sub{
  color:#cbd5e1;
  line-height:1.8;
}

/* GRID */
.testimonios-grid{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

/* CARD */
.testimonio-card{
  background:#0b1727;

  border:1px solid rgba(255,255,255,.06);

  border-radius:24px;

  padding:35px 30px;

  text-align:left;
}

.testimonio-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 15px 35px rgba(0,0,0,.3);
}

/* AVATAR */
.avatar{
  width:85px;
  height:85px;

  border-radius:50%;

  overflow:hidden;

  margin-bottom:25px;

  border:3px solid rgba(0,191,255,.25);
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* INFO */
.testimonio-info h3{
  font-size:1.3rem;
  margin-bottom:6px;
}

.testimonio-info span{
  display:block;

  color:#00bfff;

  font-size:.9rem;

  margin-bottom:18px;
}

.testimonio-info p{
  color:#dbe4ee;

  line-height:1.8;

  font-size:.96rem;
}

/* =========================
   TABLETS
========================= */
@media screen and (max-width:992px){

  .testimonios{
    padding:80px 20px;
  }

  .testimonios h2{
    font-size:2.2rem;
  }

}

/* =========================
   MOBILE
========================= */
@media screen and (max-width:768px){

  .testimonios{
    padding:70px 15px;
  }

  .testimonios h2{
    font-size:1.9rem;
  }

  .testimonios-sub{
    font-size:.95rem;
  }

  .testimonio-card{
    padding:28px 22px;
  }

}

/* =========================
   SMALL MOBILE
========================= */
@media screen and (max-width:576px){

  .testimonios-grid{
    grid-template-columns:1fr;
  }

  .avatar{
    width:75px;
    height:75px;
  }

  .testimonio-info h3{
    font-size:1.1rem;
  }

  .testimonio-info p{
    font-size:.9rem;
  }

}

/* =========================
   EXTRA SMALL
========================= */
@media screen and (max-width:400px){

  .testimonios h2{
    font-size:1.6rem;
  }

  .testimonio-card{
    padding:22px 18px;
  }

}

/* =========================
   CARRUSEL
========================= */
.carousel{
  position:relative;

  width:100%;
  max-width:1200px;

  margin:50px auto;
  overflow:hidden;

  border-radius:24px;

  background:#050b18;

  box-shadow:
    0 15px 40px rgba(0,0,0,.35);
}

/* TRACK */
.carousel-track{
  display:flex;
  transition:transform .6s ease-in-out;
}

/* SLIDES */
.slide{
  min-width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

/* IMAGES */
.slide img{
  width:100%;
  height:auto;

  max-height:650px;

  object-fit:contain;

  border-radius:18px;

  display:block;
}

/* =========================
   BUTTONS
========================= */
.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:50px;
  height:50px;

  border:none;
  border-radius:50%;

  background:rgba(0,0,0,.55);
  backdrop-filter:blur(5px);

  color:#fff;
  font-size:20px;

  cursor:pointer;

  z-index:10;
}

.prev{
  left:15px;
}

.next{
  right:15px;
}

.carousel-btn:hover{
  background:#7b2cff;
  transform:translateY(-50%) scale(1.08);
}

/* =========================
   CTA BUTTONS
========================= */
.cta-buttons{
  margin-top:40px;
}

.cta .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:14px 32px;

  border-radius:50px;

  background:
    linear-gradient(
      90deg,
      #007bff,
      #8a2be2
    );

  color:#fff;
  text-decoration:none;

  font-weight:600;
  font-size:15px;
}

.cta .btn:hover{
  transform:translateY(-4px);

  box-shadow:
    0 10px 25px rgba(138,43,226,.35);
}

/* =========================
   TABLETS
========================= */
@media screen and (max-width:992px){

  .cta{
    padding:80px 20px;
  }

  .cta h2{
    font-size:2.4rem;
  }

  .cta p{
    font-size:1rem;
  }

  .carousel{
    border-radius:20px;
  }

  .slide img{
    max-height:500px;
  }

}

/* =========================
   MOBILE
========================= */
@media screen and (max-width:768px){

  .cta{
    padding:70px 15px;
  }

  .cta-tag{
    font-size:12px;
    padding:7px 14px;
  }

  .cta h2{
    font-size:2rem;
  }

  .cta p{
    font-size:.95rem;
    line-height:1.7;
  }

  .carousel{
    margin-top:40px;
    border-radius:16px;
  }

  .slide{
    padding:12px;
  }

  .slide img{
    max-height:380px;
    border-radius:12px;
  }

  .carousel-btn{
    width:42px;
    height:42px;
    font-size:16px;
  }

  .cta .btn{
    width:100%;
    max-width:320px;
  }

}

/* =========================
   SMALL MOBILE
========================= */
@media screen and (max-width:576px){

  .cta h2{
    font-size:1.7rem;
  }

  .cta p{
    font-size:.9rem;
  }

  .carousel{
    border-radius:14px;
  }

  .slide img{
    max-height:300px;
  }

  .carousel-btn{
    width:36px;
    height:36px;
    font-size:14px;
  }

}

/* =========================
   EXTRA SMALL
========================= */
@media screen and (max-width:400px){

  .cta h2{
    font-size:1.5rem;
  }

  .slide img{
    max-height:240px;
  }

}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
}

button {
  padding: 10px;
  background: #00c2ff;
  color: #fff;
  border: none;
}

/* FOOTER GENERAL */
.footer {
  background: #0a0a0a;
  color: #fff;
  padding-top: 60px;
}

/* CONTENEDOR */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 40px;
}

/*=====================================================
      PLANES ESTÁTICOS
======================================================*/

.carousel-container{

    width:100%;

    overflow:visible;

    margin:30px 0 60px;

}

.carousel-track{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

    width:100%;

    animation:none;

    transform:none;

}

.carousel-track.reverse{

    animation:none;

    transform:none;

}

.carousel-track:hover{

    animation:none;

}

/* COLUMNAS */
.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #aaa;
}

/* LINKS */
.footer-col a {
  color: #aaa;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

/* LOGO */
.logo-text {
  font-size: 1.8rem;
  font-weight: 600;
}

/* REDES */
.socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: 50%;
  transition: 0.3s;
}

.socials a i {
  font-size: 1.2rem;
}

/* COLORES POR RED */
.fa-whatsapp { color: #25D366; }
.fa-instagram { color: #E4405F; }
.fa-youtube { color: #FF0000; }
.fa-facebook { color: #1877F2; }

/* HOVER */
.socials a:hover {
  transform: translateY(-5px);
  background: #222;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #666;
}

/* ASESOR VIRTUAL */

/* BOTÓN */
.taboti-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #7b2cff;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* CHAT */
.taboti-chat {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* HEADER */
.taboti-header {
  background: #7b2cff;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.taboti-title span {
  font-size: 0.7rem;
  display: block;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* MENSAJES */
.taboti-messages {
  padding: 10px;
  height: 220px;
  overflow-y: auto;
}

.bot {
  background: #f1f1f1;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 8px;
}

/* INPUT */
.taboti-input {
  display: flex;
  border-top: 1px solid #eee;
}

.taboti-input input {
  flex: 1;
  border: none;
  padding: 10px;
}

.taboti-input button {
  border: none;
  background: #7b2cff;
  color: #fff;
  padding: 10px;
}

/* OPCIONES */
.taboti-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 10px;
}

.taboti-options button {
  flex: 1;
  padding: 6px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 5px;
}

/* MEDIA QUERIES */

/* =========================
   📲 TABLET (≤ 1024px)
========================= */
@media (max-width: 1024px) {

  .header {
    padding: 15px 20px;
  }

  section {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .footer-container {
    gap: 30px;
  }
}


/* =========================
   📱 MOBILE (≤ 768px)
========================= */
@media (max-width: 768px) {

  /* HEADER */
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header nav {
    margin-top: 10px;
  }

  .header a {
    margin: 0 10px;
    font-size: 0.9rem;
  }

  /* HERO */
  .hero {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* GRID */
  .grid {
    grid-template-columns: 1fr;
  }

  .destacado {
    transform: scale(1); /* evita zoom raro en móvil */
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }

  /* TABOTI */
  .taboti-chat {
    width: 90%;
    left: 5%;
    bottom: 80px;
  }

}


/* =========================
   📱 MOBILE PEQUEÑO (≤ 480px)
========================= */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 50px 15px;
  }

  /* FOOTER */
  .logo-text {
    font-size: 1.5rem;
  }

  /* TABOTI */
  .taboti-btn {
    bottom: 15px;
    left: 15px;
    padding: 12px;
  }

}

/* CARRUSEL */

/* CTA */
.cta {
  background: linear-gradient(135deg, #979191, #504e4e);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

/* TÍTULO */
.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* CARRUSEL */
/* =========================
   CARRUSEL
========================= */
.carousel{
  position:relative;
  width:100%;
  max-width:1200px;
  margin:40px auto;
  overflow:hidden;
  border-radius:20px;
  background:#050b18;
}

/* TRACK */
.carousel-track{
  display:flex;
  transition:transform .6s ease-in-out;
}

/* SLIDE */
.slide{
  min-width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

/* IMAGEN */
.slide img{
  width:100%;
  height:auto;

  max-height:650px;

  object-fit:contain;
  border-radius:18px;

  display:block;
}

/* BOTONES */
.prev,
.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:45px;
  height:45px;

  border:none;
  border-radius:50%;

  background:rgba(0,0,0,.5);
  color:#fff;

  font-size:20px;
  cursor:pointer;

  z-index:10;
}

.prev{
  left:15px;
}

.next{
  right:15px;
}

.prev:hover,
.next:hover{
  background:#7b2cff;
  transform:translateY(-50%) scale(1.08);
}

/* =========================
   TABLETS
========================= */
@media screen and (max-width:992px){

  .carousel{
    border-radius:16px;
  }

  .slide{
    padding:15px;
  }

  .slide img{
    max-height:500px;
  }

}

/* =========================
   MOBILE
========================= */
@media screen and (max-width:768px){

  .carousel{
    border-radius:14px;
  }

  .slide{
    padding:10px;
  }

  .slide img{
    max-height:400px;
    border-radius:12px;
  }

  .prev,
  .next{
    width:40px;
    height:40px;
    font-size:16px;
  }

}

/* =========================
   SMALL MOBILE
========================= */
@media screen and (max-width:576px){

  .slide img{
    max-height:320px;
  }

  .prev,
  .next{
    width:35px;
    height:35px;
    font-size:14px;
  }

}

/* =========================
   EXTRA SMALL
========================= */
@media screen and (max-width:400px){

  .slide img{
    max-height:260px;
  }

}

/* SLIDES */
.slide {
  min-width: 100%;
  position: relative;
}

/* IMÁGENES */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* mantiene proporción */
  object-position: center;    /* centra la imagen */
  border-radius: 15px;
}

/* HOVER SUAVE */
.slide:hover img {
  filter: brightness(1);
  transform: scale(1.03);
}

.slide img {
  filter: brightness(0.95); /* antes 0.85 → ahora más limpio */
}

/* BOTONES */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}

/* POSICIÓN */
.prev { left: 15px; }
.next { right: 15px; }

/* HOVER */
.prev:hover, .next:hover {
  background: #7b2cff;
  transform: translateY(-50%) scale(1.1);
}

/* BOTÓN CTA */
.cta .btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: linear-gradient(45deg, #7b2cff, #00c2ff);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER CTA */
.cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(123,44,255,0.5);
}

@media (max-width: 768px) {

  .cta {
    padding: 70px 15px;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .slide img {
    height: 250px;
  }

  .prev, .next {
    padding: 8px;
    font-size: 1rem;
  }

}

@media (max-width: 768px) {

  .carousel {
    height: 250px;
  }

}

.skip-link{
  position:absolute;
  left:-9999px;
}

.skip-link:focus{
  left:20px;
  top:20px;
  background:#fff;
  color:#000;
  padding:10px;
  z-index:9999;
}

a:focus,
button:focus,
input:focus,
textarea:focus{
  outline:3px solid #00d4ff;
  outline-offset:3px;
}

html{
  scroll-behavior:smooth;
}

/*==================================================
            PLANES - INNOVENT SERVICIOS TI
==================================================*/

.planes{

    padding:100px 6%;

    background:
    linear-gradient(
        180deg,
        #020817 0%,
        #07182d 50%,
        #020817 100%
    );

    color:#fff;

    position:relative;

    overflow:hidden;

}

.planes::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(0,212,255,.08),
    transparent 45%);

    pointer-events:none;

}

/*==============================
        TITULOS
==============================*/

.planes h2{

    font-size:clamp(2rem,5vw,3rem);

    text-align:center;

    margin-bottom:15px;

    font-weight:800;

    color:#fff;

}

.sub{

    text-align:center;

    color:#9fb8d7;

    font-size:1.1rem;

    margin-bottom:45px;

}

/*==============================
      CONTENEDOR
==============================*/

.carousel-container{

    margin:35px auto 70px;

    width:100%;

}

.carousel-track{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

/*==============================
      TARJETAS
==============================*/

.plan{

    position:relative;

    padding:35px;

    border-radius:22px;

    background:

    rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:

    1px solid rgba(255,255,255,.08);

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

    overflow:hidden;

}

.plan:hover{

    transform:
    translateY(-10px);

    border-color:#00d4ff;

    box-shadow:

    0 20px 45px rgba(0,212,255,.25);

}

/*==============================
      DESTACADO
==============================*/

.destacado{

    border:2px solid #00d4ff;

    background:

    linear-gradient(

    180deg,

    rgba(0,212,255,.12),

    rgba(255,255,255,.05)

    );

}

.destacado:hover{

    transform:

    translateY(-12px)

    scale(1.02);

}

/*==============================
        BADGE
==============================*/

.badge{

    position:absolute;

    top:18px;

    right:18px;

    padding:8px 16px;

    border-radius:30px;

    font-size:.75rem;

    font-weight:700;

    background:

    linear-gradient(
        90deg,
        #00d4ff,
        #0077ff
    );

    color:#fff;

    box-shadow:

    0 10px 25px rgba(0,212,255,.25);

}

/*==============================
        TITULOS CARD
==============================*/

.plan h3{

    font-size:1.6rem;

    margin-bottom:12px;

    color:#fff;

}

.plan h4{

    color:#00d4ff;

    font-size:1.4rem;

    margin-bottom:25px;

    font-weight:700;

}

/*==============================
        LISTA
==============================*/

.plan ul{

    list-style:none;

    padding:0;

    margin:0;

}

.plan li{

    display:flex;

    align-items:center;

    gap:12px;

    margin:15px 0;

    color:#d7e7ff;

    line-height:1.6;

}

.plan li::before{

    content:"✔";

    color:#00d4ff;

    font-weight:bold;

}

/*==============================
        NOTA
==============================*/

.nota{

    text-align:center;

    color:#ffd166;

    font-weight:700;

    margin-top:20px;

    margin-bottom:40px;

    letter-spacing:.5px;

}

/*==============================
        BOTON
==============================*/

.btn{

    display:flex;

    justify-content:center;

    align-items:center;

    width:230px;

    margin:auto;

    padding:16px 28px;

    border-radius:50px;

    background:

    linear-gradient(

    90deg,

    #0077ff,

    #00d4ff

    );

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.35s ease;

    box-shadow:

    0 12px 30px rgba(0,212,255,.25);

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:

    0 18px 40px rgba(0,212,255,.40);

}

/*==============================
        EFECTO SUPERIOR
==============================*/

.plan::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:

    linear-gradient(
        90deg,
        #00d4ff,
        #0077ff
    );

}

/*==============================
      ACCESIBILIDAD
==============================*/

.btn:focus-visible,

.plan:focus-within{

    outline:3px solid #00d4ff;

    outline-offset:5px;

}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:1200px){

    .carousel-track{

        grid-template-columns:

        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .planes{

        padding:70px 25px;

    }

    .carousel-track{

        grid-template-columns:1fr;

    }

    .plan{

        padding:28px;

    }

    .btn{

        width:100%;

    }

}

@media(max-width:480px){

    .planes h2{

        font-size:2rem;

    }

    .sub{

        font-size:1rem;

    }

    .plan h3{

        font-size:1.4rem;

    }

    .plan h4{

        font-size:1.2rem;

    }

}

