* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f2e7;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #ffcc00;
    color: #4a2c00;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 6px solid #d4aa00;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

section {
    background: white;
    margin: 15px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

h2, h3 {
    color: #ff4400;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

.info .nome {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
}

.info .desc {
    font-size: 0.85rem;
    color: #777;
}

.preco {
    background: #27ae60;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
}

.acoes {
    background: transparent;
    box-shadow: none;
}

.btn-whatsapp, .btn-maps {
    display: block;
    text-align: center;
    padding: 18px;
    margin-bottom: 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background-color: #25d366;
    animation: pulse 2s infinite;
}

.btn-maps {
    background-color: #4285f4;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #888;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.contatos-caso-dê-algum-problema {
    margin-top: -5px; 
    font-size: 0.85rem; 
    color: #555;
    background: #fff8e1; 
    padding: 10px;
    border-radius: 10px;
    border: 1px dashed #ffd54f;
}

 contatos-caso-dê-algum-problema p {
    margin: 3px 0;
}