:root {
    --ff-text: "Lato", sans-serif;
    --ff-heading: "Poppins", sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 800;
    --clr-black: #434242;
    --clr-black-rgb: 67, 66, 66;
    --clr-primary: #ff6600;
    --clr-primary-rgb: 255, 102, 0;
    --clr-secondary: #003470;
    --clr-secondary-rgb: 0, 52, 112;
    --clr-tertiary: #00122e;
    --clr-tertiary-rgb: 0, 18, 46;
    --clr-white: #ffffff;
    --clr-white-rgb: 255, 255, 255;
    --clr-background: #f4f3f3;
    --clr-background-rgb: 244, 243, 243;
}


/* Menu visibility defaults */
.cerrar-sesion {
    display: none;
}

/* Affiliate Form Styles */
.estelar-affiliate-form-wrapper {
    margin: 0 auto;
}

.estelar-affiliate-form-wrapper .estelar-form .form-group {
    margin-bottom: 1.5rem;
}

.estelar-affiliate-form-wrapper .estelar-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--clr-black);
}

.estelar-affiliate-form-wrapper .estelar-form input[type="text"],
.estelar-affiliate-form-wrapper .estelar-form input[type="number"],
.estelar-affiliate-form-wrapper .estelar-form select {
    width: 100%;
    padding: 0.75rem;
    background-color: #e5e2e0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.estelar-affiliate-form-wrapper .estelar-form input[type="text"]:focus,
.estelar-affiliate-form-wrapper .estelar-form input[type="number"]:focus,
.estelar-affiliate-form-wrapper .estelar-form select:focus {
    outline: none;
    border-color: var(--clr-secondary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #ffffff;
}

.estelar-affiliate-form-wrapper .estelar-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.estelar-affiliate-form-wrapper .estelar-form .form-check input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--clr-secondary);
    cursor: pointer;
}

.estelar-affiliate-form-wrapper .estelar-form .form-check label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #4b5563;
    cursor: pointer;
}

.estelar-affiliate-form-wrapper .estelar-form .form-submit button {
    width: 100%;
    margin-bottom: 10px;
    padding: 1rem;
    background: var(--clr-tertiary);
    color: white;
    border: none;
    border-radius: 40px;
    font-family: var(--ff-heading);
    font-weight: 600;
    cursor: pointer;
    transition:
        transform 0.1s ease,
        box-shadow 0.2s ease,
        opacity 0.2s;
}

.estelar-affiliate-form-wrapper .estelar-form .form-submit button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.estelar-affiliate-form-wrapper .estelar-form .form-submit button:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

#form-message {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

#form-message.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

#form-message.success {
    color: #003470;
    font-weight: bold;
}

/* Hotel Carousel */
.estelar-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.estelar-title .estelar-select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--clr-primary);
    color: var(--clr-primary);
    font-size: 25px;
    cursor: pointer;
    border-radius: 0;
}

.estelar-title .estelar-select:focus {
    outline: none;
}

.estelar-hotel-item {
    border-radius: 8px;
    background-color: var(--clr-white);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.estelar-hotel-item .estelar-hotel-image {
    position: relative;
}

.estelar-hotel-item .estelar-hotel-image img {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.estelar-hotel-item .estelar-hotel-image .btn-reservar {
    border-radius: 30px;
    color: var(--clr-white);
    background-color: var(--clr-primary);
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    position: absolute;
    right: 10px;
    bottom: -10px;
}

.estelar-hotel-item .estelar-hotel-image .btn-reservar:hover {
    background-color: var(--clr-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--clr-white);
}

.estelar-hotel-item .estelar-hotel-info {
    padding: 20px;
}

.estelar-hotel-item .estelar-hotel-info h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-secondary);
    text-transform: capitalize;
}

.estelar-hotel-item .estelar-hotel-info p {
    margin: 0;
}

.estelar-hotel-item .estelar-hotel-info .estelar-hotel-desc {
    margin-top: 10px;
}

.estelar-reserva-wrapper .owl-stage {
    padding: 10px 0;
}

/* Shortcode [resultado] */
.categoria-col {
    text-align: center;
}

@media (width > 1024px) {
    .categoria-col {
        margin-bottom: 100px;
    }
}

.categoria-col h2 {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}

.categoria-col h3 {
    margin: 0;
    text-align: center;
    font-size: 30px;
    color: rgba(var(--clr-white-rgb), 0.8);
    background-color: var(--clr-primary);
    padding: 10px;
    border-radius: 30px;
    font-weight: 700;
    margin: 10px 0;
}

.categoria-col p {
    font-size: 25px;
    font-family: var(--ff-heading);
    font-weight: 400;
    color: var(--clr-secondary);
    margin: 0;
}