/* Importar fontes */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700&display=swap');

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    /* FUNDO BRANCO E AZUL - CHECANDO SOBRESCRITA */
    background-color: #FFFFFF;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #F0F4F8 100%);
    background-attachment: fixed;
    color: #2D3561;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 50px;
    animation: slideDown 0.8s ease-out;
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.titulo-principal {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(28px, 6vw, 42px);
    color: #2D3561;
    /* AZUL ESCURO */
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitulo {
    font-size: clamp(16px, 4vw, 20px);
    color: #5A6B8C;
    /* CINZA AZULADO */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Main Content */
.main-content {
    display: flex;
    justify-content: center;
    animation: fadeIn 1s ease-out;
}

.card-oferta {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(45, 53, 97, 0.08);
    /* Sombra azulada */
    max-width: 600px;
    width: 100%;
    border: 2px solid #E3F2FD;
    /* CONTORNO AZUL CLARO */
}

.card-oferta h2 {
    font-family: 'Fredoka One', cursive;
    color: #007bff;
    /* AZUL VIBRANTE */
    font-size: 28px;
    margin-bottom: 20px;
}

.card-oferta p {
    color: #444;
    /* CINZA ESCURO */
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

/* Botão */
.btn-reservar {
    display: inline-block;
    background: #0069D9;
    /* AZUL SÓLIDO */
    background: linear-gradient(135deg, #0069D9 0%, #0056b3 100%);
    color: white !important;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 105, 217, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    border: none;
    cursor: pointer;
}

.btn-reservar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 105, 217, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.nota-seguranca {
    font-size: 14px !important;
    margin-top: 25px !important;
    margin-bottom: 0 !important;
    color: #888 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Animações */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}