/* HEADER */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-family: var(--subtitle-font);
}

.content-header a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 17px;
}

.logo img {
    width: 180px;
}

.botonera ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.botonera ul li {
    list-style: none;
}

.botonera ul li a {
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: .3s;
}

.botonera ul li a:hover,
.botonera ul li a:focus {
    background-size: 100% 2px;
}

.btn_solicitar {
    background: var(--color-primary);
    border: none;
    border-radius: 10px;
}

.btn_solicitar a {
    display: block;
    padding: 10px 20px;
    font-family: var(--title-font);
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
}

.close_menu,
.menu_bar {
    display: none;
    cursor: pointer;
}


/* NOSOTROS BANNER */

h1 {
    font-size: 45px;
    font-family: var(--title-font);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.banner {
    background: url(/images/banner-background.jpg);
    background-position: center center;
    background-size: cover;
    padding: 30px;
    height: 400px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    border-radius: 30px;
    margin: 30px 0 0;
}

.content-banner p {
    margin-top: 30px;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.2em;
    text-align: justify;
}

.content-banner button {
    margin-top: 20px;
    background: none;
    border: 1px solid #FFF;
    border-radius: 10px;
}

.content-banner button a {
    text-decoration: none;
    display: block;
    width: 100%;
    color: #FFF;
    font-size: 18px;
    font-family: var(--title-font);
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fa-solid.fa-arrow-right {
    color: #FFF;
}

.content-banner button:hover {
    color: var(--text-color);
    background: #FFF;
}

.content-banner button a:hover {
    color: var(--text-color);
}

.content-banner button:hover .fa-solid.fa-arrow-right {
    color: var(--text-color);
}

/* EXPERIENCIA */

.experiencia-section {
    margin: 50px 0;
}

.experiencia-section h3 {
    text-decoration: underline;
    font-family: var(--title-font);
}

.bloques-experiencia {
    display: flex;
    margin-top: 50px;
    gap: 60px;
}

.traductora {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.lista-experiencia {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.experiencia {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.experiencia span {
    display: block;
    white-space: nowrap;
    font-size: 18px;
    font-family: var(--title-font);
}

.experiencia ul {
    margin-left: 50px;
}

.experiencia li {
    font-family: var(--paragraph-font);
}

.publicaciones-trabajos {
    margin: 80px 0;
}

.publicaciones {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 100px;
}

.experiencia-traductora:nth-of-type(2) .publicaciones {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 100px;
}

.publicaciones span {
    display: block;
    white-space: nowrap;
    font-size: 18px;
    font-family: var(--title-font);
}

.content-publicaciones-trabajos {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.experiencia-traductora:nth-of-type(2) {
    margin-top: 150px;
}


/* SERVICIOS */

.servicios {
    background: url(/images/fondo-servicios.jpg);
    background-size: cover;
    padding: 100px 7.5em 300px 7.5em;
}

.content-servicios {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 150px 0 100px 0;
}

.servicio {
    width: 350px;
    background: #FFF;
    padding: 30px;
    border-radius: 30px;
    min-height: 336px;
}

.servicio p {
    text-align: justify;
}

.servicio h4 {
    font-family: var(--subtitle-font);
    font-size: 24px;
    margin: 10px 0 20px 0;
    text-align: center;
}

.servicio img {
    display: block;
    margin: auto;
}



/* REFERENCIAS */

.referencias {
    margin: 80px 0;
}


.content-referencias {
    margin: 30px 0;
}


.referencia {
    background: #FFFFFF;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    max-width: 800px;
    width: 90%;
    margin: 50px auto;
    padding: 20px 30px
}

.referencia h4 {
    font-family: var(--subtitle-font);
    font-size: 20px;
}

.referencia span {
    font-family: var(--title-font);
    font-size: 14px;
}

.referencia p {
    text-align: justify;
}


.titulo-referencia,
.nombre {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nombre {
    gap: 20px;
}

.titulo-referencia {
    margin-bottom: 30px;
}


/* FORMULARIO DE CONTACTO */

.titulo-presponsive {
    display: none;
}

.formulario-contacto {
    display: grid;
    grid-template-columns: 40% 60%;
    background: #FFFFFF;
    box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.05), 0px 3px 10px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
}

.banner-form {
    position: relative;
    background: url(/images/banner-formulario.png);
    background-size: cover;
    margin: 5px;
    padding: 20px;
    border-radius: 20px;
}

.empresa-nombre {
    position: absolute;
    bottom: 30px;
    right: 25px;
    color: #FFF;
    font-family: var(--subtitle-font);
}

.banner-form h2,
.banner-form p {
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.66);
}

.banner-form p {
    margin-top: 20px;
    text-align: justify;
}


.contacto-section {
    background: linear-gradient(180deg, rgba(255, 253, 242, 0.29) 0%, #FFFDF2 100%);
}

.formulario {
    padding: 50px;
}

.personales,
.contacto {
    display: flex;
    gap: 50px;
}

.contacto {
    margin-top: 50px;
}

.formulario label,
.formulario p {
    margin-bottom: 16px;
    font-family: var(--title-font);
    color: var(--text-color);
    font-size: 15px;
}

.dato {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dato input {
    border: none;
    border-bottom: 2px solid #D6D6D6;
    padding: 0 0 5px 5px;
    outline: none;
    font-size: 17px;
}

.dato input:focus {
    border-bottom: 2px solid #FDDC2C;
}

.elegir-servicio {
    margin-top: 50px;
}

.servicios-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.elegir-servicio label {
    font-family: var(--paragraph-font);
    margin: 0;
}

.elegir-servicio input {
    width: 16px;
    height: 16px;
}

.servicios-content {
    display: flex;
    justify-content: space-around;
}

.mensaje {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.mensaje textarea {
    font-family: var(--paragraph-font);
    resize: none;
    border: none;
    border-bottom: 1.5px solid #D6D6D6;
    padding: 0 0 5px 5px;
    outline: none;
    font-size: 17px;
}

.mensaje textarea:focus {
    border-bottom: 2px solid #FDDC2C;
}



.btn_enviar {
    display: block;
    margin-left: auto;
    margin-top: 40px;
    background: var(--color-primary);
    border-radius: 10px;
    border: 0;
    padding: 15px 20px;
    font-size: 18px;
    font-family: var(--title-font);
    cursor: pointer;
}

.btn_enviar:active {
    transform: scale(.95);
}


/* Footer */

footer {
    background: linear-gradient(180deg, rgba(255, 253, 242, 0.29) 0%, #FFFDF2 100%);
    border-top: 10px solid #FFFFFF;
    box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.05);
    margin-top: 80px;
}

.redes {
    display: flex;
    align-items: center;
    gap: 15px;
}

.redes a {
    padding: 8px;
    background: #BBBBBB;
    border-radius: 10px 0px;
    color: #FFF;
    font-size: 20px;
}

.redes a:hover {
    background: var(--text-color);
}

.logo-footer {
    margin-bottom: 30px;
}

.logo-footer img {
    width: 200px;
    display: block;
    margin: auto;
}

.fa-facebook-f {
    padding: 0 5px;
}

.fa-twitter {
    padding: 0 1px;
}

.fa-instagram {
    padding: 0 3px;
}

.content-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* BOTON PARA SUBIR */

.go-top-container {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: -1;
}

.go-top-container .go-top-button {
    cursor: pointer;
}

.go-top-container .go-top-button i {
    color: var(--text-color);
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    padding: 20px;
    background: rgba(253, 220, 44, 0.85);
    box-shadow: 0px 3px 10px rgba(28, 37, 65, 0.2);
    border-radius: 10px;
}

.go-top-container.show {
    z-index: 10;
}

.go-top-container.show .go-top-button {
    animation: popup .3s ease-in-out;
    -webkit-animation: popup .3s ease-in-out;
    z-index: 11;
}

.go-top-container.show .go-top-button i {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transition: .2s;
}

@keyframes popup {
    0% {
        width: 0%;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 50px;
    }
}



/********** RESPONSIVE **********/



@media only screen and (min-width: 1920px) {
    header,section,footer{
        padding: 2em 20em;
    }
    .servicios {
        padding: 100px 20em 300px;
    }
}

@media only screen and (max-width: 1360px) {
    .servicios {
        padding: 100px 4em 300px;
    }
}

@media only screen and (max-width: 1240px) {
    .content-servicios {
        gap: 50px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .formulario {
        padding: 50px 20px
    }
}


@media only screen and (max-width: 1024px) {
    /* Experiencia */

    .bloques-experiencia {
        flex-direction: column;
    }

    .bloques-experiencia.dos {
        flex-direction: column-reverse;
    }

    .servicios {
        padding: 100px 2em 150px;
    }

    .content-servicios {
        margin: 80px 0 100px 0;
    }

}


@media only screen and (max-width: 950px) {
    .content-header {
        gap: 30px;
    }

    .logo {
        flex-grow: 2;
    }

    .close_menu,
    .menu_bar {
        display: block;
    }

    .menu_bar {
        filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.15));
    }

    .menu_bar img {
        margin-top: 5px;
    }

    .close_menu {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .botonera {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(175.88deg, #FDDC2C 0.75%, rgba(253, 220, 44, 0.85) 99.17%, #FDDC2C 99.17%);
        overflow: hidden;
        transition: 300ms ease-in-out;
        z-index: 3;
    }

    .botonera.active {
        width: 350px;
        transition: 300ms ease-in-out;
    }

    .botonera ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15%;
        align-items: start;
        height: 100%;
    }

    .botonera li {
        width: 100%;
    }

    .botonera ul li a {
        font-size: 24px;
        color: #FFFFFF;
        text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
        display: block;
        width: 100%;
        padding: 0 80px;
    }

    
    /* EXPÉRIENCIA */
    .experiencia-traductora:nth-of-type(2) .publicaciones,
    .publicaciones {
        gap: 0;
    }

    .experiencia-traductora:nth-of-type(2) .publicaciones span {
        text-align: right;
    }

    /* Contacto */

    .banner-form {
        display: none;
    }

    .titulo-presponsive,
    .formulario-contacto {
        display: block;
    }

    .titulo-presponsive {
        margin-bottom: 30px;
    }

    .formulario-contacto {
        padding: 50px 20px;
    }
}


@media only screen and (max-width: 768px) {
    .logo img {
        width: 150px;
    }

    h1 {
        font-size: 35px;
    }

    .content-banner p {
        font-size: 1.1em;
    }

    .formulario-contacto {
        padding: 0;
    }

    .referencia {
        padding: 15px;
    }

    .titulo-referencia {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 15px;
    }

    .referencia span {
        margin-left: auto;
    }
}

@media only screen and (max-width: 650px) {

    .personales,
    .contacto {
        flex-direction: column;
    }

    .servicios-content {
        flex-wrap: wrap;
        align-items: start;
        justify-content: space-between;
        gap: 20px;
    }

    .content-banner p {
        font-size: 15px;
        margin-top: 20px;
    }

    .content-footer {
        flex-direction: column;
        gap: 15px;
    }
}

@media only screen and (max-width: 560px) {
    .logo img {
        width: 130px;
    }

    .btn_solicitar a {
        padding: 12px;
        font-size: 14px;
    }

    .menu_bar img {
        width: 40px;
    }

    .botonera.active {
        width: 250px;
    }

    .botonera ul li a {
        padding: 0 30px;
    }

    .banner {
        padding: 15px;
    }

    h1 {
        font-size: 30px;
    }

    .servicios-content {
        display: grid;
        grid-template-columns: 1fr 100px;
        margin-top: 25px;
        column-gap: 50px;
    }

    .traductora img {
        width: 90%;
    }

    .servicios {
        padding: 100px 2em 20px;
    }

    .content-servicios {
        margin: 80px 0 10px 0;
    }

    .experiencia {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 9px;
        flex-direction: column-reverse;
    }

    .publicaciones {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
    }

    .experiencia-traductora:nth-of-type(2) .publicaciones {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }

    .publicaciones p {
        text-align: justify;
    }
    .go-top-container {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        z-index: -1;
    }
}


@media only screen and (max-width: 425px) {
    .content-header {
        gap: 15px;
    }

    .btn_solicitar a {
        padding: 8px;
        font-size: 14px;
    }

    .menu_bar img {
        width: 30px;
    }

    .logo img {
        width: 100px;
    }

    .banner {
        padding: 30px 15px;
        box-sizing: content-box;
    }

    h1 {
        font-size: 24px;
    }

    .servicios-content {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .servicios-content div {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .servicios {
        padding: 100px 1em 20px;
    }

    .servicio {
        width: 90%;
        padding: 15px;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
    }

    .referencia {
        width: 95%;
    }

    .nombre {
        flex-direction: column;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .titulo-referencia {
        gap: 10px;
    }

    .referencia span {
        margin: auto;
    }
}

@media only screen and (max-width: 375px) {

    .menu_bar img {
        width: 45px;
    }

    .botonera a {
        padding: 0 30px;
    }

    .elegir-servicio {
        grid-template-columns: 1fr;
    }


}