
body, html{
   overflow-x: hidden;
  scroll-behavior: smooth;
}
    .sectiones{
         padding: 50px 20px;
    }
    .seccion1 {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      gap: 40px;
      padding-bottom: 100px;
    }

    .texto1 {
      flex: 1;
      padding: 50px;
      z-index: 2;
      text-align: center;
      align-items: center;
      margin-top: 70px;
    }

    .texto1 h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: rgb(0, 0, 0);
      text-decoration-color: bold;
    }

    body.dark .texto1 h2{
        color: rgb(207, 207, 207);
    }

    .texto1 p {
      font-size: 1.1rem;
    }

    body.dark .texto1 p{
        color: rgb(255, 255, 255);
    }

    .boton1 {
      margin-top: 20px;
      padding: 12px 24px;
      background: linear-gradient(to right, #ff8a00, #e52e71);
      color: #fff;
      border: none;
      cursor: pointer;
      border-radius: 30px;
      transition: 0.3s;
    }

    body.dark .boton1 {
      color: #ffffff;
    }

    .boton1:hover {
      transform: scale(1.15);
    }

    .card-container {
      flex: 1;
      position: relative;
      width: 300px;
      height: 300px;
      margin: auto;
      perspective: 1000px;
    }

    

    .card-pers {
      position: absolute;
      width: 180px;
      height: 220px;
      border-radius: 20px;
      transition: all 0.4s ease;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      overflow: hidden;
    }

    .card-pers img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }

    /* Posiciones circulares */
    .card-pers.pos0 {
      left: 100px;
      top: 20px;
      z-index: 3;
      transform: scale(1.05);
    }
    .card-pers.pos1 {
      left: 10px;
      top: 60px;
      z-index: 2;
      transform: scale(0.95);
    }
    .card-pers.pos2 {
      left: 160px;
      top: 110px;
      z-index: 1;
      transform: scale(0.9);
    }
    
    .card-pers:hover {
      box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

    /* Sección 2 */
    .seccion2 {
      display: flex;
      flex-wrap: wrap;
      background: #d1d1d1af;
      max-width: 100%;
    }

    body.dark .seccion2 {
      background: #3f3f3f;
    }

    .imagen2, .contenido2 {
      flex: 1 1 45%;
    }

    .imagen2 img {
      max-width: 100%;
      height: 100%;
      border-radius: 0 40px 40px 0;
    }

    .contenido2 ul {
      padding-left: 20px;
      margin-top: 40px;
    }

    .contenido2 h2{
        font-size: 2em;
        font-style: bold;
        color: rgb(0, 0, 0);
    }

    body.dark .contenido2 h2{
        font-size: 38px;
        font-style: bold;
        color: rgb(255, 255, 255);
    }

    
    .contenido2 p{
        font-size: 16px;
        color: rgb(36, 36, 36);
        margin-top: 30px;

    }

    body.dark .contenido2 p{
        font-size: 16px;
        color: rgb(255, 255, 255);
        margin-top: 30px;

    }


  .container-seccion2{
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  @media (max-width: 768px) {
    .seccion2 .container-seccion2 {
      flex-direction: column;
    }

    .imagen2, .contenido2 {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }


    .contenido2 li {
      margin-bottom: 8px;
    }

    .contenido2{
        height: 80%;
        text-align: center;
        align-items: center;
        padding: 50px;
    }



    @media (max-width: 768px) {
      .seccion1, .seccion2 {
        flex-direction: column;
      }
      .imagenes1 {
        display: none;
      }
      .card-pers {
        position: static;
        margin: 10px;
      }

      .beneficios{
        flex-direction: column;
      }

        .imagen2 img {
        max-width: 100%;
        height: 100%;
        border-radius: 0;
        }
    }


    .beneficios {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin: 20px 0;
    }

    .beneficio {
      flex: 1 1 30%;
      background-color: #ffffff48;
      padding: 16px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    body.dark .beneficio {
      background-color: #57575759;
      color: #f7f7f7;
    }

    .beneficio:hover{
      transform: scale(1.05);
      box-shadow: 0 4px 10px rgba(255, 188, 43, 0.329);
      cursor: pointer;
    }
    .beneficio img {
      margin-bottom: 10px;
    }

    .boton2 {
      margin-top: 20px;
      padding: 14px 30px;
      background: linear-gradient(90deg, #ff6600, #ff3300);
      color: white;
      font-weight: bold;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .boton2:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
    }


 .seccion-carrusel {
  width: 100%;
  padding: 50px 0 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carrusel-muestras {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.carrusel-imagenes {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  display: none;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.slide.active {
  display: block;
}


.imagen-pc {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}

.imagen-pc img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
}

.btn-carrusel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000000aa;
  color: white;
  border: none;
  font-size: 24px;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  transition: background 0.3s;
}

.btn-carrusel:hover {
  background: #333;
}

.previ {
  left: 10px;
}

.nexti {
  right: 10px;
}


.seccion-camisas {
  width: 100%;
  padding: 40px 0;
}

.contenedor-camisas {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
  flex-wrap: wrap; /* Por si se ajusta en móvil */
}

.col-izq {
  flex: 1 1 35%;
  max-width: 35%;
  background-color: #dfdfdf65;
  border-radius: 12px;
  margin-top: 50px;
  margin-bottom: 50px;
  height: auto;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

@media (max-width: 935px){
    .col-izq {
    flex: 1 1 35%;
    max-width: 98%;
    background-color: #dfdfdf65;
    padding: 30px;
  }

    .col-der {
    flex: 1 1 50%;
    max-width: 70%;
    margin-left: 15%;
    background-color: #7a7a7a00;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }

  .seccion-camisas{
    padding: 0;
  }
}

@media (max-width: 800px){
    .col-der {
    flex: 1 1 80%;
    min-width: 90%;
    margin-left: 5%;
  }

  .seccion-camisas{
    padding: 0;
  }
}

body.dark .col-izq {
  background-color: #ffffffda;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.459);
}


.col-der {
  flex: 1 1 60%;
  max-width: 60%;
  background-color: #7a7a7a00;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Ocultar carrusel en escritorio */
@media (min-width: 768px) {
  .carrusel-muestras {
    display: none;
  }
}

/* Ocultar imagen única en móvil */
@media (max-width: 767px) {
  .imagen-pc {
    display: none;
  }
  
    .card-container {
      display: none;
    }
}


@media (max-width: 500px) {
  .home {
    left: 0;
    width: 100%;
    max-width: 100%;
  }

  .contenido2{
    padding: 10px;
  }
}

@media (max-width: 1175px) {
 .imagenes1{
    display: none;
 }

 .texto1{
  padding: 5px;
 }
}



.titulo-camisa {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(36, 36, 36, 0.829);
  font-weight: 600;
  text-align: center;
  padding-top: 20px;
}

body.dark .titulo-camisa {
  color: rgb(44, 44, 44);
}

body.dark .descripcion-camisa {
  color: rgb(80, 80, 80);
}


.descripcion-camisa {
  font-size: 18px;
  margin-bottom: 20px;
  color: #505050;
  text-align: center;
}

.contenedor-colores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 30px;
  justify-content: center;
  padding-left: auto;
}

.color-circulo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.color-circulo:hover {
  transform: scale(1.4);
  box-shadow: 0 0 0 2px #999;
}

.selected-colors {
  border: 1px solid rgb(100, 100, 100);
  transform: scale(1.4);
  outline-offset: 2px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.selected-button{
  box-shadow: 0 0 1px 2px rgba(172, 172, 172, 0.2);
  border: 2px solid rgba(71, 71, 71, 0.603);
  transform: scale(1.2);
}




.contenedor-botones-genero {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.btn-genero {
  flex: 1;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Botón Niña */
.btn-nina {
  background: linear-gradient(135deg, #ff30d2, #d633ff);
}
.btn-nina:hover {
  background: linear-gradient(135deg, #ec407a, #d81b60);
  transform: translateY(-1px);
  transform: scale(1.1);
}

/* Botón Niño */
.btn-nino {
  background: linear-gradient(135deg, #25ffff, #0a6cff);
}
.btn-nino:hover {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  transform: translateY(-1px);
  transform: scale(1.1);
}






.carousel-multiple {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track-wrapper-personalizar {
  width: 100%;
  overflow: hidden;
}

.carousel-slide {

  flex: 0 0 48%;
  max-width: 50%;
  box-sizing: border-box;
  padding: 10px;
  height: 500px;
  text-align: center;
  font-size: 2rem;
  background-color: #e6e6e6;
  border-radius: 15px;
  margin: 10px;
}


.carousel-track-personalizar{
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: center;
}

/* RESPONSIVE: 1 slide */
@media (max-width: 1150px) {
  .carousel-slide {
    flex: 0 0 98%;
    max-width: 100%;
  }


}

.carousel-btn-personalizar{
  position: absolute;
  top: 63%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  color: rgb(255, 255, 255);
  z-index: 10;
  cursor: pointer;
  padding: 10px;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}








 #preloader-love {
            position: fixed;
            inset: 0;
            background: linear-gradient(to bottom right, #fefefe 4%, #f4f1e1 15%, #f4f1e1 40%, #f4f1e1 60%, #f4f1e1 85%,  #fff5d3 95%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s;
        }
#preloader-love.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  position: relative;
  width: 160px;
  height: 160px;
}

#logo-loader-love {
  width: 100px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Círculo romántico 💞 */
.loader-ring-love {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top: 6px solid;
  border-image: linear-gradient(90deg, #fefefe, #f4f1e1, #d4af37) 1;
  animation: spin 2.5s linear infinite;
  z-index: 1;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}














.personalizar-card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.personalizar-card:hover {
  transform: scale(1.03);
}

.personalizar-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.personalizar-info {
  position: relative;
  bottom: 0;
  height: 30%;
  width: 100%;
  background: rgba(255, 255, 255, 0.8); /* Transparente pero legible */
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.nombre-producto {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #333;
  text-align: center;
}

.precio-producto {
  font-size: 1rem;
  color: #666;
  margin: 0 0 10px 0;
  text-align: center;
}

.boton-personaliza {
  background: linear-gradient(90deg, #a94ff5, #6cc6ff);
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.boton-personaliza:hover {
  background: linear-gradient(90deg, #6cc6ff, #a94ff5);
}








.-mantenimiento-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none; /* Se muestra solo al activar */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.-mantenimiento-contenido {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: fadeInUp 0.4s ease;
}

.-mantenimiento-contenido h2 {
  color: #FF6B81;
  margin-bottom: 15px;
}

.-mantenimiento-contenido p {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

.-mantenimiento-cerrar {
  background: #6C63FF;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.-mantenimiento-cerrar:hover {
  background: #574fdb;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}