*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height:1.6;
    background:#f4f7fa;
    color:#222;
}

/* HEADER */
header{
    background:linear-gradient(135deg,#0b5ed7,#198754);
    color:white;
    text-align:center;
    padding:30px 20px;
}

header img{
    width:130px;
    max-width:100%;
    margin-bottom:15px;
}

header h1{
    font-size:2rem;
    margin-bottom:20px;
}

/* MENU */
nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:bold;
    padding:10px 18px;
    border-radius:8px;
    transition:0.3s;
}

nav a:hover{
    background:rgba(255,255,255,0.2);
}

/* SECCIONES */
section{
    max-width:1100px;
    margin:40px auto;
    background:white;
    padding:35px;
    border-radius:14px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

section h2{
    color:#0b5ed7;
    margin-bottom:25px;
    font-size:2rem;
    border-bottom:3px solid #198754;
    padding-bottom:10px;
}

section h3{
    color:#198754;
    margin-top:25px;
    margin-bottom:15px;
}

section p{
    margin-bottom:18px;
    text-align:justify;
    font-size:1.05rem;
}

/* CONTACTO */
#contacto p{
    font-size:1.1rem;
    margin-bottom:12px;
}

#contacto iframe{
    width:100%;
    margin-top:20px;
    border-radius:12px;
    min-height:400px;
}

/* FOOTER */
footer{
    background:#0b5ed7;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

/* RESPONSIVE */
@media (max-width:768px){

    header h1{
        font-size:1.5rem;
    }

    nav ul{
        flex-direction:column;
        gap:10px;
    }

    section{
        margin:20px 12px;
        padding:20px;
    }

    section h2{
        font-size:1.6rem;
    }

    section p{
        font-size:1rem;
        text-align:left;
    }

    #contacto iframe{
        min-height:300px;
    }
}
.carrusel{
    position: relative;
    max-width: 900px;
    margin: auto;
}

.slides{
    display: none;
}

.slides img{
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* BOTONES LATERALES */
.prev,
.next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    user-select: none;
    transition: 0.3s;
}

/* IZQUIERDA */
.prev{
    left: 10px;
}

/* DERECHA */
.next{
    right: 10px;
}

/* HOVER */
.prev:hover,
.next:hover{
    background: rgba(0,0,0,0.7);
}