@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html{
    scroll-behavior: smooth;
}

.swiper  {
    width: 100%;
    padding: 150px 0 50px 0;
    z-index: 100;
    
}


.swiper-slide{
    width: 300px;
    height: 500px;
    background-color: #323232;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    padding: 40px;
    text-align: center;
 
}

.icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;

}

.icons i {
    font-size: 20px;
    color: #FFBB00;
}

.icons img{
    width: 120px;
}


.product-content{
    display: flex;
    justify-content: space-between;
}

.product-cvt{
    flex-basis: 50%;
    text-align: left;
}

.product-cvt span {
    font-size: 25px;
    color: #0057fae3;
    font-weight: bold;
}

.product-cvt h3{
    font-size: 20px;
    color: white;
    text-transform: uppercase;

}

.product-cvt p {
    font-size: 14px;
    color: #c4c4c4;
}

.product-img{
    flex-basis: 50%;
    text-align: right;
}

.product-img img{
    width: 120px;
}


.btn-swiper {
    display: inline-block;
    padding: 13px 55px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 50px;
}

.contenedorsito a{
    color: white;
}



.swiper-slide:hover {
    background-color: #1e1e1e;

}



/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Encabezado */
.header-carrito-details {
    width: 100%;
    padding: 20px;
    text-align: center;
    height: auto;
    margin-top: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

 @media (max-width: 550px) {
     .header-carrito-details {
        margin-top: 80px;
    }
 }

.header-carrito-details .title-details-carrito {
    font-size: 2rem;
    margin: 0;
    color: rgb(0, 109, 124);
}

body.dark .header-carrito-details .title-details-carrito {
    color: rgb(165, 162, 0);
}

/* Lista principal del carrito */
#carrito-lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 90%;
  margin-top: 25px;

}

.carrito-item {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: opacity 0.4s ease, transform 0.3s ease;
}

.product-header {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 10px;
  color: #333;
}

.product-body {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.carrito-item:hover {
  transform: translateY(-2px);
}

.product-image{
  width: 120px;
  height: 120px;
}

/* Imagen */
.product-image img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;

}

/* Contenido textual y detalles */
.product-details {
  flex: 1;
  min-width: 200px;
}

.product-names {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  transition: all 0.3s ease;
}

.product-names:hover {
  font-size: 19px;
  font-weight: bold;
  color: #00a0a0;
  font-family: 'Quicksand', sans-serif;
  margin: 0;
}

/* Precio + cantidad */
.container-price-and-cuantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-left: 20px;
  width: 70%;
  flex-wrap: wrap;
}

.product-prices {
  font-size: 15px;
  margin-top: 6px;
  font-weight: 600;
  color: #0077cc;
  white-space: pre-line; /* Permite saltos de línea */
}

/* Precio separado en dos líneas */
.product-prices::before {
  content: "Precio COP:";
  display: block;
  font-size: 14px;
  color: #444;
}

/* Botones de cantidad */

/* Cantidad */
.quantity-control {
  display: flex;
  align-items: center;
  gap: 6px;
}

.quantity-control button {
  background-color: #00bfff;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s;
}

.quantity-control button:hover {
  background-color: #0099cc;
}

.cantidad {
  min-width: 20px;
  text-align: center;
  font-weight: bold;
}

/* Circulos talla y color en columna */
.circulos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.circulo-talla {
  width: 36px;
  height: 36px;
  background-color: #444;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circulo-color {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #ccc;
}

/* Botones editar y quitar */
.carrito-botones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;

}

.carrito-botones .editar {
  background-color: #d6feff;
  border: none;
  color: rgb(0, 0, 0);
  padding: 8px 26px;
  width: 100%;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  text-align: center;
}


.product-header {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 10px;
  text-align: center;
  color: #333;
}

.carrito-botones .editar:hover {
  background-color: #009ea7;
}

.carrito-botones .eliminar-carrito-details {
  background-color: #ff8484;
  color: white;
  padding: 8px 26px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carrito-botones .eliminar-carrito-details:hover {
  background-color: #cc2c2c;
}

body.dark .carrito-botones .eliminar-carrito-details{
      background: linear-gradient(to right, #ff7b00, #ffd700);
}



#contenedor-carrito-checkout {
  display: flex;
  gap: 20px;
  padding: 30px;
  height: auto;
  margin: 0 auto;
  align-items: stretch; /* que ambos contenedores queden a la misma altura */
}

#carrito-detalle {
  flex: 1 1 60%;
  max-width: 60%;
  background-color: #f1f1f1;
  border-radius: 12px;
  padding: 5px;
  display: flex;
  flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

body.dark #carrito-detalle {
  flex: 1 1 60%;
  background-color: rgb(202, 202, 202);
  border-radius: 12px;
  padding: 5px;
  display: flex;
  flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#checkout-detalle {
  flex: 1 1 30%;
  max-width: 40%;
  position: relative;

}

