@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    font-family: Archivo, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.contenedor {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */

.header {
    background-color: #FDFFF2;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #636363;
}

.header .logo {
    font-weight: bold;
    color: #507D5D;
    text-decoration: none;
    letter-spacing: -0.05em;

}

.header .menu ul {
    display: flex;
    gap: 10px;
    list-style: none;
}

.header .menu ul li a {
    text-decoration: none;
    color: #636363;
    border: 1px solid #636363;
    padding: 5px 10px;
    border-radius: 16px;
}

.header .menu ul li a:hover {
    background-color: #636363;
    color: #FDFFF2;
}

/* Home */

.home {
    background-color: #E4E4E4;
}

.home .contendor {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.home .bajada {
    font-size: 6em;
    font-weight: bold;
    letter-spacing: -0.05em;
    color: #636363;
    position: relative;
    display: inline-block;
    padding: 30px;
    margin-top: 2%;
}

.home .asterisco {
    color: #507D5D;
}

.home .pitch {
    font-size: 1.1em;
    margin-top: 12%;
    line-height: 1.1;
}

.home .flores {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1
}

.home .flor-01 {
    background-image: url('../imagenes/flor-01.png');
    width: 350px;
    height: 350px;
    top: 63%;
    left: 0%;
}

.home .flor-02 {
    background-image: url('../imagenes/flor-02.png');
    width: 550px;
    height: 550px;
    top: 43%;
    right: -3%;
}

/* Mapa */

.mapa .header {
    grid-column: 1 / -1;
}
.mapa .contenedor {
    display: grid;
    grid-template-columns: 250px 2fr;
    grid-template-rows: auto 1fr;
    height: 100vh;
}

.mapa .filtros-contenedor {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #507D5D;
    color: #FDFFF2;
    padding: 30px;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    border-right: 1px solid #636363;
}

.mapa .filtros-contenedor h2 {
    font-weight: 400;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.mapa .filtros-contenedor ul {
    font-size: larger;
    list-style: none;
    margin-top: 20px;
}

.mapa .filtros-contenedor ul li {
    margin-bottom: 10px;
    font-weight: 200;
}

.mapa .filtros-contenedor .info h3 {
    font-weight: 400;
    margin-bottom: 20px;
}

.mapa .filtros-contenedor .info p {
    font-weight: 200;
    margin-top: 20px;
}

.mapa .mapa-contenedor {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    position: relative;
    overflow: hidden;
    background-image: url("../imagenes/mapa.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.mapa-contenedor .marcador-01 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    padding: 20px;
    position: absolute;
    background-color: #507D5D;
    border-radius: 16px;
    width: 150px;
    height: 200px;
    top: 40%;
    left: 30%;
    color: #FDFFF2;
}

.mapa-contenedor .marcador-02 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    padding: 20px;
    position: absolute;
    background-color: #507D5D;
    border-radius: 16px;
    width: 150px;
    height: 200px;
    top: 20%;
    left: 70%;
    color: #FDFFF2;
}

.marcador-01, .marcador-02 p {
    margin-top: 10px;
    font-size: 14px;
}

/* Informacion */

.informacion {
    background-color: #E4E4E4;
}

video {
    width: 75%;
    display: block;
    margin: 50px auto;
    border-radius: 16px;
}

/* Responsive */

@media (max-width: 768px) {

    .home .bajada {
        font-size: 4.5em;
    }

    .home .flores {
        width: 300px;
        height: 300px;
        top: 68%;
    }

    .mapa .contenedor {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr;
        height: auto;
    }

    .mapa .filtros-contenedor {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
    }

    .mapa .mapa-contenedor {
        grid-column: 1 / -1;
        grid-row: 3 / 4;
        min-height: 100vh;
    }
}

@media (max-width: 480px) {

        .header {
            flex-direction: column;
            align-items: center;
            padding: 15px 30px;
        }

        .menu ul {
            margin-top: 10px;
            flex-wrap: nowrap;
            justify-content: center;
        }

        .menu ul li a {
            font-size: 12px;
        }

        .home .bajada {
            font-size: 2em;
        }

        .home .pitch {
            font-size: 1.5em;
            margin-top: 75%;
        }

        .home .flor-01 {
            width: 400px;
            height: 400px;
            top: 0%;
            left: -5%;
            transform: rotate(10deg);
        }

        .home .flor-02 {
            width: 250px;
            height: 250px;
            right: -10%;
            top: 70%;
            transform: rotate(10deg);
        }

        .mapa {
            height: 100vh;
            overflow: auto;
        }

        .mapa .mapa-contenedor {
            background-size:cover;
        }

        .mapa .marcador-01 {
            top: 10%;
            left: 10%;
        }

        .mapa .marcador-02 {
            top: 50%;
            left: 40%;
        }

        .informacion video {
            width: 90%;
            margin-top: 3%;
        }
}