/* Reset de estilos */

/* Estilos anteriores se mantienen */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
}

.container {
    background: rgba(0, 0, 0, 0.5);
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header h1 {
    float: left;
}

nav ul {
    float: right;
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Reset de estilos y estilos generales se mantienen */

header {
    background-color: rgba(51, 51, 51, 0.1);
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* Estilos específicos para cada sección con imágenes de fondo */
.hero {
    background-image: url('fondo1.jpg');
    background-size: cover;
    color: #fff;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.about {
    background-image: url('hom2.jpg');
    background-size: cover;
    color: #fff;
    text-align: center;
}
.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.team {
    background-image: url('hom1.jpg');
    background-size: cover;
    color: #fff;
    text-align: center;
}
.team h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.contact {
    background-image: url('contacto.jpg');
    background-size: cover;
    color: #fff;
    text-align: center;
}
.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
/* Estilos anteriores se mantienen */

.scroll-up, .scroll-down {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    font-size: 24px;
    color: #333;
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, color 0.3s;
}

.scroll-up::before {
    content: "\25B2"; /* Código de Unicode para la flecha hacia arriba */
}

.scroll-down::before {
    content: "\25BC"; /* Código de Unicode para la flecha hacia abajo */
}

.logo {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 180px; /* Ajusta el tamaño del logo */
    height: auto;
    z-index: 1000; /* Asegura que esté por encima del resto del contenido */
}