@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
    --gray-color: #575757; 
    --gray-color-second: #bdbdbd; 
    --gray-dark-color:#212020;
    --custom-black: #131213;
    --white-color:#f8f8f8;
    --black-color: #000000; 
    --green-color: #54ba1d;
    --custom-green: linear-gradient(45deg, #90EE90, #058f05);
    --background-body: #ffffff; 
    --custom-red:  rgb(187, 27, 27);
}

body {
    background-color: var(--background-body);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: scroll;
    color:  var(--custom-black);
}
/* --------------------------------------------------------- */
header {
    width: 100%;
}
.menu {
    display: none;
}
.navbar{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: right;
    height: 16vh;
    position: relative;
}
.navbar .container-navbar{
    display: flex;
    margin: 0 28px;
    width: 100%;
    justify-content: space-between;
}
.navbar .container-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}
.navbar .container-logo .logo{
    width: 35vh;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 8vh;
    font-weight: 900;
    letter-spacing: 8px;
    font-family: "Roboto Condensed", serif;

}
.navbar .container-options {
    display: flex;
    font-family: "Onest", serif;
    font-size:  2.5vh;
    font-weight: 500;
    gap: 5vh;
}
.navbar .container-options .options{
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 3.1vw;
    width: auto;
}
.navbar .container-options .options .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.navbar .container-options .options .item a {
    text-decoration: none;
    color:  var(--gray-dark-color);
}

.navbar .container-options .options .item:hover a {
    color: var(--gray-color);
}

.navbar .container-options .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 1vw;
    text-decoration: none;
}
.navbar .container-options .buttons .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5vh;
    color: var(--gray-dark-color) ;
    height: 4.5vh;
    width: 17vh;
    border-radius: 40px;
    border: solid 1px var(--green-color);
    
}
.navbar .container-options .buttons .btn:hover{
    cursor: pointer;
    background: var(--custom-green);
    border: solid 1px var(--green-color);
 }
 .button-menu {
    display: none;
 }
 .button-menu .container-button-menu button{
    display: flex;
    flex-direction: column;
    width: 3rem;
    height: 3rem;
    border: 0;
    background: transparent;  
    gap: .65rem; 
 }
 .button-menu .container-button-menu button > div{
    background: var(--black-color);
    height: 2px;
    width: 100%;
    border-radius: 5px;
    transition: all .5s;
    transform-origin: left;
 }

/*BANNER MAIN*/
.banner-main{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

.banner-main .container-banner-main{
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    height: 100%;
    margin: 100px 28px;
    gap: 5vh;
}
.banner-main .container-banner-main .title{
    font-size: 11vw;
    font-family: "Anton", serif;
    height: 100%;
    line-height: 1;
}
.banner-main .container-banner-main .container-img{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 73vh;
}
.banner-main .container-banner-main .container-img .img-box{
    width: 100%;
    display: flex;
    height: 28vw;
}
.banner-main .container-banner-main .container-img .img-box img{
   width: 0px;
   flex-grow: 1;
   object-fit: cover;
   opacity: .8;
   transition: .5s ease;
}
.banner-main .container-banner-main .container-img .img-box img:hover{
    cursor: crosshair;
    width: 15vw;
    opacity: 1;
    filter: contrast(120%);
}

/* --------------------------------------------------------------- */

  /* Contenedor principal */
  .gallery {
    display: flex;
    justify-content:center;
    align-items: center;
    gap: 100px;
    width: 100%;
    background-color: var(--custom-black);
    height: 100vh;
}

/* --- ESTILOS DE CADA DIBUJO --- */
.gallery-item {
    width: 20vw;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(100px) scale(0.9) rotateX(20deg);
    transition: transform 1s ease-out, opacity 1s ease-out;
    perspective: 1000px;
}

/* Marco futurista con efecto de neón */
.frame {
    width: 100%;
    height: 100%;
    padding: 15px;
    background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.gallery-item:hover .frame {
    transform: rotateY(180deg);
}

.front, .back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.front {
    background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    font-family: "Bebas Neue", serif;
    font-size: 14vh;
    text-align: center;
    color: rgb(178, 205, 0);
}

.front img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.2);
    border-radius: 10px;
}

