/* Mundo Arjona - Formulario de Registro */
/* Version: 1.0.0 */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: url('images/bg.jpg') no-repeat center top;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 40px;
}

.logo {
    height: 40px;
    margin: 30px;
}

.enviar-btn {
    width: 40%;
    padding: 12px;
    background-color: #000;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.enviar-btn:hover {
    background-color: #333;
}

.ticket {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 30px 20px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.ticket::before {
    content: '';
    width: 60px;
    height: 30px;
    background: #352c1b;
    position: absolute;
    top: 0;
    left: calc(50% - 30px);
    border-radius: 0 0 40px 40px;
}

h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-family: monospace;
}

p.question {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 22px;
}

label {
    font-size: 12px;
    font-weight: 500;
    display: block;
    text-align: left;
    margin: 10px 0 5px;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    background: #f0f0f0;
    margin-bottom: 15px;
    border-radius: 5px;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%207%205-7z%22%20fill%3D%22%23666%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 7px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 12px;
    color: #333;
}

.footer span {
    text-align: right;
    align-items: right;
}

.footer strong {
    font-size: 24px;
}

.footer i {
    font-style: normal;
    font-size: 26px;
    margin: 10px;
    align-items: right;
}

.vuelo-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-message {
    text-align: center;
    padding: 30px 20px;
}

.success-message h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4CAF50;
}

.success-message p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.enviar-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.error {
    border: 2px solid #ff4444 !important;
    background-color: #ffe6e6 !important;
}

.error-message {
    color: #ff4444;
    font-size: 11px;
    margin-top: -10px;
    margin-bottom: 10px;
    text-align: left;
}

.general-error-message {
    text-align: center;
    padding: 15px 20px;
    margin-top: 15px;
    background-color: #ffe6e6;
    border: 1px solid #ff4444;
    border-radius: 8px;
}

.general-error-message p {
    color: #ff4444;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Estilos personalizados para Select2 */
.select2-container {
    margin-bottom: 15px;
}

.select2-container .select2-selection--single {
    height: 40px;
    border: none;
    background: #f0f0f0;
    border-radius: 5px;
    padding: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    line-height: 20px;
    text-align: left;
}

.select2-container .select2-selection--single .select2-selection__placeholder {
    color: #999;
    text-align: left;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.select2-dropdown {
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.select2-container--default .select2-results__option {
    padding: 8px 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #000;
    color: white;
}

.select2-container.error .select2-selection--single {
    border: 2px solid #ff4444 !important;
    background-color: #ffe6e6 !important;
}

/* Estilos para la descripción VIP */
.vip-description {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 2px solid #e9ecef;
}

.vip-description p {
    text-align: left;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.vip-description p:first-child {
    font-size: 15px;
    margin-bottom: 15px;
}

.vip-description ul {
    text-align: left;
    margin: 15px 0;
    padding-left: 20px;
}

.vip-description ul li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.3;
    color: #333;
}

.vip-description .reserve-text {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
    color: #bf4e32;
    font-size: 14px;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* Estilos para la sección de paquetes */
.packages-section {
    margin-top: 25px;
    text-align: center;
}

.packages-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #333;
    text-align: center;
}

.packages-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.packages-btn {
    background-color: #bf4e32;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(191, 78, 50, 0.3);
    border: none;
    cursor: pointer;
    min-width: 200px;
}

.packages-btn:hover {
    background-color: #a13f28;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(191, 78, 50, 0.4);
}

@media (max-width: 500px) {
    .ticket {
        border-radius: 20px;
    }
    
    .packages-button-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .packages-btn {
        min-width: auto;
        width: 100%;
        max-width: 250px;
    }
    
    .packages-title {
        font-size: 18px;
        margin-bottom: 25px;
    }
}