/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #858585;
}

/* Estilos del header */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
}

/* Estilos del main */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.direccion {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #333;
}

.mapa iframe {
    border: 2px solid #333;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Estilos del botón de WhatsApp */
.whatsapp-button a {
    background-color: #25d366; /* Color de WhatsApp */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.whatsapp-button a:hover {
    background-color: #128c7e; /* Color de WhatsApp al pasar el mouse */
}