.back {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotateY(180deg);
    color: white;
    font-size: 4vh;
    text-align: center;
    font-family: "Bebas Neue", serif;
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}
.gallery-item.visible {
    opacity: 1;
    transform: translateY(0px) scale(1) rotateX(0deg);
    animation: float 3s infinite alternate ease-in-out;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/*----------------------------------------------------------------*/
.words-displacement
{
    width: 100%;
    height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    background-color: var(--custom-black);
    color: var(--background-body);
}
.words-displacement .container-words-displacement{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.words-displacement .container-words-displacement .box-word {
    width: 400%;
    height: 10vw;    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6.5vw;
    font-family: "Lexend",Arial;
    font-weight: bold;
    transition: transform 0.3s ease-out;
    position: relative;
}
/* --------------------------------------------------------------------- */
.title-description{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--custom-black);
    color: var(--white-color);
    font-family: "Lexend",Arial;
    font-weight: 700;
    font-size: 11vw;
    padding: 4vw 0;
    text-align: center;
}
.description-about{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Onest", serif;
    background-color: var(--custom-black);
    color: var(--white-color);
}
.description-about .container-description-about{
    display: flex;
    height: auto;
    margin: 9vw 0;
}
.description-about .container-description-about .img-about{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.description-about .container-description-about .img-about .img{
    width: 60%;
    height: 85%;
    margin: 2vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.description-about .container-description-about .img-about .img .photo{
    height: 85%;
    background-image: url("images/img-faro.jpg");
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
}
.description-about .container-description-about .img-about .subtitle-img{
    font-weight: 600;
}
.description-about .container-description-about .info-about{
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.description-about .container-description-about .info-about .info-text{
    font-size: 3vw;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.description-about .container-description-about .info-about .read-more{
    display: flex;
    align-items: center;
    margin-top: 10vh;
}
.description-about .container-description-about .info-about .read-more a{
    color: var(--background-body);
    border-bottom: 1px solid var(--white-color);
}
.description-about .container-description-about .info-about .read-more a:hover {
    background-color: var(--background-body);
    color: var(--custom-black);
}
a{
    text-decoration: none;
}


/* ------------------------------------------------------------------------------- */

/* deplazamiento de texto */
.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--custom-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 15vw;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    padding: 30vh 0;
  }
  
  .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 20s linear infinite;

  }
  
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-42%); }
  }
  
/* -------------------------------------------------------------------- */

