/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f7f4; /* Fundo bege claro */
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Cabeçalho */
header {
    text-align: center;
    padding: 25px 0 5px;
    margin-bottom: 10px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

/* Seção principal */
.hero {
    text-align: center;
    margin-bottom: 15px;
    padding: 0 15px;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.subheadline {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
}

/* Botões */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.addresses .btn {
    margin-bottom: 15px;
}
.btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #364378 0%, #5855e0 100%);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #e6d7bf;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: linear-gradient(135deg, #d4c4a8 0%, #c5b397 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: #333;
}

.highlight {
    color: #ff9900; /* Dourado mais claro */
    font-weight: 600;
}

/* Seção de localização */
.location {
    background: #17245b; /* #f0ece3 Bege mais claro */
    border: 1px dashed #d4c4a8;
    cursor: default;
}

/* Rodapé */
footer {
    text-align: center;
    padding-top: 30px;
    margin-top: 10px;
    border-top: 1px solid #e6d7bf;
    font-size: 12px;
    color: #777;
}

footer p {
    margin-bottom: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .subheadline {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }
    
    .btn {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    footer {
        font-size: 11px;
    }
}