* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
        
        
        .container-paquetes {
             background-color: #fff;           
            margin: 100px 10px 10px;
        }
        
        .back-button {
            display: flex;
            align-items: center;
            margin: 10px 50px;
            color: #333;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
        }
        
        .back-button svg {
            margin-right: 5px;
        }
        
        .package-card1 {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin: 10px 50px;

            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .package-title-first {
            font-size: 20px;
            font-weight: bold;
            color: #333;
        }
        
        .package-price {
            text-align: right;
        }
        
        .price {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }
        
        .price-note {
            font-size: 14px;
            color: #666;
        }
        
        .button-group {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 5px;
            border: none;
            font-weight: bold;
            cursor: pointer;
        }
        
        .btn-quote {
            background-color: white;
            border: 1px solid #00B259;
            color: #00B259;
        }
        .btn-quote:hover {
    background: #27ae60;
    color: white;
}
        
        .btn-buy {
            background-color: #00B259;
            color: white;
        }
        
        .package-card1_123 {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin: 10px 50px;
        
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .package-title-first_123 {
            font-size: 20px;
            font-weight: bold;
            color: #333;
        }
        
        .package-price_123 {
            text-align: right;
        }
        
        .price_123 {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }
        
        .price-note_123 {
            font-size: 14px;
            color: #666;
        }
        
        .button-group_123 {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .btn_123 {
            padding: 10px 20px;
            border-radius: 5px;
            border: none;
            font-weight: bold;
            cursor: pointer;
        }
        
        .btn_123.btn-quote_123 {
            background-color: white;
            border: 1px solid #00B259;
            color: #00B259;
        }
        
        .btn_123.btn-quote_123:hover {
            background: #27ae60;
            color: white;
        }
        
        .btn_123.btn-buy_123 {
            background-color: #00B259;
            color: white;
        }
        

        .container-paquetes2 {
            background-color: #fff;
            padding: 10px 0;
            margin: 0 3.8%;

        }

@media (max-width: 768px) {
    .package-card1 {
        display: none; /* Oculta la versión grande */
    }

    .package-card1_123 {
        display: flex !important; /* Asegura que se muestre en móviles */
    }
    .container-paquetes2 {
        margin: 0 5%;
    }
}


        

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 100000000;
    justify-content: center;
    align-items: center;
}

/* Contenido del modal */
.modal-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Botón de cerrar */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
    color: #d9534f;
}

.close-btn:hover {
    color: #c9302c;
}

/* Título principal */
.modal-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #d9534f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Contenedor de imagen y detalles */
.modal-body {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Imagen a la izquierda (más grande) */
.modal-image img {
    max-width: 350px;
    height: 350px;
    border-radius: 5px;
}

/* Información del paquete a la derecha */
.modal-details {
    flex: 1;
}

/* Nombre del paquete */
.package-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Selector de cantidad */
.form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

label {
    font-weight: bold;
}

/* Botones de cantidad */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.quantity-btn:hover {
    background: var(--primary-darkgreen);
}

#quantity {
    text-align: center;
    width: 50px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

/* Costo del boleto */
.quote-result { 
    font-size: 27px; /* Letra más grande */
    font-weight: bold;
    color: brown; /* Color marrón */
    position: absolute;
    bottom: 20px; /* Pegado a la parte inferior */ 
    width: 100%;    
    padding: 10px 0;
}

/* Sección "No incluye" */
.no-incluye-section h6 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
}

.no-incluye-section ul {
    padding-left: 20px;
    list-style-type: disc;
}

.no-incluye-section li {
    font-size: 14px;
    color: #666;
}
.no-incluye-list {
 border: 1px solid #ddd;
 padding: 10px;
 border-radius: 10px;
 margin: 10px 10px;   
 background-color: whitesmoke;
}


/* css de nuevo usuario */
/* Contenedor principal para centrar el botón */



        /* Add this to your existing CSS */

.program-container {
    display: flex;
    margin: 10px 40px;
    
}

.program-included {
    flex: 2;
    background-color: white;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    gap: 40px;
    margin: 0 10px;
}

.program-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.program-not-included,
.program-important {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.program-title {
    color: #5D311A;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #E0E0E0;
    padding-bottom: 10px;
}

.program-list {
    list-style-type: none;
}

.program-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.program-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
}

.program-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.program-btn {
    display: block;
    background-color: var(--primary-green);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s;
}

.program-btn:hover {
    background-color: var(--primary-darkgreen);
}



/* What to bring section styling */

.what-to-bring-container {
    margin: 30px 50px;
}

.section-title {
    color: #5D311A;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.what-to-bring-content {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 30px;
}

.item-row {
    display: flex;
    margin-bottom: 20px;
}

.item-row:last-child {
    margin-bottom: 0;
}

.item {
    display: flex;
    align-items: center;
    width: 50%;
}

.item-icon {
    margin-right: 10px;
    flex-shrink: 0;
}

.item-text {
    color: #333;
    font-size: 16px;
}

/* 📌 Estilos para pantallas menores a 768px */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .modal-image {
        display: none; /* Ocultar imagen en móviles */
    }

    .modal-title {
        font-size: 16px;
        text-decoration: none;
        
    }

    .modal-content {
        width: 95%;
        height: 500px;
        padding: 15px;
    }

    .package-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* Ajustes del formulario */
    .form-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    /* La etiqueta "Cantidad de pasajeros" en una fila */
    .form-group label {
        font-size: 12px;
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    /* El campo de cantidad en una fila diferente */
    #quantity {
        display: block;
        width: 50%;
        margin: 5px auto;
        font-size: 14px;
        text-align: center;
    }

    /* Los botones de aumentar y disminuir en una fila diferente */
    .quantity-selector {
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-top: 5px;
    }

    .quantity-btn {
        font-size: 16px;
        padding: 5px 10px;
    }

    /* Sección "No incluye" */
    .no-incluye-section {
        width: 100%;
        text-align: left;
        margin: 5px;
    }

    .no-incluye-list {
        border: 1px solid #ddd;
        padding: 10px 0;
        border-radius: 10px;
        margin: 7px;
        background-color: whitesmoke;
        width: 97%;
    }
    .no-incluye-list ul li {
        
        padding: 0; 
        margin: 10px;
    }

    /* Costo del boleto en su propia fila */
    .quote-result-container {
        
        padding: 10px 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .quote-result-container p {
        text-align: center;
        font-size: 16px;
        margin: 10px;
    }
}

        /* Cuando la pantalla sea pequeña (menos de 768px), cambia el margen */
        @media (max-width: 768px) {
            .container-paquetes {
                margin: 90px 5px 0 5px; /* Mantiene el margen de 5px en los costados */
            }
        
            .back-button {
                margin-left: 10px;
                font-size: 13px; /* Reduce el tamaño del texto en pantallas pequeñas */
            }
        
            .back-button svg {
                width: 18px;
                height: 18px;
            }
            .program-container {
                flex-direction: column;
                margin: 15px 2%; /* 5px en todos los lados */
        
            }
            .section-title {
                font-size: 16px;
                margin-left: 10px;
            }
            .program-included{
                margin: 15px 1%;
            }
        
            
            .program-buttons{
                margin: 15px 5px; /* 5px en todos los lados */
            }
            
            .what-to-bring-container{
                margin: 15px 5px; /* 5px en todos los lados */
            }
            .what-to-bring-content{
                margin: 15px 5px; /* 5px en todos los lados */
            }
            
            .item-row {
                flex-direction: column;
            }
        
            .item {
                width: 100%;
                margin-bottom: 15px;
            }
            
            .item-row:last-child .item:last-child {
                margin-bottom: 0;
            }
           
            /* Estilos para la versión móvil */
        .package-card1_123 {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin: 10px auto;
            width: 90%;
        }
        
        /* Contenedor para título y precio en la misma fila */
        .package-header_123 {
            display: flex;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            padding-top: 5px;
        }
        
        /* Cada columna ocupa el 50% */
        .package-title-first_123,
        .package-price_123 {
            width: 50%;
            text-align: center;
        }
        
        /* Estilos del precio */
        .price_123 {
            font-size: 18px;
            font-weight: bold;
            display: block;
        }
        
        /* Nota del precio debajo */
        .price-note_123 {
            font-size: 14px;
            color: #666;
            display: block;
            margin-top: 3px;
        }
        
        /* Botones en una segunda fila con 50% cada uno */
        .button-group_123 {
            display: flex;
            justify-content: center;
            gap: 10px;
            width: 100%;
            margin-top: 15px;
        }
        
        
        .btn_123 {
            width: 48%; /* Para que cada botón ocupe casi la mitad */
            padding: 10px 20px;
            border-radius: 5px;
            border: none;
            font-weight: bold;
            cursor: pointer;
        }
        
           
            
        }