/* ======= RESET ======= */
/* -------------------------------------------
   RESET Y CONFIGURACIÓN BASE
------------------------------------------- */

body {
    margin: 0 !important;
    padding-top: 0; /* ← quita este espacio en móvil si no es necesario */
    background-color: transparent !important;
}



/* -------------------------------------------
   MEGA MENÚ
------------------------------------------- */

.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background-color: white;
    display: none;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Quita si no quieres sombra */
    border-top: none !important; /* elimina línea negra superior si existiera */
    z-index: 1000;
}




.models-container {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin: 0;             /* ← elimina el centrado */
    padding: 0 40px 0 0;   /* ← puedes ajustar el padding derecho si quieres más espacio al final */
    list-style: none;
}


/* Fuerza el fondo blanco en menú abierto */
.force-white {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.force-white .nav-link-white,
.force-white .zeekr-logo {
    color: #333 !important;
    filter: none !important;
}

.force-white .zeekr-logo {
    fill: #333 !important;
}


/**Zeekr X**/
.intro {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.intro-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centrado vertical */
    align-items: center;     /* centrado horizontal */
    padding: 2rem;
    text-align: center;
}



.intro-top h1 {
    font-size: 5rem;
    font-weight: bold;
    margin: 0;
}

.intro-top p {
    font-size: 2rem;
    margin-top: 1rem;
}

.intro-bottom {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.intro-specs {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.intro-specs div {
    font-size: 1.25rem;
}

.intro-specs strong {
    font-size: 2rem;
}



.btn-white, .btn-mamey {
    padding: 1rem 2rem;
    border-radius: 4rem;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-white {
    background: white;
    color: black;
}

.btn-mamey {
    background: #D55B37;
    color: white;
}


.quote {
  background-color: #F1EFEB;
  color: #070707;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quote-content {
   max-width: 1500px;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.2;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}



.cs {
  padding: 60px 20px;
  background-color: #f1efeb;
  color: #070707;
  font-family: 'Helvetica Neue', sans-serif;
}

.cs-content {
  max-width: 1200px;
  margin: auto;
}

.cs-content-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.category {
  text-align: center;
  margin-bottom: 20px;
}

.category-item {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  font-size: 16px;
}

.category-item.actived {
  border-color: #070707;
  font-weight: bold;
}

.image img {
  width: 100%;
  max-width: 900px;
  margin: auto;
  display: block;
  border-radius: 12px;
}

.color {
  text-align: center;
  margin-top: 30px;
}

.color-name {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.color-selector {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.color-selector-item {
  cursor: pointer;
}

/* Transición de la imagen */
.image img {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.image img.fade-out {
  opacity: 0;
}


.category-item {
  font-weight: bold;
  cursor: pointer;
  margin-right: 20px;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background-color 0.3s;
}

.category-item.actived {
  background-color: #000;
  color: white;
}

.color-selector-item {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.color-selector-item:hover {
  transform: scale(1.1);
}


.color-note {
  display: block;
  font-size: 0.9em;
  color: #888;
  margin-top: 4px;
}


@media (max-width: 768px) {


  /* GENERAL NAVBAR */
  .navbar {
    background-color: transparent;
    border: none;
    transition: background-color 0.3s, color 0.3s;
  }

  .zeekr-nav {
    background-color: transparent !important;
    transition: background-color 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  }

  .zeekr-nav.scrolled,
  .zeekr-nav.open {
    background-color: white !important;
  }

  /* TOGGLE / HAMBURGUER */

  .zeekr-nav.scrolled .icon-bar,
  .zeekr-nav.open .icon-bar {
    background-color: black;
  }

.navbar-collapse {
  display: none !important;
}

.navbar-collapse.open {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1;
  padding: 1em 0;
  max-height: 90vh; /* máximo visible sin hacer overflow */
  overflow-y: auto; /* agrega scroll si el contenido excede */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* para una sombra sutil */
}



  .navbar-collapse.open ul.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .navbar-collapse.open ul.nav li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  /* LINKS Y COLORES */
  .nav-link-white {
    color: white;
    font-size: 1.2rem;
  }

  .zeekr-nav.scrolled .nav-link-white,
  .zeekr-nav.open .nav-link-white {
    color: black !important;
  }

 .navbar-header {
  background-color: transparent !important;
}

.navbar-brand-center {
  padding: 0 !important;
  height: auto !important;
  background: transparent !important;
}

.navbar-toggle {
  background: transparent !important;
  margin: 0 !important;
  padding: 0.5rem !important;
  height: auto !important;
}

.icon-bar {
  background-color: white; /* o negro si el fondo ya es blanco */
}



  


  /* DROPDOWN Y MODELOS */
  .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .dropdown-menu li {
    list-style: none;
    padding: 10px 20px;
  }

  .dropdown-menu li a {
    display: block;
    color: black;
    text-decoration: none;
  }

  .dropdown-menu li a:hover {
    background-color: #f0f0f0;
  }

  .models-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 15px;
  }

  .model-image {
    display: none;
  }

  .model-name {
    font-size: 16px;
    padding: 8px 0;
    display: block;
    color: black;
  }

  /* RESET */
  body {
    margin: 0;
    padding: 0;
  }

  html, body {
    background-color: transparent !important;
  }


  .navbar-brand-center {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%, -50%    );
    z-index: 10;
  }
  
  
.navbar-collapse.open .navbar-left,
.navbar-collapse.open .navbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1rem;
  margin: 0;
}

.navbar-collapse.open ul.nav li {
  width: 100%;
  text-align: left;
  padding: 8px 0;
  margin: 0;
  border-bottom: 1px solid #eee; /* opcional para separar visualmente */
}

 .nav-flex-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px; /* ajusta si es necesario */
}

.navbar-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.navbar-brand-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

  .mega-menu {
    display: none !important;
  }

  .mobile-submenu {
    display: block !important;
  }

  .mobile-submenu li a {
    color: white;
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

  .dropdown-toggle {
    pointer-events: none; /* evita que el enlace "Modelos" sea clickeable */
  }
   .mobile-submenu {
    display: block !important;
  }

  .mobile-submenu li a {
    color: #000 !important; /* letras negras */
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background-color: #fff; /* opcional: fondo blanco para mayor contraste */
  }

  
  .intro-zeekr001 .intro-text p {
  font-size: 2.5rem !important;
  line-height: 0.8 !important;
  font-weight: 400 !important;
  top: 50%;
}


.intro-zeekr001 .intro-text .subtext {
  margin-top: 1rem;
  font-size: 1rem !important;
  color: #FFF4E2;
  font-weight: 300;
}

.intro-zeekr001 .intro-text .subtext2{
 
  font-size: 1rem !important;
  color: #FFF4E2;
  font-weight: 300;
}

.intro-text {
    top: 25%; /* Baja un poco el texto en móviles */
    padding: 0 2rem;
  }

  .intro-text h2 {
    font-size: 1.3rem !important;
    line-height: 1.3;
  }

  .intro-text p {
    font-size: 2.5rem !important;
  }
  
  .intro-model-text {
    top: 20%;
    padding: 0 1.5rem;
  }

  .intro-model-text h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .intro-model-text h3 {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }

  .intro-model-text .model-description {
    font-size: 1rem;
    margin-top: 1rem;
  }



  

  
  .quote-content {
   max-width: 1500px;
  font-size: 1.8rem !important;
  font-weight: 500;
  line-height: 1.2;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

  /*PROBANDO*/

  
 /*CIERRE PROBANDO*/


}






/* Centrar el logo siempre */
.navbar-brand-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 10;
  pointer-events: auto;
}

/* Ajuste especial para asegurarse que el logo se mantenga centrado en todas resoluciones */
.navbar-container {
  position: relative;
  
}

/* Asegura que los menús laterales no empujen el logo */
.navbar-left,
.navbar-right {
  width: 50%;
  display: flex;
  align-items: center;
}




/* General */
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo centrado */
.navbar-brand-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Menús */
.navbar-collapse {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}

/* Listas de menú */
.zeekr-left-menu,
.zeekr-right-menu {
  display: flex;
  align-items: center;
}

.zeekr-right-menu {
  justify-content: flex-end;
  margin-left: auto;
}
@media (min-width: 769px) {
  .navbar-left,
  .navbar-right {
    width: 40%; /* más espacio para el logo */
  }

  .zeekr-right-menu {
    justify-content: flex-end;
  }
}

/* Estilos por defecto (escritorio) para el mega menú */
.dropdown-menu.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: white;
  padding: 20px;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
  display: none; /* solo se muestra al hacer hover */
  z-index: 1000;
}

.mega-dropdown:hover .mega-menu {
  display: block;
}


/* Submenú oculto por defecto */
.mobile-submenu {
  display: none;
  padding-left: 1.5rem;
  background: transparent;
  list-style: none;
}

.mobile-submenu li {
  margin-top: 0.2rem 0;
  padding: 0.3rem 0;
}

  .mobile-submenu a {
    font-size: 0.9rem;
}

.mobile-submenu li a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  display: block;
}





/*INDEX*/

.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

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

.intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34,40,50,0.35); /* azul profundo, semitransparente */
  z-index: 1;
}

.intro-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  padding: 1rem;
}

