* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* Ajuste general de altura y eliminación de scroll vertical */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: hidden;
  /* 🔥 Desactiva scroll vertical */
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  background: #000;
}


.container {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.left-column,
.right-column {
  width: 50%;
  height: 100%;
}

/* ------------------------------ */

/* Columna Derecha */
.right-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Cambiado de center para scroll */
  align-items: center;
  background-color: #000;
  height: 100vh;
  padding: 2px;
  box-sizing: border-box;

  overflow-y: scroll;              /* Habilita scroll vertical */
  scrollbar-width: none;          /* Oculta scroll en Firefox */
  -ms-overflow-style: none;       /* Oculta scroll en IE/Edge */
}

.right-column::-webkit-scrollbar {
  display: none;                  /* Oculta scroll en Chrome/Safari */
}

.right-column .grid {
  height: auto;                   /* Permite que crezca según el contenido */
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ------------------------------ */
/* Estilo de bloques del grid */
.grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.grid-item:hover {
  filter: brightness(1.1);
}

/* Colores por sección */

.services {
  background: linear-gradient(to bottom right, #d4145a, #fbb03b);
}

.contact {
  background: linear-gradient(to bottom right, #00c9ff, #92fe9d);
}

.portfolio {
  background: linear-gradient(to bottom right, #2193b0, #6dd5ed);
}

.blog {
  background: linear-gradient(to bottom right, #cc2b5e, #753a88);
}

.gallery {
  background: linear-gradient(to bottom right, #43cea2, #185a9d);
}




.session-number {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Estilo general */
.digit {
  background-color: #000;
  border: 1px solid #00fff7;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 1.6rem;
  color: #00fff7;
  box-shadow: 0 0 6px #00fff7;
  text-align: center;
}

/* ✅ Ajuste para móviles */
@media screen and (max-width: 480px) {
  .session-number {
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: auto;
    padding: 4px;
    gap: 4px;
  }

  .digit {
    padding: 8px 10px;
    font-size: 1rem;
    border-radius: 6px;
    min-width: 28px;
    box-shadow: 0 0 3px #00fff7;
  }
}


/* ---------- Animaciones ---------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.session-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.secondary-btn {
  background-color: transparent;
  color: #00f2ea;
  border: 1px solid #00f2ea;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(0, 242, 234, 0.1);
}

.secondary-btn:hover {
  background-color: #00f2ea;
  color: #000;
  transform: scale(1.05);
}


.divider {
  border: none;
  border-top: 1px solid #333;
  margin: 25px 0;
  opacity: 0.5;
}



@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(100%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.subs-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}

.subs-card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease;
  text-align: center;
}

.subs-card:hover {
  transform: translateY(-4px);
  border-color: #00f2ea;
}

.subs-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.subs-card .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #00f2ea;
  margin-bottom: 10px;
}

.subs-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 15px;
}

.subs-card button {
  background-color: transparent;
  color: #00f2ea;
  border: 1px solid #00f2ea;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subs-card button:hover {
  background-color: #00f2ea;
  color: #000;
}

.subs-subtitle {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.subs-card.selected {
  border: 2px solid #00ffd5;
  box-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

.session-text {
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 8px;
}

.correo-box {
  background-color: #111;
  color: #00fff7;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 0 6px rgba(0, 255, 247, 0.3);
  margin-right: 10px;
}

.cambiar-btn {
  background-color: transparent;
  border: none;
  color: #00fff7;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.cambiar-btn:hover {
  transform: scale(1.2) rotate(20deg);
}


.secondary-btn,
.change-btn {
  margin-top: 5%;
  background-color: transparent;
  color: #00fff7;
  border: 1px solid #00fff7;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}

.secondary-btn:hover,
.change-btn:hover {
  background-color: #00fff7;
  color: #000;
}



.suscripcion-info {
  font-size: 14px;
  color: #ccc;
  margin: 5px 0;
}




@media screen and (max-width: 768px) {

  .container {
    flex-direction: column;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .left-column,
  .right-column {
    width: 100%;
    height: auto;
    box-sizing: border-box;

  }


}

.logo-img {
    width: 100%;             /* Ajusta el logo al ancho del móvil */
    max-width: 250px;        /* Tamaño máximo */
    margin: 0 auto 20px auto;/* Centra el logo con margen inferior */
  }

  .texto-encabezado {
    font-size: 1rem;         /* Texto más pequeño en móviles */
    padding: 0 10px;         /* Espacio lateral */
    text-align: center;      /* Centra el texto */
  }

/* Estilos actualizados para left-column con nuevos elementos visuales */
.left-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;        /* ⬆️ para que comience desde arriba */
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 0px;
  box-sizing: border-box;
  text-align: center;
  animation: fadeInUp 1s ease-in-out;

  overflow-y: scroll;                 /* ✅ scroll vertical funcional */
  scrollbar-width: none;             /* ❌ oculta barra en Firefox */
  -ms-overflow-style: none;          /* ❌ oculta barra en Edge/IE */
}

.left-column::-webkit-scrollbar {
  display: none;                     /* ❌ oculta barra en Chrome/Safari */
}


.welcome-title {
    display: flex;
    flex-direction: column; /* Coloca imagen y texto en columna */
    align-items: center;    /* Centra ambos elementos */
    text-align: center;
}



.texto-encabezado {
    margin-top: 10%;       /* Separación de 5% de la imagen */
    font-size: 1.2rem;
    color: white;         /* Ajusta color */
   
}


.gradient-text {
  background: linear-gradient(to right, #ff0050, #00f2ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-description {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 10px;
}

.sub-description {
  font-size: 1rem;
  color: #999;
  margin-bottom: 25px;
  font-style: italic;
}



@keyframes pulse {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.9;
    transform: scale(1);
  }
}

.counter-box {
  margin-top: 20px;
  background: #111;
  padding: 10px 20px;
  border-radius: 12px;
  color: #00f2ea;
  box-shadow: 0 0 8px rgba(0, 255, 247, 0.2);
  margin-bottom: 20px;
}

.counter-number {
  font-size: 1.8rem;
  font-weight: bold;
}

.counter-label {
  font-size: 0.85rem;
  color: #aaa;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}


.chat-float-btn {
  display: none;
  /* Oculto por defecto */
}

@media screen and (max-width: 768px) {

  html,
  body {
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* ❌ bloquea scroll general de la página */
  }

  .left-column {
    justify-content: flex-start;
    /* ⬆️ Alinea al inicio */
    align-items: center;
    padding-top: 40px;
    /* Espacio desde arriba */
    min-height: 100vh;
    /* 🔁 Sigue ocupando toda la altura */
    height: auto;
    height: 100vh;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    /* scroll suave en iOS */
    overflow-y: auto;

  }

  .features-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 10px;
    /* ← margen interno a izquierda y derecha */
    margin: 0 auto;
    max-width: 100vw;
    box-sizing: border-box;
    scrollbar-width: none;
  }

  .features-row::-webkit-scrollbar {
    display: none;
  }

  .feature-item {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* Evita scroll horizontal general */
  body {
    overflow-x: hidden;
  }



  .right-column {
    display: none !important;
  }

  .chat-float-btn {
    display: flex;
    /* Solo visible en pantallas móviles */
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: none;
    /* sin fondo */
    border: none;
    /* sin borde */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    cursor: pointer;
    padding: 0;
    animation: pulseZoom 1.8s ease-in-out infinite;
  }

  .chat-float-btn img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  @keyframes pulseZoom {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.12);
    }

    100% {
      transform: scale(1);
    }
  }




}



.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-size: 0.95rem;
  color: #00f2ea;
  margin: 6px;
  transition: background 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 255, 247, 0.05);
  white-space: nowrap;
}

.feature-item img.icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
}


.glass-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 25px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 255, 200, 0.1);
  margin-bottom: 20px;
}

