/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #344;
}

header {
    background-color: #0078D7;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

nav ul {
    list-style-type: none;
    padding: 1;
    background-color: #333;
    text-align: center;
}

nav ul li {
    display: inline;
    padding: 10px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 15px;
    margin: 10px auto;
    max-width: 900px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

h2 {
    color: #0078D7;
}

ul {
    list-style-type: square;
}

img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
}

iframe {
    width: 100%;
    height: 450px;
    border: 0;
}
nav ul li a:hover {
    color: #f0ed0f;
}
nav ul li a.active {
    color: #6bf00f; /* Azul */
    font-weight: bold;
}
.btn-whatsapp {
    display: inline-block;
    background-color: #25D366; /* Verde de WhatsApp */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.img-grande {
    width: 30%; /* Aumenta el ancho al 150% del contenedor */
    height: auto; /* Mantiene la proporción original */
}
.img-grande1 {
    width: 100%; /* Aumenta el ancho al 150% del contenedor */
    height: auto; /* Mantiene la proporción original */
}

/* Botón general */
.btn-whatsapp,
.btn-facebook {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-facebook2 {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/* Botón de WhatsApp */
.btn-whatsapp {
    background-color: #25D366; /* Verde de WhatsApp */
}

.btn-whatsapp:hover {
    background-color: #1DA851; /* Tono más oscuro al pasar el mouse */
}

/* Botón de Facebook */
.btn-facebook {
    background-color: #1877F2; /* Azul de Facebook */
}

.btn-facebook:hover {
    background-color: #155DB0; /* Tono más oscuro al pasar el mouse */
}

/* Botón de Facebook2 */
.btn-facebook2 {
    background-color: #111111; /* Azul de Facebook */
}

.btn-facebook2:hover {
    background-color: #155DB0; /* Tono más oscuro al pasar el mouse */
}

/* Contenedor de botones */
.contact-buttons {
    display: flex;
    gap: 10px; /* Espacio entre los botones */
    margin: 20px 0;
    justify-content: flex-start; /* Alineación inicial de los botones */
}

