/* === PALETA DE CORES === 
    Azul Principal: #7CBAF7
    Azul Suave:     #9BC2F9
    Rosa Antigo:    #d48c8c
    Fundo:          Branco
*/

/* Estilos Gerais */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f9ff;
    background-image: radial-gradient(#9BC2F9 1px, transparent 1px);
    background-size: 20px 20px;
    color: #5a5a5a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(124, 186, 247, 0.2);
    border: 1px solid #eef6ff;
}

/* Estilo para a Imagem do Topo */
.top-image {
    max-width: 40%; /* Ajusta o tamanho da imagem */
    height: auto;
    margin-bottom: -10px; /* Espaço abaixo da imagem */
}

h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: #7CBAF7;
    margin: 0;
    line-height: 1.2;
}

h2 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #d48c8c;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.details {
    margin: 30px 0;
    padding: 20px;
    background-color: #f0f7ff;
    border-radius: 10px;
    border: 1px dashed #9BC2F9;
}

.details strong {
    display: block;
    color: #7CBAF7;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Estilo dos Botões */
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1rem;
}

.btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Botão Lista de Presentes (Azul Principal) */
.btn-gift {
    background-color: #7CBAF7;
    color: white;
    box-shadow: 0 4px 15px rgba(124, 186, 247, 0.4);
}

.btn-gift:hover {
    background-color: #6aa8e0;
    transform: translateY(-2px);
}

/* Botão Localização (Branco com borda Rosa) */
.btn-map {
    background-color: white;
    color: #d48c8c;
    border: 2px solid #d48c8c;
}

.btn-map:hover {
    background-color: #fff0f0;
    transform: translateY(-2px);
}

.footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #ccc;
}