/* contenido de los dibujos */
.work-title{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
}
.work-title h2{
    background-color: var(--background-body);
    font-family: "Lexend",Arial;
    font-weight: 700;
    font-size: 14vw;
    padding: 0 5vh;
    width: 100%;
}
.container-worcks {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.container-worcks .item-worck{
    width: auto;
    max-height: 1050px;
    height: 1050px;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    margin: 4vh;
}
.container-worcks .item-worck .info-worck .title{
    font-size: 4vw;
    font-family: "Bebas Neue", serif;
    margin-top: 20px;
}
.container-worcks .item-worck .info-worck .text p{
    font-family: "Onest", serif;
    font-size: 1.4vw;
    line-height: 1.7;
}
.img-w {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 950px;
}
.small{
    height: 700px;
}
.worck-1{
    background-image: url("images/draw-1.jpg");
}
.worck-2{
    background-image: url("images/draw-2.jpg");
}

.worck-3{
    background-image: url("images/draw-3.jpg");
}
.worck-4{
    background-image: url("images/draw-4.jpg");
}
.worck-5{
    background-image: url("images/draw-5.jpg");
}
.worck-6{
    background-image: url("images/draw-6.jpg");
}
.worck-7{
    background-image: url("images/draw-7.jpg");
}
.worck-8{
    background-image: url("images/draw-8.jpg");
}
.worck-9{
    background-image: url("images/draw-9.jpg");
}

/* ------------------------------------------------------------------------ */
                            /* services */
/* -------------------------------------------------------------------------------------- */

.container-services{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--custom-black);
}
.container-services .title-services{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
 
}
.container-services .title-services h2{
    font-size: 14vw;
    width: 100%;
    font-family: "Lexend", Arial;
    font-weight: 700;
    color: var(--background-body);
    padding: 0 10vh;
}
.container-services .container-table-services{
    width: 100%;
    height: 150vh;
    display: flex;
    align-items: center;
    justify-self: center;
}
.container-services .container-table-services .table-services{
    width: 100%;
    padding: 10vh;
    height: auto;
}
.container-services .container-table-services .table-services .row .item-service{
    display: flex;
    align-items: center;
    justify-content: center;
}
.container-services .container-table-services .table-services .row .item-service h2{
    text-align: center;
    font-size: 4vw;
    font-family: "Press Start 2P", system-ui;
    
}
.container-services .container-table-services .table-services .row{
    display: flex;
    height: 50%;
    color: var(--background-body);
}
.container-services .container-table-services .table-services .row .t-big{
    width: 60%;
    border: 1px solid var(--background-body);
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out, border 0.5s ease-in-out;
}
.container-services .container-table-services .table-services .row .t-big:hover{
    background-color: var(--background-body);
    color: var(--custom-black);
    border: 1px solid var(--background-body);
}
.container-services .container-table-services .table-services .row .t-small{
    width: 40%;
    border: 1px solid var(--background-body);
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out, border 0.5s ease-in-out;
}
.container-services .container-table-services .table-services .row .t-small:hover{
    background-color: var(--background-body);
    color: var(--custom-black);
    border: 1px solid var(--background-body);
    
}
/* ----------------------------------------------------------------------- */
/*                                TESTIMONIOS                               */
/* ---------------------------------------------------------------- */
.title-testimonial{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-body);
}
.title-testimonial h2{
    font-family: "Lexend", Arial;
    font-weight: 700;
    font-size: 14vw;
}
.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 0  0 15vh 0;
    text-align: center;
}

.carousel {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 55s linear infinite;
}
.testimonial {
    width: 500px;
    height: 450px;
    padding: 20px;
    border: 2px solid #aaaaaa56;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--background-body);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-85%); }
}

.carousel::after {
    content: "";
    display: flex;
    gap: 20px;
}
.profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-start;
    font-family: "Onest", serif;
}
.profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 10px;
}
.profile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 2vh;
}
.profile-info h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0;
}
.profile-info span {
    font-size: 14px;
    color: gray;
    text-transform: uppercase;
}
.text-testimonial {
    font-size: 1.2vw;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: "Onest", serif;
    text-align: justify;
}
.company {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Lexend",Arial;
    font-weight: 500;
}
.company .stars-inline {
    margin-left: 10px;
    color: gold;
    font-size: 18px;
}
/* ------------------------------------------------------------------------------------ */
.footer{
    width: 100%;
    height: 100vh;
    color: var(--white-color);
    font-family: "Lexend",Arial;
    overflow: hidden; 
    background-color: var(--custom-black);
    border-top: 2px solid #7c7b7b2c;
}
.footer .container-footer{
   width: 100%;
   height: 100%;
   display: flex;
   align-items: end;
   justify-content: center;
}
.footer .container-footer .container-footer-aline{
    width: 100%;
    padding: 0 4vw;
}
.footer .container-footer .container-footer-aline .info-end{
    font-size: 2vw;
}
.footer .container-footer .container-footer-aline .info-end .container-info-end{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 29vw;
}
.footer .container-footer .container-footer-aline .info-end .container-info-end .form{
    width:20vw;
    height: 58vh;
}
.footer .container-footer .container-footer-aline .info-end .container-info-end .form .container-form .email{
    height: 14.9vh;
    width: 35vw;
    display: flex;
    align-items: center;
    justify-content: center; 
    border: 1px solid var(--white-color);
    color: var(--gray-color-second) ;
}
.footer .container-footer .container-footer-aline .info-end .container-info-end .form .container-form .email:hover{
 cursor: pointer;
}