.main-btn {
  margin-top: 5%;
  background: linear-gradient(135deg, #00f2ea, #00c3ff);
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 255, 247, 0.4);
  transition: transform 0.2s ease;
}

.main-btn:hover {
  transform: scale(1.05);
}

.demo-btn-box {
  margin-bottom: 20px;
}

.demo-btn {
  background-color: #00f2ea;
  color: #000;
  padding: 10px 18px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-btn:hover {
  transform: scale(1.05);
  background-color: #00d4c4;
}

.bottom-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}


.promo-footer-banner {
  width: 100%;
  background: linear-gradient(to right, #ff0050, #00f2ea);
  color: #000;
  padding: 18px 25px;
  margin-top: auto;
  /* 🔥 Empuja hacia abajo */
  box-shadow: 0 -3px 25px rgba(0, 242, 234, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-footer-content {
  max-width: 900px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.promo-icon-big {
  font-size: 2rem;
}

.promo-footer-text {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}

.flash-title {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  background: linear-gradient(to right, #fff, #f8e600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlighted {
  font-weight: bold;
  color: #fff;
}

.promo-note {
  font-size: 0.95rem;
  margin-top: 5px;
  color: #111;
}

.cta-promo-btn {
  background-color: #000;
  color: #00fff7;
  border: 2px solid #00fff7;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-promo-btn:hover {
  background-color: #00fff7;
  color: #000;
}

@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blinkCaret {

  0%,
  100% {
    border-color: transparent
  }

  50% {
    border-color: #00f2ea
  }
}




@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}


.correo-hover-box {
  position: relative;
  display: inline-block;
}

.correo-tooltip {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #1a1a1a;
  color: #00fff7;
  padding: 12px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 255, 247, 0.2);
  white-space: nowrap;
  z-index: 999;
  font-size: 0.9rem;
  min-width: 220px;
}

.correo-hover-box:hover .correo-tooltip {
  display: block;
}

.counter-number {
  font-size: 1.6rem;
  font-weight: bold;
  color: #00f2ea;
  transition: all 0.2s ease-in-out;
}


.logo-img {
  width: 70%; 
  max-width: 100%;
  height: auto;
  display: block;
  margin: 5% auto 0 auto; /* 5% de margen superior, centrado horizontalmente */
}


@media screen and (max-width: 768px) {

  



  .features-row {
    display: none;
  }


  .logo-img {
    width: 200px;
    /* o el tamaño que necesites */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* centra horizontalmente */
  }


  .welcome-title {
    margin-top: 15%;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 1px;

  }

  .promo-footer-banner {
    background-color: #222;
    padding: 16px;
    text-align: center;
    border-radius: 16px;
    margin: 16px auto;
    /* espacio con otras secciones */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    max-width: 90%;
    margin-bottom: 30%;
  }

  .promo-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .promo-icon-big {
    font-size: 2rem;
  }

  .promo-footer-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
  }

  .flash-title {
    display: block;
    font-size: 1.4rem;
    color: #00fff7;
    margin-bottom: 4px;
    font-weight: bold;
  }

  .highlighted {
    color: #f39c12;
    font-weight: bold;
  }

  .promo-note {
    font-size: 0.9rem;
    color: #aaa;
  }

  .cta-promo-btn {
    background-color: #00fff7;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }

  .cta-promo-btn:hover {
    background-color: #00e0d2;
  }
}

.welcome-section {
    height: 100vh;      
    margin-top: 5%;       /* Ocupa todo el alto de la pantalla */
    display: flex;             /* Activamos flexbox */
    justify-content: center;   /* Centrado horizontal */
    align-items: center;       /* Centrado vertical */
    background-color: black;   /* Fondo (puedes cambiarlo) */
    text-align: center;
}

.welcome-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 100%;
    max-width: 100%;          /* Ajusta el tamaño máximo del logo */
        /* Espacio entre imagen y texto */
}

.texto-encabezado {
    color: white;
    font-size: 1.5rem;
    font-style: italic;
}



.animated-subtitle {
  font-size: 1.4rem;
  color: #00f2ea;
  text-align: center;
  margin: 3% 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.animated-subtitle.show {
  opacity: 1;
}

.bugatti-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* EXACTAMENTE 3 por fila */
  gap: 20px;
  margin-top: 30px;
  justify-items: center;
  padding: 0 20px;
}

.bugatti-panel {
  width: 300px;
  height: 550px;   /* Imagen más alta */
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.bugatti-panel img.imagen-nueva {
  width: 100%;
  height: 400px;
  object-fit: cover;  /* Asegura que la imagen cubra todo el card */
   cursor: pointer; /* Muestra mano al pasar sobre la imagen */
}

/* Centrado del título */
.titulo-nuevo {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%); /* Centrado horizontal */
  margin: 0;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 5px;
  z-index: 2;
  text-align: center;
  white-space: nowrap; /* Evita que se parta en 2 líneas */
}

/* Botón centrado y fijo */
.bugatti-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);   /* ✅ siempre centrado */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;            /* espacio interno */
  border-radius: 25px;           /* bordes redondeados tipo píldora */
  background-color: #FFB927;     /* color dorado sólido */
  color: #000;                   /* texto negro */
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  border: none;
  white-space: nowrap;           /* evita saltos de línea */
  box-shadow: none;              /* ❌ sin sombras */
  cursor: pointer;
  text-align: center;
}


