/* Secion de inicio */
.inicio {
    height: 270px;
    background: url('/assets/img/FONDO.webp') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* Contenedor de inicio */
.nmbrAgencia {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
}

/* Texto de nombre de agencia */
.agencia {
    font-family: var(--fuente-amaranth);
    color: var(--color-primario);
    -webkit-text-stroke: 2px var(--color-primario);
    padding-bottom: 20px;
    font-size: 70px;
    font-weight: 900;
    text-align: center;
    margin: 0;
}

@media (max-width: 361px) {
    .inicio {
        height: 260px;
    }

    .agencia {
        -webkit-text-stroke: 1px var(--color-primario);
        padding-bottom: 20px;
        font-size: 35px;
        font-weight: 900;
    }
}

@media (max-width: 481px) and (min-width: 361px) {
    .inicio {
        height: 240px;
    }

    .agencia {
        -webkit-text-stroke: 1px var(--color-primario);
        padding-bottom: 20px;
        font-size: 35px;
        font-weight: 900;
    }
}

@media (max-width: 701px) and (min-width: 481px) {
    .inicio {
        height: 240px;
    }

    .agencia {
        -webkit-text-stroke: 1px var(--color-primario);
        font-size: 45px;
        font-weight: 900;
    }
}

@media (max-width: 959px) and (min-width: 701px) {
    .inicio {
        height: 240px;
    }

    .agencia {
        -webkit-text-stroke: 2px var(--color-primario);
        font-size: 55px;
        font-weight: 900;
    }
}

@media (max-width: 1200px) and (min-width: 959px) {
    .inicio {
        height: 230px;
    }

    .agencia {
        -webkit-text-stroke: 2px var(--color-primario);
        font-size: 65px;
        font-weight: 900;
    }
}
