/* ---------------------------------------
   Estilos Globales
--------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #F2F2F2; /* Fondo de la página */
    color: #0D0D0D; /* Color del texto */
    line-height: 1.6;
    font-size: 14px;
}

/* Encabezados, títulos y botones */
h1, h2, h3, h4, h5, h6, .nav-item a, .footer-section h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Negrita */
}

/* Textos en general (párrafos, descripciones, etc.) */
p, .footer-text, .search-bar, .footer-section p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 0.9em;
}

.padding{
    padding-bottom: 20px;
}

.titulo-pagina {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1px;
  color: #4E5735;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: aparecerTitulo 1s ease-out forwards;
}

@keyframes aparecerTitulo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.titulo-pagina::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50%;
  height: 4px;
  background-color: #D6B15C;
  border-radius: 2px;
}

.seccion-titulo {
  text-align: center;
  padding: 10px 20px;
}

.small-font{
    font-size: 1.8em;
}
/* ---------------------------------------
   Estilos del Header
--------------------------------------- */
header {
    background-color: #6A7348;
    padding: 8px 0;
    color: #F2F2F2;
}

.contenedor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

header .nuevoPack {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #F2F2F2;
    letter-spacing: 1px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3)); /* Sombra permanente */
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Estilo diferenciado en la tipografía */
header .nuevoPack .nuevo {
    font-weight: 900 !important; /* Más negrita */
}

header .nuevoPack .pack {
    font-weight: 200 !important; /* Más delgada */
}

/* ---------------------------------------
   Logo
--------------------------------------- */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img {
    width: 50px;
    height: auto;
    margin-right: 10px;
    /*image-rendering: crisp-edges; */
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3)); /* Sombra permanente */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo a:hover .nuevoPack{
    transform: scale(1.1); /* Efecto de agrandar al pasar el mouse */
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5)); /* Mayor sombra en hover */
}

.logo a:hover img {
    transform: scale(1.1); /* Efecto de agrandar */
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5)); /* Mayor sombra en hover */
}

/* Margen en Mobile */
@media (max-width: 768px) {
  .logo {
    padding-left: 15px;
  }
}

/* ---------------------------------------
   Barra de Búsqueda
--------------------------------------- */
.barra-busqueda {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.barra-busqueda input[type="text"] {
    padding: 10px 15px;
    font-size: 15px;
    border: 2px solid #BCC69F;
    border-radius: 25px;
    outline: none;
    width: 250px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #DDE3BD;
    color: #555;
}

.barra-busqueda input[type="text"]:focus {
    border-color: #4E5735;
    box-shadow: 0 0 8px rgba(78, 87, 53, 0.5);
}

.barra-busqueda input[type="text"]::placeholder {
    color: #555;
}

.resultados-busqueda {
    max-height: 250px;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #DDE3BD;
    border: none;
    z-index: 999;
    display: none;
    padding: 5px;
}

.resultados-busqueda div {
    padding: 10px;
    margin-bottom: 6px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
    border: 1px solid #A6AF80;
    background-color: #C9D3A0;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.resultados-busqueda div:hover {
    background-color: #B5BF69;
    transform: scale(1.01);
}

.resultados-busqueda a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-family: 'Poppins', sans-serif;
    background-color: #C9D3A0;
}

.resultados-busqueda a:hover {
    background-color: #f0f0f0;
    color: #000;
    cursor: pointer;
}

/* Centrar en Mobile */
@media (max-width: 768px) {
  .barra-busqueda {
    padding-right: 10px;
  }
}

/* ---------------------------------------
   Menú de Navegación
--------------------------------------- */
.menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-link {
    background-color: #B5BF69; /* Color de fondo del botón */
    color: #ffffff; /* Color del texto */
    padding: 8px; /* Espaciado interno */
    font-size: 14px;
    text-decoration: none;
    border: none;
    border-radius: 5px; /* Bordes redondeados */
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-align: center;
}

.menu-link:hover {
    background-color: #9e9e4f; /* Cambio de color al hacer hover */
    transform: scale(1.05); /* Efecto de leve aumento */
}

/* ---------------------------------------
   Dropdown (Menú Desplegable de Servicios)
--------------------------------------- */
.servicios-dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #B5BF69; /* Color de fondo del botón Servicios */
    color: #ffffff; /* Color del texto del botón */
    padding: 11px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.dropbtn:hover {
    background-color: #9e9e4f;
    transform: scale(1.05);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #a6b05a; /* Fondo del menú desplegable */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
}

