@font-face {
    font-family: 'bebas_bold';
    src: url('../assets/fonts/bebas/BebasNeueBold.otf') format('openType');
}

@font-face {
    font-family: 'bebas_regular';
    src: url('../assets/fonts/bebas/BebasNeue-Regular.otf') format('otf');
}

@font-face {
    font-family: 'bebas_book';
    src: url('../assets/fonts/bebas/BebasNeueBook.otf') format('otf');
}

@font-face {
    font-family: 'bebas_light';
    src: url('../assets/fonts/bebas/BebasNeueLight.otf') format('otf');
}

@font-face {
    font-family: 'bebas_thin';
    src: url('../assets/fonts/bebas/BebasNeueThin.otf') format('otf');
}

@font-face {
    font-family: 'cooper_medium';
    src: url('../assets/fonts/cooper/CooperHewitt-Medium.otf') format('otf');
}

@font-face {
    font-family: 'cooper_bold';
    src: url('../assets/fonts/cooper/CooperHewitt-Bold.otf') format('otf');
}

@font-face {
    font-family: 'cooper_book';
    src: url('../assets/fonts/cooper/CooperHewitt-Book.otf') format('otf');
}

@font-face {
    font-family: 'cooper_light';
    src: url('../assets/fonts/cooper/CooperHewitt-Light.otf') format('otf');
}

@font-face {
    font-family: 'cooper_thin';
    src: url('../assets/fonts/cooper/CooperHewitt-Thin.otf') format('otf');
}


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

body {
    overflow-x: hidden;
}

