@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

:root {
    --brand-color: #70b4b9;
    --text-dark: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--brand-color);
    background-image: linear-gradient(rgba(112, 180, 185, 0.8), rgba(112, 180, 185, 0.9)), url('img/fundo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.main-wrapper {
    background: #fff;
    padding: 60px 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #444;
}

p.message {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 40px;
    font-weight: 300;
}

.contacts {
    border-top: 1px solid #eee;
    padding-top: 30px;
    text-align: center;
}

.contact-group {
    margin-bottom: 20px;
}

.contact-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 13px;
    color: #555;
    display: block;
    margin-bottom: 2px;
}

.contact-group.social {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
}

.social-link {
    color: var(--brand-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--brand-color);
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px;
    min-width: 220px;
    box-sizing: border-box;
    background-color: transparent;
}

.map-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; /* Added gap to separate them */
    margin: 10px 0;
}

.social-link.icon-btn {
    min-width: auto;
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 50%;
    margin: 0; /* Margin handled by gap in flex container */
}

.social-link.waze:hover, .social-link.google-maps:hover {
    background-color: var(--brand-color);
    color: #fff;
    border-color: var(--brand-color);
}

.social-link:hover {
    background-color: var(--brand-color);
    color: #fff;
}

@media (max-width: 480px) {
    .main-wrapper {
        padding: 40px 20px;
    }
}
