/* presentacion */

.presentacion {
    display: flex;
    height: 70vh;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.presentacion h1 {
    color: #000;
    font-size: 1.2rem;
    word-wrap: break-word;
    width: 400px;
}

.presentacionImg img {
    height: 350px;
    width: 350px;
}

.presentacionBtn {
    background-color: var(--primary-color);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
    padding: 10px;
    width: fit-content;
}

.presentacionBtn a {
    color: #fff !important;
}

/* trayecto */
.trayecto {
    display: flex;
    background-color: var(--primary-color);
    justify-content: space-evenly;
    padding: 15px 0;
}

.trayecto div {
    display: flex;
    color: #fff;
    align-items: center;
    width: fit-content;
}

.trayecto div p:nth-child(1) {
    font-size: 40px;
    font-weight: bold;
    margin-right: 10px;
}

.trayecto div p:nth-child(2) {
    width: 90px;
    font-size: 18px;
}

/* servicios */
.serviciosContainer {
    padding: 30px 25px 40px 25px;
}

.serviciosContainer h2 {
    text-align: center;
    font-size: 26px;
}

.serviciosContainer .servicios {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.serviciosContainer .servicios>div {
    border-radius: 8px;
    width: 250px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    -webkit-box-shadow: -1px 3px 29px 2px rgba(148, 148, 148, 1);
    -moz-box-shadow: -1px 3px 29px 2px rgba(148, 148, 148, 1);
    box-shadow: -1px 3px 29px 2px rgba(148, 148, 148, 1);
    align-items: center;
    margin-top: 40px;
    justify-content: center;
}

.serviciosContainer .servicios>div>p {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.serviciosContainer .servicios>div>img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

/* contacto */
.contactoContainer {
    padding: 30px 25px 40px 25px;
    background-color: var(--primary-color);
    color: #fff;
}

.contactoContainer h2 {
    text-align: center;
    font-size: 26px;
}

.contactoContainer .contacto {
    display: flex;
    margin-top: 20px;
    justify-content: space-evenly;
}

.contactoContainer .info {
    display: flex;
    flex-direction: column;
    width: 400px;
    justify-content: center;
}

.contactoContainer .info>a {
    display: flex;
    align-items: center;
    color: #fff !important;
}

.contactoContainer .info>a:not(.contactoContainer .info>a:last-child) {
    margin-bottom: 30px;
}

.iconoContacto {
    width: 30px;
    margin-right: 10px;
}

.mapa {
    width: 400px;
    height: 400px;
}

@media screen and (max-width: 750px) {
    .presentacion {
        height: 60vh;
        flex-direction: column-reverse;
    }

    .trayecto {
        align-items: center;
    }

    .trayecto div p:nth-child(2) {
        width: fit-content;
    }

    .trayecto div {
        flex-direction: column;
    }

    .presentacion h1 {
        width: fit-content;
        text-align: center;
    }

    .presentacionBtn {
        margin: auto;
        margin-top: 20px;
    }

    .trayecto {
        flex-direction: column;
    }

    .contactoContainer .contacto {
        flex-direction: column-reverse;
    }

    .contactoContainer .info {
        width: 200px;
    }

    .mapa {
        width: 300px;
        height: 300px;
        margin-top: 30px;
    }

    .presentacionImg img {
        height: 300px;
        width: 300px;
    }
}