/* Tipografía moderna */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #ffffff;
    color: #343a40;
    margin: 0;
    padding: 0;
}

/* Títulos y pestañas */
h1, h2, .nav-tabs .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Logotipo */
.logo {
    max-width: 380px;
}

/* Navegación por pestañas */
.nav-tabs {
    border-bottom: 2px solid #0074D9;
}

    .nav-tabs .nav-link {
        color: #0074D9;
        border: none;
    }

        .nav-tabs .nav-link.active {
            background-color: #00bfff;
            color: #ffffff;
            border-radius: 5px 5px 0 0;
        }

/* Contenido de pestañas */
.tab-content {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Secciones */
section {
    margin-bottom: 40px;
}

/* Imágenes */
img {
    max-width: 100%;
    height: auto;
}

/* Botón de WhatsApp */
.btn-whatsapp {
    background-color: #2ECC40;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

/* Pie de página */
footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    margin-top: auto;
}

/* Estructura para mantener el footer abajo */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Bloques de presentación */
.bloque-quienes {
    text-align: justify;
    margin-bottom: 3rem;
    padding-left: 0;
    padding-right: 0;
}

    .bloque-quienes h5 {
        margin-bottom: 0.5rem;
    }

    .bloque-quienes ul {
        padding-left: 1.2rem;
    }