header {
    width: 100vw;
    height: 15vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-image: url(../assets/sección_1/fondo_head.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: sticky;
    z-index: 99999;
    top: 0;
}

.logotipo_ferresfuerzo {
    margin-top: 95px;
    width: 250px;
    height: 250px;
    object-fit: contain;
    z-index: 1;
}

.acciones {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    font-family: 'cooper_light', sans-serif;
    color: white;
}

.acciones a {
    font-size: 22px;
    color: white;
    text-decoration: none;
    font-family: 'cooper_light', sans-serif;
}

.redes {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.redes a img {
    width: 28px;
    height: 28px;
}

.div_logo_truper {
    font-family: 'cooper_light', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.logotipo_truper {
    width: 200px;
    height: 3vh;
}

/*Baner principal*/
.banner {
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: row;
    background-image: url(../assets/productos/seccion_1/fondo.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: end;
    justify-content: end;
    position: relative;
}

.banner h1 {
    font-family: 'bebas_bold', sans-serif;
    font-size: 70px;
    color: white;
    text-transform: uppercase;
    text-align: start;
    padding-bottom: 10vh;
    padding-right: 15vh;
    z-index: 1;
}

.banner .img_baner {
    width: 80%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
}

/*Baner marcas*/
.banner_marcas {
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: start;
    background-image: url(../assets/productos/seccion_2/fondo.png);
}

.banner_marcas h1 {
    font-family: 'bebas_bold', sans-serif;
    font-size: 50px;
    color: #575858;
    text-transform: uppercase;
    text-align: start;
    padding-top: 10vh;
    padding-left: 15vh;
}

.container_btns {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    padding-top: 5vh;
}

.container_btns button {
    width: 200px;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.container_btns button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-btn.active {
    border: 2px solid #e27726;
    transform: scale(1.05);
}

/*Section productos*/
.section_p {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5vh;
    background-color: rgb(230, 230, 230);
    position: relative;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.container_info_p {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

.container_info_p p {
    font-family: 'cooper_light', sans-serif;
    font-size: 18px;
    color: #333333;
    text-align: start;
}

.container_info_p p span {
    font-family: 'cooper_light', sans-serif;
    font-size: 18px;
    color: #e27726;
    text-align: center;
}

.container_info_p .enlace {
    bottom: 50px;
    right: 0;
    margin-right: 10vw;
    width: max-content;
    font-family: 'cooper_light', sans-serif;
    color: #ffffff;
    background-color: #3d4e75;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 12px;
}

.container_imgs {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
    padding: 5vh 15vw;
}

.fila1 {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

.fila1 img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.fila2 {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

.fila2 img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.section_p>a {
    position: absolute;
    bottom: 50px;
    right: 0;
    margin-right: 10vw;
    width: max-content;
    font-family: 'cooper_light', sans-serif;
    color: #ffffff;
    background-color: #3d4e75;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 12px;
}

.section_p a img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

/*Banner experiencia*/

.banner_experiencia {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../assets/productos/seccion_4/fondo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 5vh;
}

.container_columnas {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
    margin-top: -60px;
}

.container_columnas .columna {
    width: 22%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.container_columnas .columna img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.container_columnas .columna h1 {
    font-family: 'bebas_bold', sans-serif;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
}

.container_columnas .columna p {
    font-family: 'cooper_light', sans-serif;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}

/*Section de contacto*/

.contacto {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-image: url(../assets/productos/seccion_5/fonde.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 10vw;
}

.contacto_imgs {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: -100px;
}

.img_centro {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contacto_form {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2vh;
}

.contacto_form h1 {
    font-family: 'bebas_bold', sans-serif;
    font-size: 60px;
    color: #ffffff;
    text-align: start;
    text-transform: uppercase;
}

.contacto_form p {
    font-family: 'cooper_light', sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-align: start;
}

.formulario {
    width: 40vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 2vh;
}

.formulario input,
.formulario textarea {
    width: 100%;
    height: auto;
    padding: 10px;
    font-family: 'cooper_light', sans-serif;
    font-size: 16px;
    color: #333333;
    border: none;
    padding: 20px 10px;
}

.col {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vw;
}

.formulario button {
    width: 350px;
    height: 40px;
    background-color: #e27726;
    color: #ffffff;
    border: none;
    font-family: 'cooper_light', sans-serif;
    font-size: 16px;
    cursor: pointer;
    padding: 12px 14px;
}

/*Footer*/

footer {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../assets/pie/fondo_pie.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 50px;
}

.img_footer {
    width: 350px;
    height: 350px;
    object-fit: contain;
    margin-top: -80px;
}

.div_container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px 20px;
}

.columna_suscursales {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.columna_suscursales h1 {
    font-family: 'bebas_bold', sans-serif;
    font-size: 20px;
    color: #e27726;
}

.container_info_columna_sucursal {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.container_info_columna_sucursal img {
    width: 34px;
    height: 34px;
}

.container_info_columna_sucursal h2 {
    font-family: 'cooper_medium', sans-serif;
    font-size: 20px;
    color: #ffffff;
}

.container_info_columna_sucursal p {
    font-family: 'cooper_medium', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

/*Columna contacto*/

.columna_contacto {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.columna_contacto h1 {
    font-family: 'bebas_bold', sans-serif;
    font-size: 20px;
    color: #e27726;
}

.container_info_columna_contacto {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.container_info_columna_contacto img {
    width: 34px;
    height: 34px;
}

.container_info_columna_contacto h2 {
    font-family: 'cooper_medium', sans-serif;
    font-size: 20px;
    color: #ffffff;
}

.container_info_columna_contacto h3 {
    font-family: 'cooper_medium', sans-serif;
    font-size: 20px;
    color: #ffffff;
}

.container_info_columna_contacto p {
    font-family: 'cooper_medium', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

.correo {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.redes_footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.redes_footer a img {
    width: 24px;
    height: 24px;
}

/*Columna menu*/
.columna_menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.columna_menu h1 {
    font-family: 'bebas_bold', sans-serif;
    font-size: 20px;
    color: #e27726;
}

.container_info_columna_menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.container_info_columna_menu a {
    font-family: 'cooper_medium', sans-serif;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.container_info_columna_menu a img {
    width: 16px;
    height: 16px;
}

.fin {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: 'cooper_medium', sans-serif;
    font-size: 14px;
    color: #ffffff;
    border-top: #ffffff 1px solid;
    padding: 50px 12px;
}

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

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

    body {
        overflow-x: hidden;
    }

    /*header*/

    .logotipo_ferresfuerzo {
        margin-top: 95px;
        width: 200px;
        height: 200px;
        object-fit: contain;
    }

    .div_logo_truper h3 {
        font-size: 16px;
    }

    .logotipo_truper {
        width: 80px;
        height: 10vh;
    }

    /*Baner principal*/

    .banner h1 {
        font-family: 'bebas_bold', sans-serif;
        font-size: 60px;
        color: white;
        text-transform: uppercase;
        text-align: start;
        padding-bottom: 10vh;
        padding-right: 15vh;
        z-index: 1;
    }

    .banner .img_baner {
        width: 70%;
        height: auto;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .banner_marcas h1 {
        font-family: 'bebas_bold', sans-serif;
        font-size: 40px;
        color: #575858;
        text-transform: uppercase;
        text-align: start;
        padding-top: 10vh;
        padding-left: 15vh;
    }

    .container_btns button {
        width: 150px;
        height: auto;
        background-color: transparent;
        border: none;
        cursor: pointer;
        overflow: hidden;
    }

    /*Section productos*/

    .fila1 {
        width: 70%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2vw;
    }

    .fila1 img {
        width: 70%;
        height: auto;
        object-fit: contain;
    }

    .fila2 {
        width: 70%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2vw;
    }

    .fila2 img {
        width: 70%;
        height: auto;
        object-fit: contain;
    }

    /*Banner experiencia*/

    .container_columnas .columna img {
        width: 110px;
        height: 110px;
        object-fit: contain;
    }

    .container_columnas .columna h1 {
        font-family: 'bebas_bold', sans-serif;
        font-size: 18px;
        color: #ffffff;
        text-align: center;
    }

    .container_columnas .columna p {
        font-family: 'cooper_light', sans-serif;
        font-size: 14px;
        color: #ffffff;
        text-align: center;
    }

    /*Section de contacto*/


    .contacto_form h1 {
        font-family: 'bebas_bold', sans-serif;
        font-size: 40px;
        color: #ffffff;
        text-align: start;
        text-transform: uppercase;
    }

    .contacto_form p {
        font-family: 'cooper_light', sans-serif;
        font-size: 18px;
        color: #ffffff;
        text-align: start;
    }

    .formulario input,
    .formulario textarea {
        width: 100%;
        height: auto;
        padding: 10px;
        font-family: 'cooper_light', sans-serif;
        font-size: 16px;
        color: #333333;
        border: none;
        padding: 15px 10px;
    }
}

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

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

    body {
        overflow-x: hidden;
    }

    /*header*/

    .logotipo_ferresfuerzo {
        margin-top: 0px;
        width: 150px;
        height: 200px;
        object-fit: contain;
    }

    /* Ocultar menú normal */

    .div_logo_truper {
        display: none;
    }

    .acciones {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgba(64, 109, 192, 0.95);
        width: 200px;
        padding: 20px;
        border-radius: 8px;
    }

    /* Mostrar menú cuando esté activo */
    .acciones.active {
        display: flex;
    }

    /* Botón hamburguesa */
    .hamburguesa {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        cursor: pointer;
        margin-left: auto;
    }

    .hamburguesa span {
        display: block;
        height: 3px;
        background: white;
        border-radius: 2px;
    }

    /* Ajustes header */
    header {
        padding: 0px 20px;
    }

    /*Baner principal*/
    .banner {
        width: 100%;
        height: 65vh;
        display: flex;
        flex-direction: column;
        background-image: url(../assets/productos/seccion_1/fondo.png);
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: cover;
        align-items: end;
        justify-content: end;
        position: relative;
        overflow-x: hidden;
    }

    .banner h1 {
        font-family: 'bebas_bold', sans-serif;
        font-size: 50px;
        color: white;
        text-transform: uppercase;
        text-align: start;
        padding-bottom: 40vh;
        padding-right: 60px;
        z-index: 1;
    }

    .banner .img_baner {
        width: 600px;
        height: auto;
        position: absolute;
        left: 0;
        bottom: 0;

    }

    /*Baner marcas*/
    .banner_marcas {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: start;
        background-image: url(../assets/productos/seccion_2/fondo.png);
    }

    .banner_marcas h1 {
        font-family: 'bebas_bold', sans-serif;
        font-size: 30px;
        color: #575858;
        text-transform: uppercase;
        text-align: start;
        padding-top: 10vh;
        padding-left: 5vw;
    }

    .container_btns {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 2vw;
        padding-top: 5vh;
        padding-left: 10vw;
        padding-right: 10vw;
    }

    .container_btns button {
        width: 150px;
        height: auto;
        background-color: transparent;
        border: none;
        cursor: pointer;
        overflow: hidden;
    }

    /*Section productos*/
    .section_p {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2vh;
        position: relative;
        padding-top: 5vh;
        padding-bottom: 5vh;
    }

    .container_info_p {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2vw;
    }

    .container_info_p p {
        font-family: 'cooper_light', sans-serif;
        font-size: 18px;
        color: #333333;
        text-align: center;
    }

    .container_info_p .enlace {
        bottom: 50px;
        right: 0;
        margin-right: 0;
        width: max-content;
        font-family: 'cooper_light', sans-serif;
        color: #ffffff;
        background-color: #3d4e75;
        text-decoration: none;
        font-size: 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 10px 12px;
    }

    .section_p>a {
        position: absolute;
        bottom: 30px;
        right: 0;
        margin-right: 10vw;
        width: max-content;
        font-family: 'cooper_light', sans-serif;
        color: #ffffff;
        background-color: #3d4e75;
        text-decoration: none;
        font-size: 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 10px 12px;
    }

    .container_columnas {
        width: 90%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 3vw;
        margin-top: -60px;
    }

    .container_columnas .columna {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2vh;
    }

    .container_columnas .columna img {
        width: 100px;
        height: 100px;
        object-fit: contain;
    }

    /*Section de contacto*/

    .contacto {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-image: url(../assets/productos/seccion_5/fonde.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 0 10vw;
    }

    .contacto_imgs {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        margin-top: -100px;
    }

    .contacto_form {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 2vh;
    }

    .contacto_form h1 {
        font-family: 'bebas_bold', sans-serif;
        font-size: 40px;
        color: #ffffff;
        text-align: start;
        text-transform: uppercase;
    }

    .formulario {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: end;
        gap: 2vh;
    }

    .formulario button {
        width: 200px;
        height: 40px;
        background-color: #e27726;
        color: #ffffff;
        border: none;
        font-family: 'cooper_light', sans-serif;
        font-size: 16px;
        cursor: pointer;
        padding: 12px 14px;
    }

    /*Footer*/
    footer {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-image: url(../assets/pie/fondo_pie.svg);
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: cover;
        padding-bottom: 50px;
    }

    .img_footer {
        width: 250px;
        height: 250px;
        object-fit: contain;
        margin-top: -80px;
    }

    .div_container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-evenly;
        gap: 20px;
        padding: 20px 20px;
    }

    .columna_menu {
        display: none;
    }
}