body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

/* ENCABEZADO */
header {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 36px;
}

header p {
    margin: 8px 0 0;
    font-size: 16px;
}

/* MENU */
nav {
    background-color: #1b5e20;
    text-align: center;
    padding: 10px;
    position: sticky;
    top: 96px;
    z-index: 999;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 10px;
    font-weight: bold;
}nav {
    background-color: #1b5e20;
    text-align: center;
    padding: 12px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* PORTADA */
.portada {
    width: 100%;
}

.portada img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* CONTENIDO */
main {
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

/* GALERIA */
.galeria {
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.grid img {
    width: 95%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.grid img:hover {
    transform: scale(1.05);
}
main p {
    text-align: justify;
 }

/* CELULARES */
@media (max-width: 700px) {

    header h1 {
        font-size: 28px;
    }

    header p {
        font-size: 14px;
    }

    nav {
        position: relative;
        top: 0;
    }

    nav a {
        display: block;
        margin: 8px;
    }

    .portada img {
        height: 200px;
    }

    main {
        margin: 15px;
        padding: 20px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

}
/* Menú desplegable */
.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1b5e20;
    min-width: 220px;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    margin: 0;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #2e7d32;
}

.dropdown:hover .dropdown-content {
    display: block;
}