.intro-text p {
  color: white;
  top: 15px;
  font-size: 4.5rem;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
  max-width: 600px;
}

.intro-text span {
  display: block;
}




/* Tipografía y layout base ya deben estar definidos (Inter, .intro, etc.) */

.intro-zeekr001 .intro-text p {
  font-size: 5.5rem;
  line-height: 0.5;
  font-weight: 400;
  top: 50%;
}

.intro-zeekr001 .intro-text .subtext {
  margin-top: 4rem;
  font-size: 1.8rem;
  color: #FFF4E2;
  font-weight: 300;
}

.intro-zeekr001 .intro-text .subtext2{
 
  font-size: 3rem !important;
  color: #FFF4E2;
  font-weight: 300;
}



.btn-white,
.btn-mamey {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: 300;
  text-decoration: none;
  text-align: center;
  min-width: 200px;
  transition: background 0.3s ease;
}

.btn-white {
  background: transparent;
  border: 2px solid #FFF4E2;
  color: #FFF4E2;
}

.btn-white:hover {
  background: #FFF4E2;
  color: #00131f;
}

.btn-mamey {
  background: #FFFFFF; /* tono mamey */
  border: none;
  color: black;
}

.btn-mamey:hover {
  background: #000000;
  color:white;
}

/*ZEEKR001*/

.exterior-features {
  text-align: center;
  padding: 40px 0;
  background-color: #f9f9f9;
  position: relative;
}

.exterior-features h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.carousel-wrapper {
  width: 1200px;
  height: 400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* controla la separación constante */
  height: 100%;
}

.carousel-img {
  height: 600px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}


.carousel-img.center {
  width: 1000px;
  z-index: 2;
}

.carousel-img.side {
  width: 500px;
  opacity: 0.5;
  cursor: pointer;
  z-index: 1;
}
/*
.carousel-img.left {
  left: 100px; 
}*/


/*.carousel-img.right {
  right: 100px; /* distancia fija desde el borde derecho 
}*/

/*PROBANDO*/
.carousel-caption {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 20px;
  text-align: left;
  font-family: 'Helvetica Neue', 'Segoe UI', sans-serif;
}

.carousel-caption h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
  text-align: center; /* Alinea el título al centro */
}

.carousel-text {
  max-width: 800px;
  margin: 0 auto 0;
  padding: 0 -1000px;
  text-align: justify; /* Justifica el texto del párrafo */
  font-family: 'Helvetica Neue', 'Segoe UI', sans-serif;
}

.carousel-text p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #444;
  margin: 0 auto;
}




/*CIERRE PROBANDO*/

@media (max-width: 1024px) {
  .carousel-img.center {
    width: 80vw;
    height: auto;
  }

  .carousel-img.side {
    width: 40vw;
    height: auto;
    top: 0;
  }

  .carousel-img.left {
    transform: translateX(-50px);
  }

  .carousel-img.right {
    transform: translateX(50px);
  }

  .carousel-wrapper {
    height: auto;
  }
}

@media (max-width: 768px) {
  .carousel-img {
    width: 90vw;
    height: auto;
    opacity: 1;
    transform: none;
    cursor: default;
  }

  .carousel-img.side {
    display: none;
  }

  .carousel-img.center {
    width: 90vw;
    height: auto;
  }

  .carousel-text {
    padding: 0 15px;
  }

  .carousel-text h3 {
    font-size: 1.4rem;
    text-align: center;
  }

  .carousel-text p {
    font-size: 1rem;
    text-align: center;
  }
}


@media (max-width: 480px) {
  .carousel-text h3 {
    font-size: 1.2rem;
  }

  .carousel-text p {
    font-size: 0.95rem;
  }
}