.checkout-container {
  position: sticky;
  top: 150px;        /* controla cuándo se queda fijo */
  background-color: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: auto;
  font-family: 'Quicksand', sans-serif;
}



body.dark .checkout-container{
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.26);
}

.checkout-container-mobile {
      /* controla cuándo se queda fijo */
  background-color: #ffffff;
  height: auto;
  font-family: 'Quicksand', sans-serif;
}

#proceder-checkout p {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.checkout-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-buttons button {
  width: 100%;
  padding: 12px 0;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;

}

.seguir-comprando {
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  color: #363636;
}

.seguir-comprando:hover {
  background-color: #009fd0;
}

.proceder-pago {
  background: linear-gradient(to right, #a4ddf8, #fde0ea);
  width: 100%;
  padding: 13px;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  color:rgb(252, 252, 252);
}

.proceder-pago:hover {
  background: linear-gradient(to right, #67cfff, #fde0ea);
}


.boton-mobile-seguir-comprar{
    background-color: #f4f4f4;
    padding: 13px;
    margin-top: 10px;
    width: 100%;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.boton-mobile-seguir-comprar:hover{
    background-color: #e2e2e2;
    transform: scale(1.04);
}

.boton-mobile-checkout{
    background-color: #00cecead;
    padding: 13px;
    margin-top: 10px;
    width: 100%;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 201, 248, 0.685);
}
.boton-mobile-checkout:hover{
    background-color: #00c8cfb7;
    transform: scale(1.04);
}
/* Responsive (ya tienes esto, pero por si acaso) */
@media (max-width: 768px) {
  #checkout-detalle {
    display: none;
  }
}

/* Contenedor extra para móviles */
.checkout-mobile {
  display: none;
  background-color: #ffffff;
  margin-top: 20px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  #contenedor-carrito-checkout {
    flex-direction: column;
    padding: 20px;
  }

  #carrito-detalle {
  flex: 1;
  max-width: 100%;
  }


  #checkout-detalle {
    display: none;
  }

  .checkout-mobile {
    display: block;
  }
}

@media (max-width: 980px) {
  .precio-item {
    flex-direction: column;
  }
}


@media (max-width: 500px) {
  .home {
    left: 0;
    width: 100%;
    max-width: 100%;
  }

    .product-image{
        margin-left: 35%;
        width: 30%;
        height: 50%;
    }

        /* Imagen */
    .product-image img {
        width: 100%;
        height: 100%;
        border-radius: 12px;

    }

        #carrito-detalle {
        background-color: #d4d4d481;
        border-radius: 12px;
        padding: 0px;
        }
}

@media (max-width: 1131px) {
    .carrito-botones{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .carrito-botones a.editar {
        padding: 8px 14px;
        width: 80%;
    }
    
    .carrito-botones .eliminar-carrito-details {
        padding: 8px 14px;
        width: 100%;
    }

}

@media (max-width: 934px) {
    .product-image{
    width: 30%;
    height: 50%;
    }

    /* Imagen */
    .product-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;

    }

}

@media (max-width: 390px) {
    #contenedor-carrito-checkout {
        display: flex;
        gap: 20px;
        padding: 0px;
        height: auto;
        margin: 0 auto;
        align-items: stretch; /* que ambos contenedores queden a la misma altura */
    }
    .header-carrito-details .title-details-carrito {
        font-size: 1.5rem;
        margin: 0;
        color: rgb(0, 109, 124);
    }
    .header-carrito-details  {
        margin-bottom: 20px;
    }
 }


 #total-carrito {
  background-color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: #333;
}

.precio-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 8px;
}

.precio-item-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #e0e0e0;
  padding: 14px;
}

.precio-item:last-child {
  border-bottom: none;
}

.label {
  font-weight: 500;
}

.valor {
  font-weight: 600;
  color: #977644; /* o el color de acento de tu marca */
}


.carrito-item.fade-out {
  opacity: 0;
  transform: translateX(-20px); /* o translateY(-10px) si prefieres */
}



.edicion-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 33, 33, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.edicion-modal {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  position: relative;
}

