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

body {
    font-family: 'Arial', sans-serif;
    color: #222;
}

/* Navbar */
.logo img {
    display: block;
    height: 50px;
}

.navbar {
    width: 100%;
    background: white;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    height: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #D83607;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Slider */
#inicio.slider {
    height: calc(100vh - 80px); /* Fill remaining viewport height */
    position: relative;
    overflow: hidden;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Título superpuesto */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0,0,0,0.6);
}

.overlay h1 {
    font-size: 3rem;
}

/* Secciones */
.section {
    padding: 20px 20px;
    text-align: center;
}

.contenedor {
    text-align: justify;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.resaltar {
    font-weight: bold;
    color: red;
}