.dropdown-content.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    color: #ffffff; /* Color de los enlaces dentro del dropdown */
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95em;
    border-bottom: 1px solid #8a9d47;
    transition: background-color 0.3 ease;
    text-align: center;
    border-radius: 6px;
    margin: 2px 0;
}

.dropdown-content a:hover {
    background-color: #888f55; /* Hover en los enlaces del dropdown */
}

.servicios-dropdown:hover .dropdown-content {
    display: block; /* Mostrar el dropdown al pasar el mouse */
}

/* Eliminar márgenes extra en los enlaces */
.dropdown-content a {
    margin: 0;
}

/* Efecto de sombra sutil en los enlaces */
.dropdown-content a:hover {
    background-color: #7f8c35; /* Fondo más oscuro al pasar el mouse */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Sombra suave al pasar el mouse */
}

/* ---------------------------------------
   Botón Hamburguesa para pantallas pequeñas
--------------------------------------- */

.hamburguesa {
    display: none;
    position: relative;
    z-index: 10;
}

/* Menú móvil */
.menu-movil {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    background: #6A7348;
    width: 200px;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* RESPONSIVE: Ajustes para pantallas pequeñas */
@media (max-width: 767px) {
    /* Ocultar el span 'NuevoPack' */
    .nuevoPack {
        display: none;
    }

    /* Ajustar la barra de búsqueda */
    .barra-busqueda {
        display: flex;
        align-items: center;
        max-width: 100%;
        gap: 5px;
    }
    
    .barra-busqueda input {
        width: 120px; /* Reducir el tamaño del input */
    }

    /* Mostrar el botón hamburguesa */
    .hamburguesa {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: #ffffff;
        cursor: pointer;
        margin-left: 5px;
        margin-right: 15px;
    }

    /* Ocultar el menú de navegación normal en móviles */
    .menu {
        display: none;
    }

    /* Estilos para el menú desplegable móvil */
    .menu-movil {
        display: block;
        position: absolute;
        top: 60px;
        right: 10px;
        background: #6A7348;
        width: 200px;
        border-radius: 5px;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .menu-movil a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 10px;
        border-bottom: 1px solid #B5BF69;
    }

    .menu-movil a:hover {
        background: #B5BF69;
    }

    /* Submenú de servicios en móvil */
    .submenu-movil {
        display: none;
        padding-left: 10px;
    }

    .submenu-movil a {
        font-size: 14px;
        padding: 5px 10px;
        display: block;
    }

      /* Estilo para el menú hamburguesa */
  .navbar-collapse {
    position: absolute;
    z-index: 1;
  }

  /* Estilo para el carrusel */
  .carousel {
    position: relative;
    z-index: 0;
  }
}

/* ---------------------------------------
   Estilos para Footer
--------------------------------------- */
.mapa-sitio {
    text-align: left;
    margin-left: 20px;
}

.mapa-sitio > li {
    margin-bottom: 10px;
}

.mapa-sitio > li > a:hover {
    color: #333724;
    background-color: #F2F2F2;
    border-radius: 5px;
    text-decoration: none;
}

.mapa-sitio a {
    text-decoration: none;
}

.sublista-servicios {
    margin-left: 15px;
    margin-top: 5px;
    border-left: 2px solid #F2F2F2;
    padding-left: 10px;
}

.sublista-servicios a {
    border-left: 2px solid transparent;
    background-image: linear-gradient(to right, rgba(242, 242, 242, 0.2), transparent);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 2px 100%;
    padding-left: 10px;
    transition: all 0.2s ease-in-out;
}

.sublista-servicios li a:hover {
    color: #c663a1 !important;
    transform: translateX(5px);
    background-color: #F2F2F2;
    border-radius: 5px;
    text-decoration: none;
}

.sublista-servicios li {
    margin-bottom: 6px;
    margin-top: 6px;
}

footer {
    background-color: #4E5735;
    color: #F2F2F2;
    padding: 10px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 5px;
}

.footer-content div {
    margin: 15px;
}

.footer-content h4 {
    font-size: 1em;
    margin-bottom: 10px;
}

.footer-content a {
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

.footer-content a:hover {
    color: #ffffff;
    transform: translateX(3px);
    text-decoration: underline;
}

.footer-bottom {
    padding: 15px 0;
    background-color: #c663a1;
    color: #ffffff;
}

.liststyle_none{ 
    list-style: none;
    padding: 0;
    margin: 0;
}

.informacion-contacto{
    margin-top: 40px;
    font-size: 16px;
}

.mapa-sitio span,
.mapa-sitio a {
    color: #F2F2F2;
}

.footer-left,
.footer-right {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#link-email {
    color: #fff;
}

#link-email:hover {
    color: pink;
}
/* ---------------------------------------
   Carrusel de imágenes en index
--------------------------------------- */
.carousel{
    background-color: #4E5735;
    padding: 40px 0;
    margin-top: 15px;
}

.carousel-inner {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto; 
    height: 300px; 
    overflow: hidden;
    z-index: 0;
    border: 5px solid white; /* Borde visible dentro del fondo verde */
    border-radius: 9px;
    background-color: white; /* Fondo interno blanco para que resalte */
}
.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}
.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.carousel-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background: rgba(106, 115, 72, 0.8);
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9em;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(106, 115, 72, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.prev:hover, .next:hover {
    background: rgba(106, 115, 72, 0.9);
    opacity: 1;
}

.prev {
    left: 8px;
}

.next {
    right: 8px;
}

/* Estilo del ícono */
.prev i, .next i {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.prev:hover i, .next:hover i {
    color: white;
}

/* Estilo para los indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #6A7348;;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #fff;
}

/* ---------------------------------------
   Estilos para los artículos
--------------------------------------- */
.articles {
    padding: 20px;
    text-align: center;
}
.article-container { 
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.article-container article {
    background: #f4f4f4;
    padding: 15px;
    width: 40%;
    border-radius: 5px;
    background: rgba(106, 115, 72, 0.8);
    color: white;
}
.article-container article h3 { 
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .article-container {
        flex-direction: column; /* Apila los artículos uno debajo del otro */
        align-items: center;    /* Centra los artículos horizontalmente */
    }

    .article-container article {
        width: 90%;             /* Ancho para mobile */
        margin-bottom: 20px;    /* Espacio entre los artículos */
    }
}

/* Estilos para el rectángulo informativo */
.important-info {
    background: #fff5b1;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    font-size: 0.9em;
}
.info-box { 
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #c663a1;
    color: white;
    border-radius: 10px;
}

/* Estilos para los servicios */
.servicios {
    text-align: center;
    padding: 20px;
}

/* Ajuste del tamaño del título */
.service-title { 
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}

/* Imágenes dentro de los servicios */
.service img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 8px;
}

/* Descripción de los servicios */
.service-description {
    font-size: 0.9em;
    color: #444;
    line-height: 1.5;
}

/* Contenedor de los servicios */
.services-container { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo de cada servicio (tarjeta) */
.service {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: calc(50% - 20px); /* Dos columnas */
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto hover en las tarjetas */
.service:hover { 
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column; /* Apila las tarjetas verticalmente */
        align-items: center;    /* Centra cada tarjeta */
    }

    .service {
        width: 90% !important;  /* Hace que cada servicio ocupe casi toda la pantalla */
    }
}

/* ---------------------------------------
   Estilos para Fichas de Servicio
--------------------------------------- */
.contenedor-ficha-servicio {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nombre-producto {
    font-size: 1.8em;
    margin-top: 20px;
    color: #6A7348;
}

.imagen-producto img {
    width: 500px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

select, input[type="number"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.font-size-descripcion{
    font-size: 0.9em;
}
/* ----- Medios de Pago ----- */
.medios-pago {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.medios-pago li {
    padding: 6px 10px;
    margin-bottom: 6px;
    background-color: #f5f5f5;
    border-left: 4px solid #6A7348;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #333;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s ease;
}

.medios-pago li:hover {
    background-color: #ececec;
}

/* ----- Tarjetas Almanaques -----*/
.tarjeta-modelo{
    flex: 0 0 auto;
    scroll-snap-align: start;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    min-width: 240px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.tarjeta-modelo:hover {
    transform: scale(1.02);
}

.tarjeta-modelo img{
    width: 100%;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
}

@media (max-width: 768px) {
  .tarjeta-modelo img {
    height: 150px;
  }

  .tarjeta-modelo img {
    height: 120px;
  }
}

.tarjeta-modelo h4{
    color: #4E5735;
}

.tarjeta-modelo p{
    color: #555;
}

.carrusel-almanaques{
    border-radius: 16px;
    overflow: hidden;
}

.contenedor-carrusel{
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.modal-imagen {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.contenido-modal {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.cerrar-modal {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar-modal:hover {
  color: #bbb;
}

.imagen-con-hover {
  position: relative;
  display: inline-block;
  cursor: zoom-in;
}

.imagen-con-hover img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.texto-hover {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.imagen-con-hover:hover .texto-hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .texto-hover {
    opacity: 1;
    font-size: 0.8rem;
    bottom: 5px;
  }
}

/* ----- Calculadora de Precios -----*/
.error-grupo {
  display: none;
  color: #d9534f;
  font-size: 13px;
  margin-top: 6px;
}

.resultado {
    margin-top: 20px;
    text-align: center;
    font-size: 1.2em;
    color: #333;
}

#calculadora-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#calculadora-form label,
#calculadora-form input,
#calculadora-form select,
#calculadora-form button {
    font-size: 16px;
}

#calculadora-form button {
    background-color: #6A7348;
    color: #ffffff;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#calculadora-form button:hover {
    background-color: #888f55;
}

/* Estilo para alinear las casillas y etiquetas de servicio */
.opcion-servicio {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.opcion-servicio input[type="checkbox"] {
    margin-right: 8px; /* Espacio entre la casilla y el texto */
}

#troquelado_seccion,
#barniz_seccion,
#estuches_seccion {
    transition: all 0.3s ease;
    display: none;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-left: 4px solid #6A7348;
    padding: 15px;
    margin-top: 10px;
    border-radius: 6px;
}

.resultado-precio {
    margin-top: 20px;
    font-size: 18px;
    color: green;
}

.calculadora {
    max-width: 600px;
    max-height: 600px;
    overflow-y: auto;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    padding-right: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
.calculadora h2 {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.calculadora h3 {
  font-size: 1.2rem;
  color: #444;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calculadora h3::before {
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 6px;
}

h3:has(#troquelado_toggle)::before {
  content: "✂️";
}
h3:has(#barniz_toggle)::before {
  content: "✨";
}
h3:has(#estuches_toggle)::before {
  content: "📦";
}

/* Radios y checkboxes */
input[type="checkbox"],
input[type="radio"] {
  accent-color: #6A7348;
}
  
.calculadora label {
    display: block;
    margin-top: 5px;
    font-weight: 600;
    color: #444;
    font-size: 0.85rem;
}
  
  .calculadora input[type="number"],
  .calculadora input[type="text"] {
    width: 100%;
    margin-bottom: 0.6rem;
    padding: 8px;
    margin-top: 3px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #fefefe;
    font-size: 0.85rem;
    transition: border-color 0.2s ease;
  }

.calculadora input[type="number"]:focus,
.calculadora input[type="text"]:focus {
  border-color: #6A7348;
  outline: none;
}

.calculadora input[type="checkbox"] {
  transform: scale(1.1);
  accent-color: #6A7348;
}

.calculadora input[type="radio"] {
  accent-color: #6A7348;
  margin-right: 6px;
}

.calculadora button {
    margin: 25px auto 0 auto;
    padding: 12px 24px;
    font-size: 1rem;
    background-color: #6A7348;
    transition: transform 0.2s ease, background-color 0.2s ease;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: block;
}

.calculadora button:hover {
  background-color: #4E5433;
  transform: scale(1.05);
}

.resultado-precio {
    margin-top: 20px;
    text-align: center;
    background-color: #e0ffe0;
    padding: 15px;
    border: 1px solid #b2d8b2;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c662d;
  }

.grupo-campo {
    margin-bottom: 10px;
}

.grupo-campo label {
  font-weight: 600;
  color: #333;
}

.grupo-campo input {
  background-color: #fafafa;
  border: 1px solid #ccc;
  transition: border-color 0.2s ease;
}

.grupo-campo input:focus {
  border-color: #6A7348;
  outline: none;
}

.mensaje {
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.85em;
}

.mensaje.exito {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.mensaje.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .fila-doble {
        flex-direction: column;
    }

    .columna-izquierda,
    .columna-derecha {
        max-width: 100%;
    }
}

.calculadora .boton-consulta {
    background-color: #6A7348;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    margin-top: 1em;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.calculadora .boton-consulta:hover {
    background-color: #4E5433;
    transform: scale(1.05);
}

#estuches_seccion .grupo-campo label {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 5px;
}

#estuches_seccion .grupo-campo input[type="radio"] {
  margin: 0;
  transform: scale(1.05);
}

/* ----- Formulario Contacto ----- */
.texto-centrado{
    text-align: center;
}

.formulario-contacto {
    margin: 50px auto; /* Centra horizontalmente */
    margin-top: 20px;   
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.form-grupo {
    margin-bottom: 12px;
}

.form-grupo button {
    margin: 0 auto;
    display: block;
}

.formulario-contacto form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.formulario-contacto input, .formulario-contacto textarea {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
}

.formulario-contacto button {
    background-color: #4E5735;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    max-width: 250px;
    align-self: center;
}

.formulario-contacto button:hover {
    background-color: #3b4427;
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Estilo para los inputs, selects y textarea */
.formulario-contacto input[type="text"],
.formulario-contacto input[type="email"],
.formulario-contacto input[type="tel"],
.formulario-contacto input[type="file"],
.formulario-contacto textarea,
.formulario-contacto select {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.formulario-contacto select {
    color: #555;
    font-size: 14px;
}

.formulario-contacto textarea {
    resize: none;
}

.formulario-contacto input:focus,
.formulario-contacto textarea:focus,
.formulario-contacto select:focus {
    border-color: #4E5735;
    outline: none;
    box-shadow: 0 0 0 2px rgba(78, 87, 53, 0.3);
}

::placeholder {
    font-size: 14px;
    color: #999;
}

button {
    background-color: #6A7348;
    color: white;
    border: none;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #888f55;
}

.fieldset-servicios {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
}

.fieldset-servicios legend {
    margin-top: 5px;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 600; 
    color: #6A7348;
    margin-bottom: 2px;
}

.fieldset-servicios label {
    margin-left: 8px;
    margin-bottom: 8px;
}

.checkbox-wrapper-46 label.opcion-servicio:first-child {
    margin-top: 4px;
}

.textarea-wrapper {
    position: relative;
    width: 100%;
}

.textarea-wrapper textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    padding-bottom: 28px;
    resize: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.textarea-wrapper .contador-caracteres {
    position: absolute;
    bottom: 25px;
    right: 50px;
    font-size: 12px;
    color: #666;
    pointer-events: none;
}

/* Tablet */
@media (max-width: 1024px) {
    .textarea-wrapper .contador-caracteres {
        right: 30px;
    }
}

/* Móvil */
@media (max-width: 767px) {
    .textarea-wrapper .contador-caracteres {
        right: 10px;
    }
}

/* Estilo para fieldset y etiquetas */
.formulario-contacto fieldset {
    border: none;
    margin-bottom: 16px;
    padding: 0;
}

.formulario-contacto label {
    display: block;
    margin-top: 12px;
    font-weight: 500;
    color: #6A7348;
}

/* Scrollbar personalizado */
.scroll-formulario::-webkit-scrollbar {
    width: 8px;
}
.scroll-formulario::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

/* Scroll del formulario de contacto */
.scroll-formulario-contacto {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px; /* Espacio para que no corte el contenido */
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

/* Ajustes para que el scroll sea más suave y visible */
.scroll-formulario-contacto::-webkit-scrollbar {
    width: 8px;
}
.scroll-formulario-contacto::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

/* Estilo para el mensaje de envío de mail */
.mensaje-envio-mail{
    margin-top: 1rem; 
    font-weight: bold;
    color: #555;
}

.nombre-archivo{
    font-size: 14px; 
    color: #444; 
    margin-top: 5px;
}

.mensaje-advertencia{
    color: red; 
    font-size: 14px; 
    display: none;
}

/* Radio buttons de Uiverse.io */ 
.radio-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .radio-input * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  .radio-input label {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #B6C197;
    border-radius: 10px;
    padding: 10px 15px;
    width: 220px;
    cursor: pointer;
    height: 50px;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    background-color: #f0f4e8;
  }
  
  .radio-input label::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 45px;
    z-index: -1;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 10px;
    border: 2px solid transparent;
  }
  .radio-input label:hover::before {
    transition: all 0.2s ease;
  }

.radio-input .label:has(input:checked) {
    background-color: #4E5735;
    border-color: #3b4427;
    color: white;
}

.radio-input .label:has(input:checked) .text {
    color: white;
}

.radio-input label:hover {
    background-color: #e0e6d4;
}

  .radio-input .label:has(input:checked)::before {
    height: 50px;
  }
  .radio-input .label .text {
    color: #555;
  }
  
  .radio-input .label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #6A7348;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    position: relative;
  }
  .radio-input .label input[type="radio"]:checked {
    background-color: #6A7348;
    box-shadow: 0 0 0 3px #dce2c6;
  }
  
  .radio-input .label input[type="radio"]:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  
  .radio-input .label input[type="radio"]:checked::before {
    opacity: 1;
  }

.radio-input .text {
    margin: 0;
    font-size: 13px;
    color: #4E5735;
    font-weight: 500;
}

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
      box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  
  /* Checkboxes de Uiverse.io */ 
.checkbox-wrapper-46 input[type="checkbox"] {
    display: none;
    visibility: hidden;
  }
  
  .checkbox-wrapper-46 .cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
  }
  .checkbox-wrapper-46 .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-46 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098a9;
    transition: all 0.2s ease;
  }
  .checkbox-wrapper-46 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-46 .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: grey;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
  }
  .checkbox-wrapper-46 .cbx span:last-child {
    padding-left: 8px;
  }
  .checkbox-wrapper-46 .cbx:hover span:first-child {
    border-color: grey;
  }
  
  .checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child {
    background: #4E5735;
    border-color: #6A7348;
    animation: wave-46 0.4s ease;
  }
  .checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
  }
  .checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
  }
  
  @keyframes wave-46 {
    50% {
      transform: scale(0.9);
    }
  }

  /* Color verde oscuro al estar marcado */
.inp-cbx:checked + .cbx span svg {
    stroke: whitesmoke; /* verde oscuro */
    animation: checkAnim 0.3s ease forwards;
}

/* Animación personalizada */
@keyframes checkAnim {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Texto del checkbox */
.cbx > span:last-child {
    color: #444;
    transition: color 0.3s;
}

.inp-cbx:checked + .cbx > span:last-child {
    color: #4E5735;
}

/* Subir archivos de Uiverse.io */
.custum-file-upload {
    height: 200px;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 2px dashed #aaa;
    background-color: rgba(255, 255, 255, 1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 48px 35px -48px rgba(0,0,0,0.1);
    text-align: center;
    transition: border 0.3s ease;
    margin-top: 8px;
  }
  
.custum-file-upload:hover {
    border-color: #6A7348;
}

.custum-file-upload .icon {
    font-size: 24px;
    color: #6A7348;
    margin-bottom: 8px;
}

  .custum-file-upload .icon svg {
    height: 80px;
    fill: rgba(75, 85, 99, 1);
  }
  
  .custum-file-upload .text span {
    font-weight: 400;
    font-size: 14px;
    color: #555;
  }
  
  .custum-file-upload input[type="file"] {
    display: none;
  }

  /* Ícono de cargado de Uiverse.io */ 
.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: #183153;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
  }
  
  .dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
  }
  
  .dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
  }
  
  .dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
  }
  
  .dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
  }
  
  .dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
  }
  
  .dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
  }
  
  .dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
  }
  
  .dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
  }
  
  .dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
  }
  
  .dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
  }
  
  .dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
  }
  
  .dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
  }
  
  .dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
  }
  
  .dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
  }
  
  .dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
  }
  
  .dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
  }
  
  @keyframes pulse0112 {
    0%,
    100% {
      transform: scale(0);
      opacity: 0.5;
    }
  
    50% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
/* ---------------------------------------
   Estilos para página Contacto
--------------------------------------- */
main.contacto-page {
    margin-top: 40px;
}

main.contacto-page h1 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.formulario-contacto-consultas,
.info-contacto {
    flex: 1 1 45%;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    align-self: stretch;
}

.formulario-contacto-consultas {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
    margin-top: 0px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.formulario-contacto-consultas form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.formulario-contacto-consultas .form-grupo {
    margin-bottom: 12px;
    width: 100%;
}

.formulario-contacto-consultas label {
    margin-top: 10px;
    display: block;
    font-weight: 500;
    color: #6A7348;
    text-align: left;
    width: 100%;
    max-width: 500px;
}

.formulario-contacto-consultas input,
.formulario-contacto-consultas textarea {
    margin-top: 5px;
    margin-bottom: 15px;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    max-width: 500px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.formulario-contacto-consultas textarea {
    resize: none;
}

.formulario-contacto-consultas input:focus,
.formulario-contacto-consultas textarea:focus {
    border-color: #4E5735;
    outline: none;
    box-shadow: 0 0 0 2px rgba(78, 87, 53, 0.3);
}

.formulario-contacto-consultas button {
    background-color: #4E5735;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    max-width: 250px;
    align-self: center;
}

.formulario-contacto-consultas button:hover {
    background-color: #3b4427;
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

::placeholder {
    font-size: 14px;
    color: #999;
}

.info-contacto{
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    color: #333;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.formulario-contacto-consultas h2, .info-contacto h2{
    flex: 1;
    min-width: 300px;
    color: #6A7348;
    text-align: center;
}

.mapa-google{
    width:100%; 
    height:300px;
}

.contact-info {
    margin-top: 40px;
    font-size: 16px;
    color: #555;
}

/* Contador de caracteres para el textarea */
.formulario-contacto-consultas .textarea-wrapper .contador-caracteres {
    right: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
    .formulario-contacto-consultas .textarea-wrapper .contador-caracteres {
        right: 30px;
    }
}

/* Móvil */
@media (max-width: 767px) {
    .formulario-contacto-consultas .textarea-wrapper .contador-caracteres {
        right: 10px;
    }
}

/* ---------------------------------------
    Estilos para página Quiénes Somos
--------------------------------------- */
/* Estilo para resaltar artículos como tarjetas */
.articulo {
    background-color: #ffffff;
    padding: 30px 20px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    transition: transform 0.2s ease;
}

.articulo:hover {
    transform: translateY(-3px);
}

/* Espaciado entre secciones */
.seccion {
    margin-bottom: 40px;
}

/* Título principal y subtítulo */
.titulo-principal {
    font-size: 2.5em;
    font-weight: 700;
    color: #6A7348;
    margin: 20px 0;
}

.subtitulo {
    font-size: 1.5em;
    color: #888f55;
    margin-bottom: 30px;
}

/* Sección: Nuestra Historia */
.nuestra-historia {
    margin: 40px auto;
    max-width: 1200px;
    text-align: center;
}

.nuestra-historia p {
    font-size: 1em;
    line-height: 1.8;
    color: #0D0D0D;
}

.imagen-historia {
    margin-top: 20px;
    max-width: 100%;
    border-radius: 8px;
}

/* Misión y Valores */
.mision-valores {
    background-color: #B5BF69;
    padding: 40px 20px;
    border-radius: 10px;
}

.mision, .valores {
    margin-bottom: 20px;
}

.mision h3, .valores h3 {
    font-size: 1.5em;
    color: #c663a1;
    margin-bottom: 10px;
}

.mision p, .valores ul {
    font-size: 1em;
    color: #333333;
    line-height: 1.6;
}

.valores ul {
    list-style-type: none;
    padding: 0;
}

.valores li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.valores li::before {
    content: "✔️";
    color: #6A7348;
    margin-right: 8px;
}

/* Nuestro Equipo */
.nuestro-equipo {
    text-align: center;
    padding: 40px 20px;
}

.nuestro-equipo p {
    font-size: 1em;
    line-height: 1.8;
    color: #0D0D0D;
}

.imagen-equipo {
    margin-top: 20px;
    max-width: 100%;
    border-radius: 8px;
}

/* Logros y Datos Clave */
.logros-datos {
    background-color: #B5BF69;
    padding: 30px 20px;
    border-radius: 10px;
}

.logros-datos h2{
    color: #c663a1;
}

.logros-datos ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.logros-datos li {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.logros-datos li::before {
    content: "🎯";
    position: absolute;
    left: 0;
    color: #6A7348;
    font-size: 1.2em;
}

/* Cierre */
.cierre {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
}

.cierre p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #6A7348;
}

.botones {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.botones .btn {
    background-color: #6A7348;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.botones .btn:hover {
    background-color: #888f55;
}

.cierre .card {
    background-color: #f5f5f5;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
  
  .fila-doble {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin: 40px 0;
}

.columna-izquierda, .columna-derecha {
    flex: 1;
    min-width: 300px;
}

/* Limitar el ancho para que no se vean desproporcionadas */
.columna-izquierda {
    max-width: 48%;
}

.columna-derecha {
    max-width: 48%;
}

@media (max-width: 768px) {
    .fila-doble {
        flex-direction: column;
    }

    .columna-izquierda,
    .columna-derecha {
        max-width: 100%;
        width: 100%;
        margin: 0 auto; /* Centra el div horizontalmente */
    }
}

.descripcion-y-pagos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