.edicion-modal img {
  width: 70%;
  align-items: center;
  margin-left: 50px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.edicion-modal h2 {
  margin-bottom: 1rem;
  text-align: center;
  color: rgb(0, 112, 112);
 
}

body.dark .edicion-modal h2{
  color: #ffd700;
}

.content-text-precio-modal{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.grupo-opciones {
  margin-bottom: 1rem;
}

#guardar-edicion {
  width: 100%;
  padding: 10px;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.cerrar-modal {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}



#edicion-imagen {
  transition: opacity 0.2s ease-in-out;
}


.grupo-colores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-color {
  display: none;
}


.radio-color {
  display: none;
}

.color-preview {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgb(129, 129, 129);
}

.radio-color:checked + .color-preview {
  border: 1px solid #423600;
  transform: scale(1.4);
  box-shadow: 0 0 0 2px white;
}

.talla-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.radio-talla {
  display: none;
}

.talla-preview {
  padding: 6px 14px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: #f8f8f8;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.radio-talla:checked + .talla-preview {
  background-color: #a2a500;
  color: white;
  border-color: #222;
}

#guardar-edicion{
 background: linear-gradient(to right, #a4ddf8, #fde0ea);/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  transition: all 0.4s ease-in-out;
}

#guardar-edicion:hover{
  background: linear-gradient(to right, #48c5ff, #ff639a);
  transform: scale(1.05);
}
body.dark #guardar-edicion{
 background: linear-gradient(to right, #e94200, #dbd800);
 /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
 transition: all 0.4s ease-in-out;
}

body.dark #guardar-edicion:hover{
  background: linear-gradient(to right, #ff9b73, #fffc5f);
  transform: scale(1.05);
}






/* Contenedor principal */
.seleccion-empaque {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.btn-personalizar {
    background: linear-gradient(135deg, #ffffff, #ffffff); /* Degradado moderno */
    color: #000000;
    width: 100%;
    font-size: 1.3rem;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra más suave */
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 10px;
    position: relative;
    text-align: center; /* Centra el texto */
}

.btn-personalizar i {
    font-size: 1.8rem; /* Tamaño de los iconos */
    margin: 0 10px; /* Espacio entre los iconos y el texto */
    margin-top: 15px;
}

/* Estilo de los iconos a la izquierda y derecha */
.btn-personalizar i.bx-gift {
    position: absolute;
    left: 10px; /* Ajusta la posición del icono de regalo */
    color: #585858;
}

.btn-personalizar i.bx-plus {
    position: absolute;
    right: 10px; /* Ajusta la posición del icono de agregar */
    color: #585858;
}

.btn-personalizar .precio-personalizar-empaque {
    display: block; /* Muestra el precio en una nueva línea */
    margin-top: 10px; /* Espacio entre el texto y el precio */
    font-size: 1.2rem;
    font-weight: bold;
    color: #00a396;
}

/* Hover del botón */
.btn-personalizar:hover {
 background: linear-gradient(to right, #a4ddf8, #fde0ea);
}


/* Estilo del contenedor deslizable (blanco) */
.seleccion-empaque .contenedor-deslizable {
    width: 100%;
    background: rgba(255, 255, 255, 0.9); /* Fondo blanco con algo de transparencia */
    text-align: center;
    display: flex;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra ajustada */
    opacity: 1; /* Comienza invisible */
    max-height: 0; /* Comienza con altura 0 */
    overflow: hidden; /* Oculta el contenido fuera de la vista */
    transition: max-height 0.5s ease-out;
}

/* Cuando el contenedor es visible (al hacer clic) */
.seleccion-empaque .contenedor-deslizable.visible {
    max-height: 800px; /* Ajusta la altura máxima según el contenido */
    height: auto;
}




/* Contenedor general */
.steps-container {
    width: 100%;
    margin: auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Ocultar todos los pasos por defecto */
.step {
    display: none;
}

/* Hacer visible el paso actual */
.step.active {
    display: block;
}

/* Botones */
.boton-agregar-empaque {
    padding: 10px 8%;
    border: none;
    background: linear-gradient(to right, #69d0ff, #fcabc7);
    color: white;
        margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

body.dark .boton-agregar-empaque {
      background: linear-gradient(to right, #ff7b00, #ffd700);
}

.boton-agregar-empaque:hover {
     background: linear-gradient(to right, #a4ddf8, #fde0ea);
     transform: scale(1.05);
}

.boton-agregar-empaque:focus {
    outline: none;
}


/* Contenedor principal */
.seleccion-empaque {
    padding: 20px;
}

/* Grid de las opciones de empaque */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Mini contenedores de opciones */
.empaque-option {
    border: 2px solid #dddddd00;
    border-radius: 10px;
    text-align: start;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.target-option {
      border: 2px solid #dddddd00;
    border-radius: 10px;
    text-align: start;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.empaque-option:hover {
    transform: scale(1.05);
    border-color: #00d3e2;
}

/* Efecto de selección */
.empaque-option.selected {
    border-color: #009faa;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.target-option.selected-target {
    border-color: #009faa;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}





/* Imagen dentro de cada opción */
.empaque-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Información del empaque */
.empaque-info {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Estilo de los botones */



.p-seleccion-empaque{
  text-align: start;
  font-weight: 300;
  color: #4b4b4b;
}


.boton-agregar-final{
      padding: 10px 13%;
    border: none;
    background: linear-gradient(to right, #57d4c8, #4DBDB2);
    color: white;
        margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}



.boton-agregar-final:hover{
  transform: scale(1.1);
  background: linear-gradient(to right, #34aca0, #1f7e74);
}



/* Estilo general del paso 3 */
.personalizar-mensaje-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
}

/* Fila del formulario (De y Para) */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row label {
    font-weight: bold;
    width: 100px;
}

.form-row input, .form-row textarea {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.form-row textarea {
    height: 100px;
}

/* Contador de caracteres */
#mensaje-count {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}







/* Estilo del alert */
.custom-alert {
    position: fixed;
    top: 20px;
    left: 55%;
    transform: translateX(-50%);
      background: linear-gradient(135deg, #19fdc4, #41a1fa);
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    text-align: center;
    animation: fadeIn 0.5s ease-out, fadeOut 0.5s 2.5s ease-out;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Estilo del mensaje de error */
.error-message {
    display: none; /* Inicialmente ocultamos el mensaje */
    margin-top: 5px;
    font-size: 14px;
    color: #f44336; /* Color de texto rojo (error) */
    background-color: rgba(244, 67, 54, 0.1); /* Fondo suave rojo claro */
    padding: 8px;
    border-radius: 5px;
    border: 1px solid rgba(244, 67, 54, 0.3);
    position: relative;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}






.terminos-condiciones {
  max-width: 95%;
  margin: 30px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.politicas-privacidas {
    max-width: 95%;
  margin: 30px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

body.dark .terminos-condiciones {
  max-width: 95%;
  margin: 30px auto;
  padding: 30px;
 color: white;
  background: #424242;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.274);
}

body.dark .terminos-condiciones h2 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: white;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    border-left: 4px solid #008a8f;
    padding-left: 10px;
}

body.dark .terminos-condiciones h3 {
    color: white;
}
body.dark .terminos-condiciones h4 {
    color: white;
}
body.dark .politicas-privacidas h3 {
    color: white;
}

body.dark .politicas-privacidas {
  max-width: 95%;
  margin: 30px auto;
  padding: 30px;
  color: white;
  background: #424242;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.274);
}


body.dark .politicas-privacidas h2 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: white;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    border-left: 4px solid #008a8f;
    padding-left: 10px;
}


body.dark .politicas-privacidas strong {
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

body.dark .terminos-condiciones strong {
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}


/* Subtítulos de secciones */

.terminos-condiciones h2 {
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  border-left: 4px solid #4b0082;
  padding-left: 10px;
}

.politicas-privacidas h2 {
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  border-left: 4px solid #008a8f;
  padding-left: 10px;
}

.terminos-condiciones h3 {
  font-size: 1.1rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  padding-left: 10px;
}

.politicas-privacidas h3 {
  font-size: 1.1rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 400;
    font-family: "Roboto", sans-serif;
  padding-left: 10px;
}



.terminos-condiciones h4 {
  font-size: 1.05rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 300;
    font-family: "Roboto", sans-serif;
  padding-left: 10px;
}

.politicas-privacidas h4 {
  font-size: 1.05rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 300;
    font-family: "Roboto", sans-serif;
  padding-left: 10px;
}
/* Texto general */

.terminos-condiciones p {
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 15px;
  text-align: justify;
}

.politicas-privacidas p {
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 15px;
  text-align: justify;
}

/* Listas */
.terminos-condiciones ul {
  margin: 2px 0;
  padding-left: 20px;
}

.politicas-privacidas ul {
  margin: 2px 0;
  padding-left: 20px;
}



.terminos-condiciones li {
  margin-bottom: 8px;
    font-weight: 300;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
}

.politicas-privacidas li {
  margin-bottom: 8px;
    font-weight: 300;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
}

/* Enlaces */
.terminos-condiciones a {
  color: #4b0082;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.terminos-condiciones a:hover {
  border-bottom: 1px solid #0077ff;
  color: #0077ff;
}

/* Resaltado */
.terminos-condiciones strong {
  color: #1f1f1f;
    font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.politicas-privacidas strong {
  color: #1f1f1f;
    font-family: "Roboto", sans-serif;
  font-weight: 400;
}





