body {
    font-family: Raleway, sans-serif;
    margin: 0;
    background: #A6A6A6;
    font-size: 15px;
}

header {
    background: #A6A6A6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.logo {
    height: 195px;
}

nav.menu {
    background: #801E1E;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
}

nav.menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 0;
    margin: 0;
}

nav.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav.menu ul li a:hover {
    text-decoration: underline;
    color: #444;
}

.seccion {
    padding: 40px;
}

.servicio {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.servicio.visible {
    opacity: 1;
    transform: translateY(0);
}

.servicio img {
    width: 80px;
    height: 80px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: auto;
}

form input, form textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

form button {
    background: #722121;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

h1 {
    font-size: 40px;
    color: white;
    text-align: center;
}

h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.servicio p {
    font-size: 18px;
}

.bloque-historia {
    background: white;
    padding: 20px;
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 18px;
    line-height: 1.6;
}

/* Botón hamburguesa */
.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    padding: 15px 20px;
    background: #801E1E;
    cursor: pointer;
    z-index: 1001;
}

/* Overlay oscuro */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav.menu {
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100%;
        background: #801E1E;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 20px;
    }

    nav.menu.active {
        left: 0;
    }

    nav.menu ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0;
    }

    nav.menu li {
        width: 100%;
    }

    nav.menu li a {
        display: block;
        width: 100%;
    }
}

@media (min-width: 769px) {
    nav.menu {
        position: sticky;
        top: 0;
        z-index: 999;
    }
}
