/* Reset básico e fonte */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Fundo do body com gradiente suave horizontal: verde claro na esquerda, azul claro na direita */
body {
    background: linear-gradient(90deg, #e0f7e0 0%, #80c1ff 100%);
    color: #333;
    animation: fadeIn 1s ease-in-out;
}

/* Animação de entrada suave */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

#logotipo {
    width: 60px;
    transition: transform 0.3s;
}

#logotipo:hover {
    transform: scale(1.05);
}

.titulo-site {
    font-size: 28px;
    font-weight: 700;
}

.menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.menu a:hover {
    color: #008cff;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #008cff;
    transition: width 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.reserva-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.3);
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

/* Animação de deslizamento para o container */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.titulo-reserva {
    font-size: 32px;
    font-weight: 700;
    color: #008cff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.texto-reserva {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* Detalhes da Viagem */
.detalhes-viagem {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.detalhes-viagem:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Novo banner no lugar da imagem */
.banner-viagem {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #008cff, #00d4ff);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.banner-viagem h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.banner-viagem p {
    font-size: 14px;
    opacity: 0.9;
}

.info-viagem {
    text-align: left;
    flex: 1;
}

.info-viagem h3 {
    font-size: 24px;
    color: #008cff;
    margin-bottom: 10px;
}

.info-viagem p {
    margin-bottom: 8px;
    color: #555;
}

/* Formulário de Pagamento */
.form-pagamento {
    text-align: left;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.form-pagamento:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.form-pagamento h3 {
    font-size: 24px;
    color: #008cff;
    margin-bottom: 20px;
    text-align: center;
}

.form-pagamento label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.form-pagamento input {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(217, 217, 217, 0.8);
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 15px;
    outline: none;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.form-pagamento input:focus {
    border-color: #008cff;
    background: white;
    box-shadow: 0 0 8px rgba(0, 140, 255, 0.3);
}

.linha-pagamento {
    display: flex;
    gap: 15px;
}

.linha-pagamento div {
    flex: 1;
}

.btn-confirmar {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00aaff, #e7ee63);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,170,255,0.3);
}

.btn-confirmar:hover {
    opacity: 0.9;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,170,255,0.4);
}

/* ===== FOOTER ===== */
footer {
    background: rgba(0, 48, 73, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .titulo-site {
        font-size: 24px;
    }

    .menu {
        gap: 15px;
    }

    .detalhes-viagem {
        flex-direction: column;
        text-align: center;
    }

    .banner-viagem {
        width: 100%;
        height: 120px;
    }

    .linha-pagamento {
        flex-direction: column;
        gap: 0;
    }

    .titulo-reserva {
        font-size: 28px;
    }
}