.bugatti-overlay {
  display: none; /* La descripción ya no se muestra */
}

.bugatti-nuevo {
  background-color: #000 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto !important;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08), 0 2px 10px rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}



.bugatti-nuevo:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.12), 0 5px 10px rgba(255, 215, 0, 0.2);
  transform: scale(1.01);
}


.titulo-nuevo {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 10px 0;
}



.texto-nuevo {
  position: static;
  background: none;
  color: #ccc;
  text-align: center;
  padding-top: 10px;
}

.texto-nuevo h2 {
  font-size: 14px;
  margin: 0;
  font-weight: normal;
}


.luxury-promo {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
  padding: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-in-out;
}

.luxury-title {
  font-size: 2.6rem;
  color: #FFBC1A;
  font-weight: 800;
  margin-bottom: 20px;
}

.luxury-subtitle {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}

.luxury-quote {
  font-size: 1rem;
  font-style: italic;
  color: #aaa;
  margin-bottom: 30px;
}

.luxury-btn {
  background-color: transparent;
  border: 2px solid #FFBC1A;
  color: #FFBC1A;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}

.luxury-btn:hover {
  background-color: #FFBC1A;
  color: #000;
  box-shadow: 0 0 10px rgba(255, 188, 26, 0.6);
}


.section-header {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.2rem;
  color: #FFBC1A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #FFBC1A;
  display: inline-block;
  padding-bottom: 6px;
}

.eventos-section {
  text-align: center;
  padding: 60px 20px;
}

.eventos-subtitle {
  color: #FFBC1A;
  letter-spacing: 4px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.eventos-title {
  color: white;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 6px;
  margin-bottom: 40px;
}

.eventos-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.evento-card {
  background-color: transparent;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(255, 188, 26, 0.1);
  transition: transform 0.3s ease;
}

.evento-card img {
  width: 100%;
  max-width: 300px;
  display: block;
  border-radius: 12px;
}

.evento-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 5px rgba(255, 188, 26, 0.3);
}


/* ===== FOOTER GLOBAL ===== */
.main-footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 50px 20px 30px;
  box-sizing: border-box;
}