/*Nosotros*/


.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

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

.intro-text-nosotros {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 1rem;
}

.intro-text-nosotros h1 {
  font-size: 8rem;
  margin-bottom: 3rem;
}

.intro-text-nosotros span {
  font-size: 2.5rem;
  line-height: 1.5;
}


.zeekr-significado {
  padding: 10rem 1rem;
  text-align: center;
  background-color: #fff;
}

.zeekr-logo-wrapper {
  margin-bottom: 5rem;
}

.zeekr-logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.zeekr-meaning {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.zeekr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 2rem;
}

.zeekr-item::before {
  content: "";
  width: 500px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}


.zeekr-letter {
  font-size: 4rem;
 
  color: #000;
  margin-bottom: 0.5rem;
}

.zeekr-description {
  font-size: 1.5rem;
  color: #555;
  max-width: 500px;
  margin-left:2rem;
}

@media (min-width: 768px) {
  .zeekr-meaning {
    flex-direction: row;
    justify-content: center;
  }

  .zeekr-item {
    flex: 1;
    padding: 0 1rem;
  }
}


.nosotros-carousel {
  padding: 6rem 20rem;
  background-color: #fff;
  text-align: center;
}

.carousel-header h2 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
}

.carousel-header p {
  font-size: 1.6rem;
  color: #666;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.nosotros-swiper .swiper-slide {
  background: #f9f9f9;
  border-radius: 1rem;
  padding: 2rem;
  text-align: LEFT;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nosotros-swiper .swiper-slide img {
  width: 100%;
  
  margin-bottom: 1rem;
}

.nosotros-swiper .swiper-slide h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.nosotros-swiper .swiper-slide p {
  margin-TOP: 1.5rem;
  font-size: 1.5rem;
  color: #555;
}


.cover-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background-color: #ebe8e3;
  overflow: hidden;
}

.cover-image img {
  width: 95%;
  height: 95%;
  object-fit: cover;
  display: block;
  MARGIN: 30PX;
}

.cover-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cover-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 4rem 2rem;
  text-align: center;
}

.cover-text h2 {
  font-size: 10rem;
  color: rgb(255, 244, 226);
  margin-bottom: 1rem;
  white-space: pre-wrap;
}

.cover-text p {
  font-size: 1.6rem;
  color: rgb(255, 253, 253);
  max-width: 1200px;
  margin: 0 auto;
}

/*PROBANDO*/
.brief-blog-section {
  background-color: #fefbfb;
  padding: 6rem 2rem;
  text-align: center;
}

.brief-blog-title {
  font-size: 5rem;
  font-weight: 300;
 
  color: #030303;
  text-align: center; /* <<< esto centra el título */
  max-width: 800px;
  margin: 4rem auto 4rem; /* <<< centrado horizontal con margen inferior */

}

.brief-blog-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #020202;
  text-align: center; /* <<< esto centra el párrafo */
  margin: 2rem auto 0;
  max-width: 900px;
}


.brief-blog-image picture img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: 2200px;
  border-radius: 0.5rem;
}






/*CIERRE PROBANDO*/


/* RESPONSIVE: Sección Nosotros */
@media (max-width: 1024px) {
  .intro-text-nosotros h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
  }

  .intro-text-nosotros span {
    font-size: 2rem;
  }

  .carousel-header h2 {
    font-size: 3rem;
  }

  .carousel-header p {
    font-size: 1.4rem;
    padding: 0 1rem;
  }

  .nosotros-carousel {
    padding: 6rem 4rem;
  }

  .zeekr-letter {
    font-size: 3rem;
  }

  .zeekr-description {
    font-size: 1.3rem;
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .intro-text-nosotros h1 {
    font-size: 3.5rem;
  }

  .intro-text-nosotros span {
    font-size: 1.6rem;
  }

  .zeekr-meaning {
    flex-direction: column;
  }

  .zeekr-item::before {
    width: 200px;
  }

  .carousel-header h2 {
    font-size: 2.5rem;
  }

  .carousel-header p {
    font-size: 1.2rem;
  }

  .nosotros-carousel {
    padding: 4rem 2rem;
  }

  .cover-text h2 {
    font-size: 5rem;
  }

  .cover-text p {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .brief-blog-title {
    font-size: 2.5rem;
  }

  .brief-blog-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .intro-text-nosotros h1 {
    font-size: 2.5rem;
  }

  .intro-text-nosotros span {
    font-size: 1.2rem;
  }

  .zeekr-letter {
    font-size: 2.5rem;
  }

  .zeekr-description {
    font-size: 1.1rem;
  }

  .cover-text h2 {
    font-size: 3rem;
  }

  .brief-blog-title {
    font-size: 2rem;
    margin: 2rem auto;
  }

  .brief-blog-description {
    font-size: 0.95rem;
  }
}

/*ZEEKR001*/
.cover-zeekr001-centered {
  position: relative;
  margin: 5rem;
  overflow: hidden;
  border-radius: 12px;
}

.cover-zeekr001-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.cover-zeekr001-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF4E2;
  text-align: center;
  padding: 1rem;
  width: 100%;
}

