/* General */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f9fa; /* Fondo neutro para las áreas de texto */
    color: #333;
}

/* Línea superior */
.top-bar {
    background-color: #333;
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 0.1px 0;
    line-height: 0.3;
    z-index: 1000;
    position: fixed;
    width: 100%;
    top: 0;
}

/* Header */
header {
    background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0));
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 30px;
    z-index: 999;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-container img {
    height: 50px;
    margin-left: 20px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-right: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a.active {
    color: #ffcc80; /* Resalta el enlace activo */
}

nav ul li a:hover {
    color: #ffcc80;
}

/* Hero con fondo difuminado */
.hero-nosotros {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.7);
    background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0)
    ), url('fondo-nosotros.webp') no-repeat center center fixed;
    background-size: cover;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
}

/* Contenido alternado */
.content.alternado {
    padding: 60px 20px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.row .text {
    flex: 1;
    padding: 20px;
    text-align: justify;
    line-height: 1.8; /* Mejora la legibilidad */
}

.row .image {
    flex: 1;
    padding: 20px;
}

.row .image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Títulos en naranja */
.row .text h2 {
    color: #f57c00; /* Naranja vibrante */
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Orden alternado para pantallas pequeñas */
@media screen and (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .row .text, .row .image {
        padding: 10px;
    }
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
}
