@import url('/assets/css/destinos/partials/pacotes.css');
@import url('/assets/css/destinos/partials/cards.css');
@import url('/assets/css/destinos/partials/resort-card.css');
@import url('/assets/css/destinos/partials/motor.css');
@import url('/assets/css/partials/header.css');
@import url('/assets/css/partials/footer.css');
@import url('/assets/css/partials/fly-out-menu.css');

body *,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Poppins", sans-serif;
}

h1 {
    font-size: 2rem;

    font-weight: 300;
    color: #0072CE;
}

.title-div h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 0;
    color: #0072ce;

    text-align: center;
}

.colorfull-lines {
    display: flex;

    justify-content: center;
}

.colorfull-lines span {
    display: block;

    width: 25px;
    height: 4px;

    margin: 2px 0 36px;
}

.colorfull-lines .yellow {
    background-color: #FFC600;
}

.colorfull-lines .orange {
    background-color: #FF6A14;
}

.colorfull-lines .green {
    background-color: #97D700;
}

.colorfull-lines .dark-blue {
    background-color: #054E72;
}

#hotels-page {
    margin-top: 150px;

    padding: 0 2rem;

    text-align: center;
}

.hotels-page {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.hotels-page h1 {
    font-size: 2.5rem;
}

.hotels-page p {
    margin: 10px 0 20px;

    text-align: justify;
}






/* Estilos específicos para a seção de parques */
#park-cards-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

#park-cards-section h2 {
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.card {
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 114, 206, 0.1);
}

/* 
@media (max-width: 768px) {
    #park-cards-section {
        padding: 4rem 1rem;
    }
    
    .park-card {
        width: calc(50% - 1rem);
        min-width: 280px;
    }
    
    #park-cards-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .park-card {
        width: 100%;
    }
    
    .park-card img {
        height: 180px;
    }
} */

@media (max-width: 1440px) {
    .hotels-page {
        max-width: 1024px;
    }
}



.popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.popup-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    min-width: 320px;
    max-width: 90vw;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: popup-fadeIn 0.3s ease-out;
}

@keyframes popup-fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: #f5f5f5;
    color: #333;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
}

.popup-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #f8f9fa;
    cursor: pointer;
    
    margin-bottom: 16px;
}

.popup-input:focus {
    outline: none;
    border-color: #007bff;
    background: #fff;
}

.popup-button {
    width: 100%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-button:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.popup-button:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .popup-container {
        margin: 20px;
        padding: 20px;
    }
    
    .popup-input {
        padding: 10px 12px;
    }
    
    .popup-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}