.cover-zeekr001-text .main-text {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
  .cover-zeekr001-centered {
    margin: 3rem;
  }

  .cover-zeekr001-text .main-text {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .cover-zeekr001-centered {
    margin: 2rem;
  }

  .cover-zeekr001-text .main-text {
    font-size: 1.5rem;
  }
}




/*PRESTACIONES-PURAS*/

.performance {
  background-color: #121212; /* Gris oscuro casi negro */
  padding: 60px 20px;
  color: white;
  text-align: center;
  margin-top:80px;
}

.performance-title {
  font-size: 7rem;
  color: white;
  margin-bottom: 80px;
  margin-top:80px;
}

.performance-details {
  margin: 0 auto 50px auto;
  max-width: 1600px;
}

.performance-details-item {
  font-size: 6.5rem;
  color: #FF4B33; /* Mamey */
  margin: 10px 0;
}

.performance-details hr {
  border: none;
  border-top: 3px solid #555;
  margin: 10px auto;
  width: 90%;
  border-color: #FF4B33; /* Mamey */
}

.performance-disclaimer {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 1200px;
  margin: -30px auto 60px auto;
  text-align: center;
}

.performance-slides {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.performance-slide {
  max-width: 650px;
  text-align: left;
}

.performance-slide-image img {
  width: 100%;
  
}

.performance-slide-title {
  margin-top: 15px;
  font-size: 4rem;
  color: white;
  font-weight: bold;
}

.performance-slide-description {
  font-size: 2rem;
  margin-top: 8px;
  color: white;
}

@media (max-width: 768px) {
.performance-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 80px;
  margin-top:80px;
}

.performance-details {
  margin: 0 auto 50px auto;
  max-width: 1600px;
}

.performance-details-item {
  font-size: 2.5rem;
  color: #FF4B33; /* Mamey */
  margin: 10px 0;
}

.performance-details hr {
  border: none;
  border-top: 2px solid #555;
  margin: 10px auto;
  width: 90%;
  border-color: #FF4B33; /* Mamey */
}

.performance-disclaimer {
  font-size: 1.05rem;
  color: #ccc;
  max-width: 1200px;
  margin: -30px auto 60px auto;
  text-align: center;
}
.performance-slide {
  max-width: 250px;
  text-align: left;
}
.performance-slide-title {
  margin-top: 5px;
  font-size: 2rem;
  color: white;
  font-weight: bold;
}

.performance-slide-description {
  font-size: 1rem;
  margin-top: 4px;
  color: white;
}
}

/*Probando*/
.comparison-section {
  background-color: #EEEEEE; /* gris claro cálido */
  padding: 4rem 2rem;
  text-align: center;
}

.comparison-header .tagline {
  font-size: 3.5rem;
  color: #FF4B33;
  margin-bottom: 1rem;
}

.comparison-header .main-title {
  font-size: 6.5rem;
  color: #000;
  margin-bottom: 4rem;
  max-width: 800px; /* Ajusta este valor según tu diseño */
  margin-left: auto;
  margin-right: auto;
}


.comparison-tables {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.comparison-column {
  flex: 1 1 400px;
  max-width: 600px;
}

.model-name-ft {
  font-size: 3.5rem;
  color: #000;
  border-bottom: 2px solid #000;
  padding-bottom: 1rem;
  padding-right: 10rem;
  margin-bottom: 2rem;
  text-align: right;
  
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.7rem;
  color: #474B4E;
}

.comparison-table td {
  padding: 1.5rem 2rem;
  text-align: center;
  vertical-align: top;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: bold;
  width: 60%;
}

.comparison-table td:last-child {
  text-align: right;
  width: 40%;
}

@media (max-width: 768px) {
  .comparison-tables {
    flex-direction: column;
    align-items: center;
  }

  .comparison-column {
    max-width: 90%;
  }
  .comparison-header .main-title {
  font-size: 3.5rem;
  color: #000;
  margin-bottom: 4rem;
  max-width: 800px; /* Ajusta este valor según tu diseño */
  margin-left: auto;
  margin-right: auto;
}
.comparison-section {
  background-color: #EEEEEE; /* gris claro cálido */
  padding: 4rem 2rem;
  text-align: center;
}

.comparison-header .tagline {
  font-size: 2rem;
  color: #FF4B33;
  margin-bottom: 1rem;
}

.model-name-ft {
  font-size: 2.5rem;
  color: #000;
  border-bottom: 2px solid #000;
  padding-bottom: 1rem;
  padding-right: 3rem;
  margin-bottom: 1rem;
  text-align: right;
  
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  color: #474B4E;
}


}

/*probando*/

.dimensions-title {
  font-size: 4rem;
  color: #000;
  margin: 10rem 0 10rem;
  text-align: center;
}

.dimensions-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5rem;
}

.dimensions-left {
  flex: 1 1 400px;
  max-width: 700px;
}

.dimensions-line {
  border-bottom: 2px solid #000;
  margin-bottom: 2rem;
}

.dimensions-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 2rem;
  color: #333;
}

.dimensions-table td {
  padding: 1.2rem;
  vertical-align: top;
}

.dimensions-table td:first-child {
  font-weight: bold;
  text-align: left;
  width: 60%;
}

.dimensions-table td:last-child {
  text-align: right;
  width: 40%;
}

.circle {
  display: inline-block;
  background-color: #FF4B33;
  color: white;
  border-radius: 50%;
  width: 3.6rem;
  height: 3.6rem;
  line-height: 3.6rem;
  text-align: center;
  font-size: 2.1rem;
  margin-right: 1rem;
}

.dimensions-right {
  flex: 1 1 400px;
  max-width: 800px;
  text-align: center;
}

.dimensions-right img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  /* TITULO */
.dimensions-title {
  font-size: 2.5rem;
  color: #000;
  margin: 6rem 2rem 4rem;
  text-align: center;
}

/* CONTENEDOR FLEXIBLE */
.dimensions-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 0 2rem;
}

/* COLUMNA IZQUIERDA */
.dimensions-left {
  flex: 1 1 100%;
  max-width: 100%;
}

.dimensions-line {
  border-bottom: 2px solid #000;
  margin-bottom: 2rem;
}

/* TABLA */
.dimensions-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  color: #333;
}

.dimensions-table td {
  padding: 1.2rem 0.8rem;
  vertical-align: top;
}

.dimensions-table td:first-child {
  font-weight: bold;
  text-align: left;
  width: 60%;
}

.dimensions-table td:last-child {
  text-align: right;
  width: 40%;
}

/* ICONO CÍRCULO */
.circle {
  display: inline-block;
  background-color: #FF4B33;
  color: white;
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  line-height: 3.2rem;
  text-align: center;
  font-size: 1.8rem;
  margin-right: 0.8rem;
}

/* COLUMNA DERECHA */
.dimensions-right {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
}

.dimensions-right img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

}

.comparison-content-info__download {
  margin-top: 4rem;
  text-align: center;
}

