/* Modo oscuro */
body.dark-mode {
    background-color: #121212;
    color: #f1f1f1;
}

a {
    color: #00bcd4;
}

/* Header centrado */
header {
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container img {
    height: 60px;
    margin-bottom: 10px;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

/* Navegación */
nav {
    background-color: #1e1e1e;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    margin: 5px 15px;
    text-decoration: none;
    color: #f1f1f1;
    font-weight: bold;
}

.nav-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

/* Footer horizontal */
footer {
    background-color: #1e1e1e;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer_buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

footer .button {
    background-color: #00bcd4;
    color: black;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s;
    white-space: nowrap;
}

footer .button:hover {
    background-color: #0097a7;
}

.footer_direccion {
    margin-top: 10px;
}

/* Sección principal (jumbotron y botones) */
section {
    padding: 40px 20px;
}

.jumbotron {
    background-color: #1e1e1e;
    color: #000000;
    margin-bottom: 40px;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.jumbotron h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.jumbotron p {
    font-size: 1.2rem;
}

/* Contenedor personalizado (WhatsApp sección) */
.personalizado {
    background-color: #1e1e1e;
    color: #f1f1f1;
    padding: 30px 20px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    margin-bottom: 40px;
}

/* WhatsApp botón imagen */
.personalizado img {
    margin-top: 15px;
    width: 180px;
    height: auto;
}

/* Responsividad general */
@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 2rem;
    }

    .jumbotron p,
    .personalizado h5 {
        font-size: 1rem;
    }

    .footer_buttons {
        flex-direction: column;
        gap: 10px;
    }

    .footer_direccion {
        margin-top: 20px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-container img {
        height: 50px;
    }
}