.footer .container-footer .container-footer-aline .info-end .container-info-end .form .container-form .message{
    width: 25vh;
    border: 1px solid var(--white-color);
    font-size: 1.5vw;
    color: var(--black-color);
    background-color: var(--background-body);
    height: 5vh;
    display: none;
    text-align: center;
    padding: 5px;
    margin-top: -30px;
}
.footer .container-footer .container-footer-aline .info-end .container-info-end .social .container-social .time{
    color: var(--gray-color);
}
.footer .container-footer .container-footer-aline .info-end .container-info-end .separator{
    display: grid;
    gap: 5vh;
}
.footer .container-footer .container-footer-aline .info-end .container-info-end .social{
    width: 35vw;
    height: 58vh;
}
i{
    font-size: 2.5vw;
}
.footer .container-footer .container-footer-aline .title-end{
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10vh;
}
.footer .container-footer .container-footer-aline .title-end .cube{
    width: 7.5vw;
    height: 7.7vw;
    background-color: var(--white-color);
}
.footer .container-footer .container-footer-aline .title-end .container-title-end{
    font-size: 10.9vw;
    font-weight: 500;
    letter-spacing: 2vw;
}
.container-grid{
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
}
.b-f{
    border-bottom: 1px solid #7c7b7b85;
}
.container-grid .grid{
    border-right: 2px solid #7c7b7b2c;
    width: 30%;
}
@media (max-width: 1250px) {
    .banner-main .container-banner-main .container-img .img-box{
        height: 38vw;
    }
    .banner-main .container-banner-main .container-img .img-box img:hover{
        width: 200px;
    }
    .banner-main .container-banner-main .title{
        font-size: 12vw;
    }
    .gallery{
        flex-direction: column;
        height: auto;
        padding: 10vh 0;
    }
    .gallery-item {
        width: 40vw;
    }
}
@media (max-width: 1024px) {
    .menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background: var(--green-color);
        transition: left 0.5s ease-in-out;
        z-index: 999;
    }

    .menu.open {
        left: 0; 
    }

    .menu ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }

    .menu li {
        margin: 20px 0;
    }

    .menu a {
        text-decoration: none;
        color: var(--white-color);
        font-size: 8vw;
        font-family: "Bebas Neue", serif;
        font-weight: 500;
    }
    .menu a:hover {
        color: var(--custom-black);
    }
    /* Botón de menú */
    .button-menu {
        position: fixed;
        top: 47px;
        right: 20px;
        z-index: 1000;
    }

    .button-menu button {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .button-menu button div {
        width: 30px;
        height: 3px;
        background: white;
        transition: transform 0.3s ease;
    }
    .button-menu.open button div {
        background: white;
    }

    .button-menu.open button div:first-child {
        transform: rotate(45deg);
    }

    .button-menu.open button div:nth-child(2) {
        opacity: 0;
    }

    .button-menu.open button div:last-child {
        transform: rotate(-45deg);
    }
    .banner-main .container-banner-main .container-img {
        position: relative;
        z-index: 1;
    }

/* ----------------------------------------------- */
    .navbar .container-options {
        display: none;
    }
    .button-menu{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .banner-main .container-banner-main .container-img .img-box{
        height: 45vw;
    }
    .banner-main .container-banner-main .title{
        font-size: 13vw;
    }
    /* ------------------------------------------------------------- */
    .description-about .container-description-about{
        display: block;
  
    }
    .description-about .container-description-about .img-about {
        width: 100%;
        align-items: center;
    }
    .description-about .container-description-about .img-about .img {
        width: 80%;
        height: 60vh;
        margin: 2vh 0;
    }
    .description-about .container-description-about .info-about {
        width: 100%;
        align-items: center;
        margin: 14vh 0;
    }
    .description-about .container-description-about .info-about .info-text {
        align-items: center;
        padding: 0 10vh;
        text-align: center;
    }
    /* --------------------------- */

    .container-worcks{
        grid-template-columns: repeat(1, 1fr);
    }
    .item-worck .img-w{
        height: 600px;  
    }
    .info-worck{
        text-align: center; 
    }
    .container-worcks .item-worck .info-worck .title {
        font-size: 6vw;
    }
    .container-worcks .item-worck .info-worck .text p{
        font-size: 2.5vw;
    }
    .container-worcks .item-worck {
        height: auto;
    }
    /* ---------------------------------------------------------- */

    .container-services .container-table-services{
        margin: 10vh 0;
    }

    .container-services .container-table-services .table-services .row{
        flex-direction: column;
    }
    .container-services .container-table-services .table-services .row .item-service{
        width: 100%;
        height: 100%;
    }
    .text-testimonial {
        font-size: 2vw;
    }
    .carousel {
        animation: scroll 85s linear infinite;
    }
    .testimonial {
        width: 400px;
        height: 340px;
    }
    /*--------------------------------------------------*/
    .footer .container-footer .container-footer-aline{
        display: grid;
        gap: 14vw;
    }
    
}
@media (max-width: 768px) {
    .title-description{
        padding: 15vh 0;
    }
    .description-about .container-description-about .info-about .info-text{
        font-size: 5vw;
    }
    .banner-pencil {
        height: 65vh;
    }
    .words-displacement {
        height: 56vh;
    }
    .words-displacement .container-words-displacement .box-word {
        height: 9vh;
        font-size: 8.5vw;
    }
    .container-worcks{
        grid-template-columns: repeat(1, 1fr);
    }
    .item-worck .img-w{
        height: 400px;  
    }
    .info-worck{
        text-align: center; 
    }
    .container-worcks .item-worck .info-worck .title {
        font-size: 8vw;
    }
    .container-worcks .item-worck .info-worck .text p{
        font-size: 4vw;
    }
    .container-worcks .item-worck {
        height: auto;
    }
    .text-testimonial {
        font-size: 3vw;
    }
      /*--------------------------------------------------*/
      .footer {
        width: 100%;
        height: auto;
      }
      .footer .container-footer .container-footer-aline .info-end .container-info-end {
        display: block; 
        height: auto;
    }
    .container-grid {
        height: auto;
    }

    .footer .container-footer .container-footer-aline .info-end {
        font-size: 3.5vw;
    }
    .footer .container-footer .container-footer-aline .info-end .container-info-end .form {
        width: 100%;
        height: 40vh; 
        padding-bottom: 7vw;
    }
    .footer .container-footer .container-footer-aline .info-end .container-info-end .form .container-form .email {
        height: 10.9vh;
        width: 100%;
    }
    .footer .container-footer .container-footer-aline .info-end .container-info-end .form .container-form .message {
        height: 4vw;
    }
    .footer .container-footer .container-footer-aline .info-end .container-info-end .social {
        width: 100%;
        height: auto;
    }
    i {
        font-size: 4.5vw;
    }
    .footer .container-footer .container-footer-aline {
        display: grid;
        gap: 3vw;
        max-height: 129vw;
        margin: 2vh 9vh 0 9vh;
    }
    
    .footer .container-footer{
        align-items: center;
    }
    .footer .container-footer .container-footer-aline .info-end .container-info-end .form .container-form .message{
        font-size: 3vw;
    }
    .gallery-item {
       width: 50vw; 
       height: 70vw;
    }
    .marquee {
        height: 300px;
        font-size: 36vw;
        padding: 7vh 0;
    }
    .track {
        animation: marquee 30s linear infinite;
    }
}
@media (max-width: 540px) {
    .menu a {
        font-size: 12vw;
    }
    .banner-main .container-banner-main {
        display: block;
    }
    .banner-main .container-banner-main .title{
        margin-bottom: 10vh;
    }
    .banner-main .container-banner-main .container-img .img-box{
        height: 350px;
    }
    .banner-main .container-banner-main .container-img .img-box img:hover{
        width: 100px;
    }
    .banner-main .container-banner-main .container-img .img-box img:hover{
        width: 230px;
    }
    .banner-main .container-banner-main .title{
        font-size: 17vw;
        align-items: center;
    }
   
    .container-services .title-services h2{
        padding: 0;
        text-align: center;
    }
    .description-about .container-description-about .info-about .info-text{
        font-size: 5vw;
    }
    .words-displacement .container-words-displacement .box-word {
        width: 450%;
        height: 18vw;
    }
    .footer .container-footer .container-footer-aline {
        gap: 10vw;
    }
}