.zk-btn-black {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.zk-btn-black:hover {
  background-color: #fff;
  color:#000;
}

.body5 {
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/*Probando*/
/* Grid de dos columnas dentro del formulario */
/* Grid de dos columnas */
.zp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: rgba(255, 255, 255, 0.25); /* Fondo semitransparente */
  backdrop-filter: blur(10px); /* Blur moderno */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100% !important;
  max-width: 900px !important; /* puedes ajustar */
  margin: 0 auto !important; /* centrarlo */
  
}

/* Campos generales */
.zp-form-field {
  display: flex;
  flex-direction: column;
}

/* Inputs, selects, textareas */
.zp-input,
.zp-select,
.zp-textarea {
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.3s;
  outline: none;
}

.zp-textarea-comentario {
width:200rem;
}

.zp-label {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.zp-input:focus,
.zp-select:focus,
.zp-textarea:focus {
  border-color: #000;
}

.zp-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

/* Comentarios ocupa ambas columnas */
.zp-textarea {
  grid-column: 1/ -1;
  resize: vertical;
}

/* Título y botón también a lo ancho */
.zp-form-title,
.zp-form-action {
  grid-column: 1 / -1;
  text-align: center;
}

.zp-form-action {
  margin-top: 20px;
}

.zp-button {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.zp-button:hover {
  background-color: #333;
}

.zp-button .fa-paper-plane {
  margin-left: 8px;
}
.zp-form-wrapper {

  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.blur-box {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1); /* opcional, para un efecto frosted */
  padding: 40px;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
}


/* Responsive: una columna en pantallas pequeñas */
@media (max-width: 768px) {
  .zp-form-grid {
    grid-template-columns: 1fr;
  }
}


/*cierre probando*/



/* ======= NAVBAR ======= */
/* -------------------------------------------
   NAVBAR GENERAL
------------------------------------------- */

.zeekr-nav {
    background-color: transparent !important;
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px;
    z-index: 1000;
    transition: all 0.4s ease;
    border: none !important;
}

.zeekr-nav.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.navbar-brand-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 24px;
}

.zeekr-logo {
    height: 100%;
    width: auto;
    transition: all 0.3s ease;
}

.zeekr-nav:not(.scrolled) .zeekr-logo {
    fill: white !important;
}

.zeekr-nav.scrolled .zeekr-logo {
    fill: #000 !important;
}

/* Links del navbar */
.navbar-nav > li > a {
    color: #000; /* Eliminar !important */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px !important;
    letter-spacing: 0.3px;
    padding: 26px 15px !important;
    transition: all 0.2s;
}
/* Texto blanco cuando no hay scroll */
.zeekr-nav:not(.scrolled) .navbar-nav > li > a {
    color: white;
}

/* Texto negro al hacer scroll */
.zeekr-nav.scrolled .navbar-nav > li > a {
    color: #000;
}


/* Menús alineados */
.zeekr-left-menu {
   display: flex;
  gap: 20px;
}

.zeekr-right-menu {
  margin-left: auto;
  display: flex;
  gap: 20px; /* espacio entre elementos */
}


/* Logo blanco al inicio */
.zeekr-nav:not(.scrolled) .navbar-brand-center img {
    filter: brightness(0) invert(1) !important;
}

/* Logo negro al hacer scroll */
.zeekr-nav.scrolled .navbar-brand-center img {
    filter: none !important;
}

.navbar-brand-left {
  display: flex;
  align-items: center;
  height: 40px;
  padding-left: 15px;
}

.generic-logo {
  height: 24px;
  transition: all 0.3s ease;
}

.zeekr-nav:not(.scrolled) .generic-logo {
  filter: brightness(0) invert(1); /* Logo blanco */
}

.zeekr-nav.scrolled .generic-logo {
  filter: none; /* Logo oscuro */
}

.generic-menu {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.generic-menu li a {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 26px 15px;
  transition: color 0.3s ease;
}

.zeekr-nav.scrolled .generic-menu li a {
  color: black;
}

/* Dropdown en hover (opcional si no usas Bootstrap JS) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Modo claro para navbar */
.zeekr-nav.light-mode {
  background-color: white !important;
  color: black !important;
  transition: background-color 0.3s ease;
}

/* Enlaces en negro */
.zeekr-nav.light-mode a {
  color: black !important;
}

/* Caret negro */
.zeekr-nav.light-mode .caret {
  border-top-color: black !important;
}

.intro-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


/* -------------------------------------------
   //CIERRE RESPONSIVE NAVBAR//
------------------------------------------- */






/* -------------------------------------------
   INTRO / CONTENIDO DE BIENVENIDA
------------------------------------------- */

.intro-content {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.intro-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: bold;
}

.intro-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.intro-indicator {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.intro-indicator-item {
    text-align: center;
    max-width: 160px;
}

.intro-indicator-item__icon {
    width: 48px;
    margin-bottom: 10px;
}

.intro-indicator-item__label {
    font-size: 20px;
    font-weight: bold;
}

.intro-indicator-item__label span.body6 {
    font-size: 14px;
    font-weight: normal;
}

.intro-indicator-item__description {
    font-size: 14px;
    color: #777;
}



.zk-btn {
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

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

.zk-btn-filled-dark:hover {
    background-color: #333;
}

.zk-btn-highlight {
    background-color: #FFD700;
    color: #000;
}

.zk-btn-highlight:hover {
    background-color: #e6c200;
}
/* Cambiar fondo y texto al hacer hover sobre "Modelos" */
.navbar-nav > li.dropdown:hover > a,
.navbar-nav > li.open > a {
  background-color: white !important;
  color: black !important;
}

/* Cambiar color del caret también */
.navbar-nav > li.dropdown:hover > a .caret,
.navbar-nav > li.open > a .caret {
  border-top-color: black !important;
}

/* Estilo del dropdown */
.dropdown-menu {
  background-color: white;
  color: black;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Estilo de los enlaces dentro del dropdown */
.dropdown-menu li a {
  color: black !important;
  padding: 10px 20px;
  font-weight: 500;
  text-decoration: none;
}

/* Hover sobre los links del dropdown */
.dropdown-menu li a:hover {
  background-color: #f5f5f5;
  color: black;
}



/* ======= CARRUSELES ======= */
/* -------------------------------------------
   CARRUSEL / SLIDER
------------------------------------------- */

.flexslider .slides li {
    position: relative;
}

.stacked-images {
    position: relative;
    z-index: 1;
    margin-top: -80px;
}

.stacked-images img:first-child {
    margin-top: 0;
    padding-top: 80px;
    width: 100%;
    display: block;
}

.slide-background {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.footer.black {
  background-color: #000;
  color: white;
  font-family: 'Montserrat', sans-serif;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo svg {
  width: 80px;
  height: auto;
  fill: white;
}

.footer-links,
.social-links,
.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.legal-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover,
.legal-links a:hover {
  color: #ccc;
}

.social-links {
  flex-direction: row;
  gap: 15px;
}

.social-links a {
  font-size: 18px;
  color: white;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ccc;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: #444;
  margin: 30px 0;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 12px;
  gap: 10px;
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }

  .footer-column {
    align-items: flex-start;
  }

  .footer-legal {
    align-items: center;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
}

.footer, .footer-logo {
  color: white;
}


/* ======= DROPDOWNS ======= */
/* -------------------------------------------
   MENÚ DESPLEGABLE DE MODELOS
------------------------------------------- */

.models-dropdown {
    width: 400px;
    padding: 20px !important;
    background: white !important;
    border: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    display: none;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown:hover .models-dropdown {
    display: block;
}

.model-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: white;
}

.model-image {
    width: 220px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.model-name {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 0;
    color: white;
    font-family: 'Montserrat', sans-serif;
    border-radius: 0 0 8px 8px;
}


.model-image:hover {
    transform: scale(1.05);
}





.model-link:hover {
    transform: translateY(-5px);
}

.model-link:hover .model-image {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}





/* ======= OTROS ======= */
/* -------------------------------------------@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&display=swap');



/*AUTO GENÉRICO*/
.intro {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.intro-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding:15px;
}

.intro-text.simple {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  width: 90%;
}

.intro-text.simple h1 {
  font-size: 5rem;
  margin-bottom: 3rem !important;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.intro-buttons {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem !important;
  flex-wrap: wrap;
  justify-content: center;
}

.intro-auto {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.intro-auto.visible {
  opacity: 1;
  transform: translateY(0);
}

/*CIERRE AUTO GENÉRICO*/


.byd-logo {
  transition: fill 0.3s ease;
  fill: white;
}

.zeekr-nav.scrolled .byd-logo,
.zeekr-nav.light-mode .byd-logo {
  fill: black;
}


/*SONG PRO*/
/*BANNER 1*/
.banner-suv {
  position: relative;
  width: 100%;
  height: 100vh; /* altura del viewport */
  overflow: hidden;
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
}

.banner-suv-container picture,
.banner-suv-container img {
  width: 100%;
  height: 100vh; /* que la imagen también se recorte */
  object-fit: cover; /* recorta manteniendo proporción */
  display: block;
}

/* Título en la parte superior */
.banner-title {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width: 99%;
}

.banner-title h2 {
  font-size: 4.5rem;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Características en la parte inferior */
.banner-stats {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;

  text-align: center;
  width: 100%;
  padding: 1.5rem 2rem; /* un poco más de padding vertical */

  background-color: rgba(0, 0, 0, 0.3); /* fondo negro semitransparente */
  border-radius: 1rem; /* opcional: esquinas redondeadas */
}



.banner-stats h3 {
  font-size: 2.7rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.stat-number {
  font-weight: 2rem;
  color: #00aaff;
}

.stat-label {
  font-weight: 2rem;
  color: #fff;
  font-size: 2.7rem;
}


.banner-stats p {
  font-size: 1.5rem;
  color: #fff;
  max-width: 200px;
  word-wrap: break-word;
  white-space: normal;
  margin: 0 auto;
}

/* Colores completamente blancos */
.banner-stats h3,
.banner-stats p,
.stat-number,
.stat-label {
  color: #fff!important;
}

/* Línea divisoria entre ítems */
.banner-stats li {
  min-width: 140px;
  position: relative;
  padding: 0 1rem;
}

/* Líneas verticales entre elementos */
.banner-stats li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  transform: translateX(50%);
  height: 80%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* Disclaimer debajo de las estadísticas */
.banner-disclaimer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  color: #fff;
  text-align: justify;
  line-height: 1.4;
}

.banner-disclaimer a {
  color: #fff;
}

.banner-stats {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*BANNER 2*/

.feature-image-text {
  position: relative;
  width: 100%;
}
.feature-image-text picture,
.feature-image-text img {
  width: 100%;
  height: auto;
  display: block;
}
.overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 40%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}
.overlay-text h2 {
  font-size: 48px;
  margin-bottom: 10px;
}
.overlay-text p {
  font-size: 22px;
  margin-bottom: 20px;
  max-width: 1400px;
}
.circle-btn {
  background: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
}

.plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
}

.plus-icon::before,
.plus-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: black;
  transition: transform 0.3s ease;
  transform-origin: center;
}

/* horizontal line */
.plus-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* vertical line */
.plus-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.plus-icon.cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.plus-icon.cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.feature-details {
  padding: 90px 400px;
  background: #f7f7f7;
}

.feature-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.feature-img {
  flex: 1 1 35%;
  text-align: center;
}

.feature-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  transition: transform 0.3s ease; /* opcional: suaviza un futuro hover */

}

.feature-text {
  flex: 1 1 60%;
}

.feature-text h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #222;
}
.feature-text p {
  font-size: 1.3rem;
  color: #555;
  max-width:600px;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.feature-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  padding: 0 400px; /* mantiene el padding horizontal */
}

.feature-details.open {
  max-height: 2000px; /* ajusta si el contenido es más grande */
  opacity: 1;
  padding-top: 90px;
  padding-bottom: 90px;
}

/*responsive*/

@media (max-width: 1024px) {
  .feature-details {
    padding: 60px 80px;
  }

  .feature-text h3 {
    font-size: 2.8rem;
  }

  .feature-text p {
    font-size: 1.8rem;
  }

  .feature-img img {
    max-width: 100%;
  }

  .banner-title h2 {
    font-size: 3.5rem;
  }

  .stat-label {
    font-size: 3.2rem;
  }

  .banner-stats h3 {
    font-size: 3rem;
  }

  .banner-stats p {
    font-size: 1.6rem;
  }
  
  .overlay-text h2 {
  font-size: 14px;
  margin-bottom: 10px;
}
.overlay-text p {
  font-size: 6px;
  margin-bottom: 20px;
  max-width: 900px;
}
}

@media (max-width: 768px) { 
      .overlay-text h2 {
  font-size: 18px!important;
  margin-bottom:10px !important;
}
.overlay-text p {
  font-size: 6px;
  margin-bottom: 20px;
  max-width: 900px;
}
    .banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100vw;
}

    
  .banner-title {
    top: 15%;
  }

  .banner-title h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    max-width: 90%; /* Aumenta un poco el ancho máximo */

  }
    
}

@media (max-width: 768px) {
  .banner-suv-container {
    position: relative;
    overflow: hidden;
  }

  .banner-suv-container picture,
  .banner-suv-container img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100vw;
  }

  .banner-title {
    position: absolute;
    top: 12%;
    width: 100%;
    padding: 0 15px;
    text-align: center;
  }

  .banner-title h2 {
    font-size: 2.2rem !important;
    max-width: 90%;
    margin: 0 auto;
  }

  .banner-stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem; /* Menor separación vertical, algo horizontal */
    background: rgba(0, 0, 0, 0.1); /* opcional para legibilidad */
    padding: 1rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    color: white;
    text-align: center;
  }

  .banner-stats li {
    padding: 0.3rem 0;
  }

  .banner-stats h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
  }

  .banner-stats p {
    font-size: 1.1rem !important;
    line-height: 1.2;

  }

  .banner-disclaimer {
    margin-top: 1rem;
    padding: 1rem 15px;
    font-size: 1.1rem;
    text-align: justify;
  }

  .banner-disclaimer a {
    color: #fff;
    text-decoration: underline;
  }
}

@media (max-width: 480px) {
  .banner-title h2 {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 2.2rem;
  }

  .banner-stats h3 {
    font-size: 2rem;
  }

  .banner-stats p {
    font-size: 1.3rem;
  }

  .banner-disclaimer {
    font-size: 1.2rem;
  }

  .circle-btn {
    width: 40px;
    height: 40px;
  }

  .plus-icon {
    width: 20px;
    height: 20px;
  }

  .plus-icon::before,
  .plus-icon::after {
    width: 14px;
    height: 2px;
  }
}
@media (max-width: 768px) {
  .feature-details {
    padding: 40px 20px;
  }

  .feature-row {
    flex-direction: column;
    text-align: center; /* opcional, mejora el aspecto en móvil */
  }

  .feature-text {
    order: 2; /* opcional: asegura que el texto vaya debajo si necesitas más control */
  }

  .feature-img {
    order: 1;
  }
  .feature-text h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}
.feature-text p {
  font-size: 1.4rem;
  color: #555;
  max-width:600px;
}
}



/*CIERRE SONG PRO*/


/*formularios*/

.zp-form-image {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  margin-bottom: 30px;
}
.zp-form-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/*CIERRE formularios*/




/*NOSOTROS*/

/* ===== SECCIÓN 1: ACERCA DE NOSOTROS ===== */
.image-video {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa toda la altura de la pantalla */
    overflow: hidden;
}

.image-video .video-wrap picture,
.image-video .video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-video .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Texto al frente y arriba */
.image-video .container {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.image-video .title {
    margin-top:150px;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;

}

.image-video .detail {
    font-size: 2.1rem;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.3); /* opcional para contraste */
    padding: 5rem;
    border-radius: 8px;
}

/* ======= Responsive ======= */
@media (max-width: 991px) {
    .image-video .title {
        font-size: 1.8rem;
    }

    .image-video .detail {
        font-size: 1rem;
        padding: 0.8rem;
    }
}
/* Lista de ítems de características */
.image-video .list {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.image-video .item {
    background-color: rgba(0, 0, 0, 0.5); /* mejora contraste con la imagen */
    padding: 2rem;
    border-radius: 8px;
    color: white;
}

.image-video .item-title {
    font-weight: bold;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.image-video .item-text {
    font-size: 1.4rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .image-video .list {
        gap: 0.8rem;
    }

    .image-video .item-title {
        font-size: 1rem;
    }

    .image-video .item-text {
        font-size: 0.95rem;
    }
}

.image-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.image-section picture,
.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-section .content {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.image-section .title {
  font-size: 2.5rem;
  font-weight: bold;
}

/* Lista sin fondo oscuro y horizontal en desktop */
.with-horizontal-list .list-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 1.5rem 0;
}

.with-horizontal-list .list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: white;
  gap: 1rem;
  border-top: 2px solid white;
}

.with-horizontal-list .item {
  flex: 1 1 30%;
  border-right: 1px solid white;
  padding: 0 1rem;
  text-align: center;
}

.with-horizontal-list .item:last-child {
  border-right: none;
}

.with-horizontal-list .item-title {
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.with-horizontal-list .item-text {
  font-size: 1.5rem;
}

/* Responsive: vertical en móvil */
@media (max-width: 768px) {
  .image-section .title {
    font-size: 1.8rem;
  }

  .with-horizontal-list .list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-top: none;
  }

  .with-horizontal-list .item {
    border-right: none;
    border-bottom: 1px solid white;
    padding-bottom: 1rem;
  }

  .with-horizontal-list .item:last-child {
    border-bottom: none;
  }

  .with-horizontal-list .item-title {
    font-size: 1.3rem;
  }

  .with-horizontal-list .item-text {
    font-size: 1rem;
  }
}


/* Centrado vertical + estilo mejorado */
.with-split-list .split-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.with-split-list .split-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 4rem;
  color: white;
}

/* Lista a la izquierda */
.with-split-list .split-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Líneas divisorias entre ítems */
.with-split-list .split-left .item {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.with-split-list .split-left .item:last-child {
  border-bottom: none;
}

.with-split-list .item-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.with-split-list .item-text {
  font-size: 1.4rem;
  line-height: 1.5;
}

/* Título a la derecha */
.with-split-list .split-right {
  flex: 1;
  text-align: right;
}

.with-split-list .split-right .title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
  .with-split-list .split-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .with-split-list .split-right {
    text-align: center;
  }

  .with-split-list .split-right .title {
    font-size: 2.5rem;
  }

  .with-split-list .split-left .item-title {
    font-size: 1.3rem;
  }

  .with-split-list .split-left .item-text {
    font-size: 1rem;
  }
}

.image-video .container.left-aligned-text {
  position: absolute !important;
  top: 40% !important;
  left: 5% !important; 
  transform: translateY(-50%) !important;
  text-align: left;
  color: white !important; /* Puedes cambiar a black si lo necesitas */
  max-width: 700px !important;
}

.image-video .container.left-aligned-text .title {
  font-size: 4.5rem !important;
  margin-bottom: 1rem !important;
   text-align: center !important;
}

.image-video .container.left-aligned-text .detail {
  font-size: 2.2rem !important;
  line-height: 1.5 !important;
}


/*CIERRE NOSOTROS*/

/*MEGA MENÚ*/

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}

.tab-button {
  background: none;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

.tab-button.active {
  border-bottom: 3px solid #000;
  color: #000;
}

.tab-content {
  display: none;
  justify-content: center;
  gap: 20px;
}

.tab-content.active {
  display: flex;
}



.model-image {
  max-width: 100%;
  height: auto;
}

/* Estructura principal */
.mega-menu-horizontal {
  display: flex;    
 justify-content: flex-end; /* Esto alinea las columnas a la derecha */
  gap: 40px; /* O el espaciado que estés usando entre columnas */
  padding: 20px; /* Si quieres agregar espacio interno */


}

.mega-menu-categories {
  display: flex;
  flex-direction: column;
  width: 200px;
  border-right: 1px solid #ccc;
}

.category-tab {
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
}

.category-tab:hover,
.category-tab.active {
  background-color: #f0f0f0;
}



.category-models {
  display: none;
  flex-wrap: nowrap;
  gap: 2rem; /* Espaciado horizontal entre modelos */
  padding: 1rem 0;
}

.category-models.active {
  display: flex;
  gap: 20px;
}

.model-box {
  width: 180px; /* Ajusta a tu gusto */
  text-align: center;
}

.mega-menu-models {
  overflow-x: auto;
  white-space: nowrap;
}


.model-image {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.model-name {
  display: block;
  font-weight: 500;
}


.mega-menu-models {
  display: flex;
  flex-wrap: wrap; /* Opcional: permite que se acomoden en varias filas si hay muchos modelos */
  gap: 20px; /* Espacio entre vehículos */
}

.category-models {
  flex: 0 0 auto; /* Evita que se estiren */
}

/*CIERRE MEGA-MENÚ*/

.intro {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.intro-background-video2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* opcional: para mayor contraste */
  z-index: 2;
}

.intro-text {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.intro-title {
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
}

@media (min-width: 768px) {
  .intro-title {
    font-size: 5vw;
  }
}

@media (min-width: 1200px) {
  .intro-title {
    font-size: 3vw;
  }
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-btn {
  display: inline-block;
  background-color: #00ffe7;
  color: #000;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 255, 231, 0.4);
  transition: all 0.3s ease;
  font-size: 14px;
  text-align: center;
}

.floating-btn:hover {
  background-color: #00cbbd;
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 255, 231, 0.6);
}

.floating-btn.secondary {
  background-color: #ffffff;
  color: #000;
  border: 1px solid #ccc;
}

.floating-btn.secondary:hover {
  background-color: #f4f4f4;
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

/* Responsive: los botones se ajustan en móvil */
@media (max-width: 480px) {
  .floating-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}
/*PROBANDO*/

/* === BYD PROMOS: AJUSTES FINALES === */

body.byd-promos-body {
  padding-top: 120px; /* espacio real del header fijo */
  background-color: #fff;
  color: #111827;
}

/* --- Header negro siempre visible --- */
body.byd-promos-body .navbar-default {
  background-color: black !important;
}
body.byd-promos-body .navbar-default a {
  color: white !important;
}

/* --- Título y botones de categoría --- */
.byd-promo-header {
  text-align: center;
  margin: 2rem 0 1.5rem;
}
.byd-promo-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.byd-promo-switch {
  display: inline-flex;
  border: 1px solid #111;
  border-radius: 6px;
  overflow: hidden;
}
.byd-promo-switch button {
  background: white;
  color: #111;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.byd-promo-switch button.active,
.byd-promo-switch button:hover {
  background: #111;
  color: white;
}

.byd-catalogo-grid {
  max-width: 900px; /* aprox 3 * 280px + espacios */
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(3, 280px);
  justify-content: center; /* centra el grid si hay menos tarjetas */
  gap: 2rem;
}


/* --- Tarjeta cuadrada --- */
/* --- Tarjetas normales con imagen cuadrada arriba --- */
.byd-promo-card {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* --- Imagen cuadrada ocupando solo la parte superior --- */
.byd-promo-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f3f4f6;
  flex-shrink: 0;
}

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

/* --- Descripción debajo de la imagen --- */
.byd-promo-description {
  padding: 1rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.byd-promo-description h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: #111;
}

.byd-promo-description p,
.byd-promo-location {
  font-size: 1rem;
  margin: 0;
  color: #374151;
}

/* --- Botones en la base, mismo ancho, pegados --- */
.byd-promo-btns {
  display: flex;
  margin-top: 0.8rem;
  gap: 0;
}

.byd-btn-outline,
.byd-btn-filled {
  flex: 1;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: 1px solid #111;
  border-radius: 0;
  transition: all 0.2s ease;
}

.byd-btn-outline {
  background: white;
  color: #111;
}

.byd-btn-outline:hover {
  background: #111;
  color: white;
}

.byd-btn-filled {
  background: #111;
  color: white;
}

.byd-btn-filled:hover {
  background: white;
  color: #111;
}


/* --- Responsivo --- */
@media (max-width: 768px) {
  .byd-promo-description h3 {
    font-size: 1.3rem;
  }
  .byd-promo-description p {
    font-size: 0.95rem;
  }
  .byd-btn-outline,
  .byd-btn-filled {
    font-size: 0.95rem;
    padding: 0.75rem 0.6rem;
  }
  .byd-promo-image {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
}
@media (max-width: 900px) {
  .byd-catalogo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 100%;
    padding: 1rem;
  }
}


/*PROBANDO*/

/* Previene salto de línea sin modificar separación ni diseño */
.generic-menu {
  flex-wrap: nowrap;
  overflow-x: auto; /* permite desplazamiento horizontal solo si es necesario */
  scrollbar-width: none; /* Firefox: oculta scrollbar */
  -ms-overflow-style: none;  /* IE 10+ */
}

.generic-menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge: oculta scrollbar */
}

.generic-menu {
  min-width: max-content; /* Fuerza el ancho mínimo al contenido total */
}

#noPromosMessage {
  grid-column: 1 / -1; /* Que ocupe todas las columnas del grid */
  display: flex !important;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  font-size: 2.2rem;
  color: #222;
  background-color: #f9f9f9;
  border: 3px dashed #ccc;
  border-radius: 16px;
  margin: 40px 0;
  opacity: 0;
  animation: fadeIn 0.6s ease-in-out forwards;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


#noPromosMessage p {
  margin: 0;
  font-weight: 600;
  max-width: 90%;
}

/* Animación */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/*PROBANDO*/

.custom-carousel {
  position: relative;
  width: 100%;
  height: auto;
}

.custom-carousel picture {
  display: none;
  width: 100%;
}

.custom-carousel picture.custom-active {
  display: block;
}

.custom-carousel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Botones de navegación */
.custom-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.custom-carousel-btn:hover {
  background: rgba(0,0,0,0.6);
}

.custom-prev {
  left: 1rem;
}

.custom-next {
  right: 1rem;
}

/* Texto inferior */
.custom-caption-bottom-right {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 9;
  color: white;
  text-shadow: 1px 1px 3px black;
}

.custom-caption-title {
  font-size: 2rem;
  margin: 0;
}


/*FIN PROBANDO*/