.main-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ===== TOP LOGO ===== */
.footer-top {
  text-align: center;
  border-bottom: 1px dotted #444;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
}

/* ===== COLUMNS ===== */
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 260px;
}

.footer-heading {
  color: #FFBC1A;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #333;
  padding: 8px 0;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.footer-column .label {
  font-weight: 600;
  color: #fff;
}

.footer-column p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 15px;
}

/* ===== BOTÓN ===== */
.footer-btn {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #FFBC1A;
  color: #FFBC1A;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: #FFBC1A;
  color: #000;
  box-shadow: 0 0 12px rgba(255, 188, 26, 0.4);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

.footer-bottom a {
  color: #FFBC1A;
  font-weight: bold;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ADAPTACIÓN ===== */
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-column {
    width: 100%;
    max-width: 500px;
    text-align: center;
  }

  .footer-column ul li {
    justify-content: center;
    gap: 10px;
  }

  .footer-btn {
    width: 100%;
    max-width: 300px;
  }
}

#listaCarrito {
  margin-top: 10%;
  width: 90%;
  max-width: 500px;
  height: 90%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px;

  background: rgba(20, 20, 20, 0.85); /* fondo semi */
  backdrop-filter: blur(8px);        /* desenfoque del fondo */
  box-shadow: 0 8px 30px rgba(255, 188, 26, 0.05); /* sombra dorada sutil */
  border: 1px solid rgba(255, 188, 26, 0.2);       /* borde sutil dorado */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#listaCarrito:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 188, 26, 0.15);
}

/* Título superior */
.carrito-titulo {
  text-align: center;
  margin-bottom: 20px;
}

.carrito-titulo h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFBC1A;
  letter-spacing: 1px;
}

/* Encabezado */
.carrito-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.titl {
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFBC1A;
}

.titl span {
  font-size: 0.95rem;
  color: #ccc;
}

.mad-count {
  background: #FFBC1A;
  color: #000;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Scrollable zona de productos */
.prods-scroll {
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 20px;
}

.prods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prods .item {
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.03);
  gap: 12px;
}

.img3 img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
}

.cont {
  flex: 1;
}

.cont h6 {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}

.cont .price {
  font-size: 0.95rem;
  color: #FFBC1A;
  margin: 5px 0;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.btn-qty {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 4px 12px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

.qty-input {
  width: 40px;
  text-align: center;
  background: transparent;
  border: 1px solid #444;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
}

.del {
  cursor: pointer;
  color: #ff4c4c;
  font-size: 1.4rem;
}

.carrito-bottom {
  position: sticky;
  bottom: 0;
  z-index: 10;
  padding: 20px 15px 25px 15px;
  backdrop-filter: blur(4px);  
  border-radius: 0 0 14px 14px;
}

.total {
  display: flex;
  justify-content: space-between;  /* <== esto separa los lados */
  align-items: center;
  font-size: 1.1rem;
  padding: 12px 0;
  border-top: 1px solid #333;
  margin-bottom: 15px;
  width: 100%;
}

.total span {
  font-weight: 600;
  font-size: 1rem;
  color: #ccc;
  text-align: left;
  flex: 1;
}

.total strong {
  font-weight: bold;
  font-size: 1.2rem;
  color: #FFBC1A;
  text-align: right;
}

.footer-btn {
  background-color: transparent;
  border: 2px solid #FFBC1A;
  color: #FFBC1A;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}

.footer-btn:hover {
  background-color: #FFBC1A;
  color: #000;
  box-shadow: 0 0 10px rgba(255, 188, 26, 0.3);
}



.prods-scroll {
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE y Edge antiguos */
}

.prods-scroll::-webkit-scrollbar {
  display: none;                  /* Chrome, Safari, Edge Chromium */
}


.del {
  display: flex;
  align-items: start;
  justify-content: flex-end;
}

.btn-eliminar {
  background-color: transparent;
  border: none;
  color: #ff4c4c;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px;
  transition: transform 0.2s ease;
}

.btn-eliminar:hover {
  transform: scale(1.2);
}


/* Fondo del modal (overlay) */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Caja principal del modal */
.custom-modal {
  background-color: #111;
  border: 1px solid #FFBC1A;
  border-radius: 12px;
  padding: 25px 30px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 15px rgba(255, 188, 26, 0.3);
  animation: aparecer 0.3s ease-out;
  position: relative;
}

@keyframes aparecer {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #FFBC1A;
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
}

.modal-input {
  background-color: #1c1c1c;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
  font-size: 0.95rem;
}

.modal-input::placeholder {
  color: #777;
}

.modal-input:focus {
  outline: none;
  border-color: #FFBC1A;
  box-shadow: 0 0 4px rgba(255, 188, 26, 0.3);
  background-color: #111;
}

/* Opciones de pago */
.pago-opcion {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.pago-opcion:hover {
  border-color: #FFBC1A;
  color: #FFBC1A;
}

.pago-opcion input {
  margin-right: 10px;
  transform: scale(1.2);
}

/* Botón de cerrar (opcional) */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #FFBC1A;
  cursor: pointer;
}

/* Botón de confirmar */
.footer-btn {
  background-color: #FFBC1A;
  color: #111;
  border: 2px solid #FFBC1A;
  border-radius: 8px;
  padding: 12px;
  font-weight: bold;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: transparent;
  color: #FFBC1A;
}

.total-pago-box {
  background-color: #1c1c1c;
  border: 1px solid #FFBC1A;
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #fff;
}

.total-pago-label {
  font-weight: bold;
  color: #FFBC1A;
  font-size: 1.05rem;
}

.total-pago-valor {
  color: #FFBC1A;
  font-weight: bold;
  font-size: 1.3rem;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #FFBC1A;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s ease;
}

.close-modal:hover {
  color: #fff;
}

/* Fondo oscuro */
.custom-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Caja del modal */
.custom-modal {
  background: #000;
  border-radius: 10px;
  max-width: 80%;
  max-height: 80%;
  width: 80%;
  position: relative;
  color: #fff;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Botón de cerrar */
.close-modal {
  position: absolute;
  top: 10px; right: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Contenedor de imágenes */
.carousel-galeria {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
}

.carousel-galeria img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: none;
}

/* Botones de control */
.galeria-controles {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.galeria-btn {
  background: #FFD700;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.galeria-btn:hover {
  background: #e6c200;
}

#modalDatosCliente,
#modalGaleria {
  display: none; /* Ocultos por defecto */
}


/* ===== MÓVIL: columnas verticales y sin scroll en imagen ni contenedores ===== */
@media (max-width: 768px) {

  /* La grilla vuelve a una sola columna en móvil */
  .bugatti-panels {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 0;                  /* quita padding lateral */
    width: 98%;                  /* ✅ ocupa el 98% */
    max-width: 100%;             /* ✅ nunca más que la pantalla */
    margin: 0 auto;              /* ✅ centra el grid */
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

    /* ✅ Los hijos ocupan todo el ancho del contenedor */
  .bugatti-nuevo,
  .bugatti-panel {
    width: 90% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .bugatti-panel img.imagen-nueva,
  .bugatti-nuevo img.imagen-nueva {
    width: 90% !important;
    height: auto;        /* 🔄 se adapta a la proporción */
    max-height: 400px;   /* si quieres limitar alto */
    object-fit: cover;
  }

  /* Los cards no hacen scroll horizontal */
  .bugatti-panel,
  .bugatti-nuevo,
  .img-scroll {
    overflow: visible !important;
    -webkit-overflow-scrolling: auto !important;
    touch-action: auto !important;
    overscroll-behavior: auto !important;
  }
  .img-scroll::-webkit-scrollbar { display: none !important; }
  .bugatti-panel { scroll-snap-align: unset !important; }

  /* La imagen ocupa el ancho del card, sin “pan” horizontal */
  .bugatti-panel img.imagen-nueva,
  .bugatti-nuevo img.imagen-nueva,
  .img-scroll > img.imagen-nueva {
    width: 100% !important;
    min-width: auto !important;   /* ← quita la expansión que causaba el pan */
    height: 400px;                /* respeta tu alto de card */
    object-fit: cover;
  }
}

/* Evita cualquier scroll horizontal global accidental */
html, body { overflow-x: hidden; }

