:root{
    --primary-color: #850c1a;
    --secundary-color: #181617;
    --font-tittle-color: #d3d2d0;
    --font-grey-dark: rgb(141, 139, 139);
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    font-size: 62.5%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.icons a{
    text-decoration: none;
    color: var(--primary-color);
}
body{
    background-color: white;
}

/* HEADER */

.header-logo-container{
    background: linear-gradient(90deg,#f7f6f6,#dbdadb);
    height: calc(12rem + 2.9rem);
    position: sticky;
    top: 0;
    z-index: 5;
}
.header-icons-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    background: linear-gradient(90deg,#f5f4f4,#d4d3d471);
}
.header-icons-container a :hover{
    color: var(--secundary-color);
    zoom: 0.9;
}
header picture.section-container-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12rem;
}
header .section-container-logo img{
    width: 20rem;
}

/* HEADER LANDING PAGE */

.header-LandingPage{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secundary-color);
    text-align: center;
    min-height: 40px;
}
.header-LandingPage h2{

    color: var(--font-tittle-color);
}


/* NAV */


header .nav_home__container {
  border-block-start: 1px solid #ffffff60;
  border-block-end: 1px solid #ffffff60;
  height: 2.9rem;
  text-align: center;
}

header .nav_home__container ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 500px;
    opacity: 0;
    /* position:fixed;
    top: 0;
    width: 100%; */
    transform: translateY(-110%);
    background-color: var(--primary-color);
    transition: height 0.2s ease-in-out, opacity 0.25s ease-in-out, transform 0.2s ease-in-out;
    pointer-events: none;
}

header .nav_home__container li{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--font-tittle-color);
  padding: 0.2rem 0;
}

header .nav_home__container ul li a {
  text-decoration: none;
  color: var(--font-tittle-color);
  font-size: 2.5rem;
  display: block;
}
header .nav_home__container ul li a:hover {
    font-size: 2.7rem;
    font-weight: 600;
}
header .nav_home__container details summary { 
    list-style: none;
    padding: 0.2rem 0;
    cursor:pointer;
}
header .nav_home__container details summary:hover { 
    font-size: 2.7rem !important;
    font-weight: 600 !important;
}
header .nav_home__container details summary::after { 
    content: "+"; 
    font-size: 1.7rem; 
    padding-left: 8px;
    pointer-events: none;
}
header .nav_home__container details[open] summary::after{
    content: "-"
}
header .nav_home__container summary{
    cursor: pointer;
}
header .nav_home__container--submenu {
  padding: 1rem 0;
  background-color: #f1580b27;
}
header .nav_home__container--submenu a {
    font-size: 2.2rem !important;
    font-weight: 300;
    padding: 0.4rem 0;
    /* font-weight: 800 !important; */
}

/* Animación de Etiqueta Details Summary*/


details[open] summary ~ * {
    animation: slideOpacity_menu 0.5s ease-in-out forwards;
    opacity: 1;
}

@keyframes slideOpacity_menu {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.checkbtn i img {
    display: block;
    width: 2.1rem;
    margin: 0.3rem auto;
}
header .nav_home__container input {
    display: none;
}

header .nav_home__container input:checked ~ ul {
    height: calc(100dvh - 120px);
    opacity: 0.95;  
    transform: translateY(0);
    pointer-events: auto;
    /* position:fixed;
    top: 0;
    width: 100%; */
}
header .nav_home__container input:checked ~ .checkbtn i img {
    display: none; /* Ocultar la imagen del ícono del menú */ 
} 
header .nav_home__container input:checked ~ .checkbtn i::before { 
    content: '';
    display: block;
    width: 27px;
    height:27px; 
    background-image: url(../assets/img/IconoClose-01.svg);
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: center;
    margin: 7px auto;
    /* position: fixed; */
    position: absolute;
    top: 155px;
    right: 35px;
    z-index: 1;
    opacity: 0; 
    
}
header .nav_home__container input:checked ~ .checkbtn i::before {
     opacity: 1;
     transition: opacity 1s ease-in 2s; 
}


/* MAIN BODY layaut */


main{
    background: linear-gradient(90deg,#f7f6f6,#dbdadb);
    height: auto;

}
main .main-layout_column{
    display: grid;
    grid-template-columns:1fr;
    grid-template-rows: repeat(3, auto);
}
.left-side {
    grid-row: 3 / 4;
    background: linear-gradient(90deg,#f7f6f6,#dbdadb);
  }
.section_main {
    grid-row: 1 / 2;
    background-color: #f7f6f680;
    padding: 4rem;
    background-image: url(../assets/img/RadiacionLogo_Puntos.png);
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: top right;
  }
.right-side {
    grid-row: 2 / 3;
    background: linear-gradient(90deg,#f7f6f6,#dbdadb);
  }


/* SECTION MAIN */

main .section_main h2 {
    color: var(--primary-color);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 4.2rem;
    letter-spacing: -0.1rem ;
    margin: 3rem 0;
}
main .section_main h1{
    color: var(--secundary-color);
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 2.4rem;
    margin-block-end: 3rem;
    white-space: nowrap;
    border-right: 0.2rem solid;
    width: 28.5rem;
    height: 2.9rem;
    animation: typing infinite alternate 3.5s steps(28) , blink_typing 1.2s infinite alternate;
    overflow: hidden;
}

@keyframes typing {
    from {width: 0;}
   
}

@keyframes blink_typing{
    50% { border-color: transparent;}
}

main .section_main button , .main-article_seo button{
    background-color: var(--primary-color);
    color: var(--font-tittle-color);
    width: 19rem;
    height: 3.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    border: none;
    border-radius: 0.8rem;
    display: block;
    margin: 6rem auto ;
    cursor: pointer;
}
main .section_main button:hover{
    background-color: var(--secundary-color);
}
main .section_main a{
    width: 17rem;
    height: 3.5rem;
    text-decoration: none;
}


/* LEFT & RIGHT SECTIONS titles 
    LEFT SECTION */


main .left-side section{
    display: grid;
    height: 48rem;
}
main .right-side section {
    display: grid;
    height: 50rem;
}
main .left-side section{
    margin-block-end: 5rem;
}
main .left-side section H2, main .right-side section H2, .body-section_product h2{
    grid-row: 1/2;
    place-self: center;
    color: var(--primary-color);
    font-size: 3.7rem;
    letter-spacing: -0.1rem ;
}
.right-side section H2{
    margin-block-start: 4rem;
}
main .left-side section ul{
    margin-block-start: -10%;
    grid-row: 2/3;
    place-self: center;
    text-align: center;
    list-style: none;
    width: 70vw;
}
main .left-side section ul li {
    border: solid #aaa8a8 0.1rem;
    border-radius: 1rem;
    margin: 1.5rem 0;
   
}
main .left-side section ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 1rem;
    color:var(--secundary-color);
    font-size: 2rem;
    height: 4rem;
   
}
main .left-side section ul li a:hover{
    color: var(--font-tittle-color);
    background-color: var(--primary-color);
    color: var(--font-tittle-color);
    height: 4rem;
    
}
main .left-side h3{
    grid-row: 3/4;
    place-self: center;
    width: 70%;
    font-weight: 400;
    font-size: 1.2rem;
}
main .left-side h3::first-line{
    color: var(--primary-color);
}
main .left-side h3 a{
    color: var(--primary-color);
}


/* RIGHT SECTION - PROYECTOS */

main .projects-news_slider{
    overflow-x: scroll;
    padding-inline-start: 2rem;
    padding-block-start: 4rem;
}
main .projects-news_slider::-webkit-scrollbar{
    display:none;
}
main .container-slider{
    display:flex;    
}
.projects-news_slider article{
    width: 26rem;
    margin-inline-end: 1rem;
}
.projects-news_slider article figure{
    width: 26rem;
    height: 24rem;
    background-color: papayawhip;
    border-radius: 8% 8% 0 0;
    overflow: hidden;
}
.projects-news_slider article figure img{
    height: 100%;
    width: 100%;
}
.projects-news_slider h4{
    color: var(--font-tittle-color);
    background-color: var(--secundary-color);
    font-size: 1.4rem;
    padding: 0.8rem;
    font-weight: 400;
    padding-inline-start: 1.7rem;
}
.container-slider div{
    display: flex;
    /* justify-content: space-around; */
    height: 4rem;
    border: solid #aaa8a8 0.1rem;
    border-radius: 0 0 1.5rem 1.5rem;
}
.container-slider article h5{
    font-weight: 400;
    font-size: 1.1rem;
    /* padding: 0.8rem; */
    color: var(--secundary-color);
    display:flex;
    align-items: center;
}

.container-slider article h6{
    font-weight: 400;
    font-size: 1.1rem;
    padding: 0.4rem;
    color: #7c7a7a;
    display: flex;
    align-items: center;
}
.container-slider a{
    text-decoration: none;
}
.container-slider i{
    display: flex;
    padding: 0 2.8rem 0 0.8rem;
    margin: auto 0;
    width: 2rem;
    height: 2rem;
}




/* SECTION LOGO PRODUCTS */


.body-section_product{
    height: 60rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-block-start: 1px solid var(--primary-color);
    padding: 6rem;
    background: linear-gradient(90deg,#d3d1d1, #ece9eb,#b6b5b5);
}
.body-section_product h2{
    text-align: center;
}
.body-section_product img{
    max-width: 15rem;
}

/* SECTION LOGO CAROUSEL BRANDS NEW*/

.body-section-carousel_brands_MainContainer{
    display: grid;
    border-block-start: 1px solid var(--primary-color);
}
.body-section-carousel_brands_MainContainer--titles h3{
    color: var(--primary-color);
    font-size: 3.7rem;
    font-weight: 700;
    line-height: 4.2rem;
    letter-spacing: -0.1rem ;
    text-align: center;
    margin: 60px 0;
}
.body-section-carousel_brands_MainContaine_Logos{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    margin-block-end: 60px;
}
.body-section-carousel_brands_MainContaine_Logos--Images{
    position: relative;
    display: flex;
    width: 80%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}
.body-section-carousel_brands_MainContaine_Logos--Images div{
    white-space: nowrap;
    animation: scroll_logos 15s linear infinite;
}
@keyframes scroll_logos{
    0% {
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}
.body-section-carousel_brands_MainContaine_Logos--Images:hover div{
    animation-play-state: paused;
}
.body-section-carousel_brands_MainContaine_Logos--Images img{
    width: 150px;
    margin: 0 15px;
    transition: .5s;
    cursor: pointer;
}
.body-section-carousel_brands_MainContaine_Logos--Images img:not(:hover){
    filter: grayscale(100%);
}



/* Contact Section Page */

.contact_container{
    display: flex;
    flex-direction: column-reverse;
    height: 900px;
}
.contact_container section {
    background-color: #f7f6f680;
    padding: 4rem;
}
.contact_container section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2rem;
    margin: 3rem 0;
}
.contact_container section h1{
    color: var(--secundary-color);
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 2.4rem;
    margin-block-end: 3rem;
    width: 27.5rem;
    height: 2.9rem;
    white-space: nowrap;
    border-right: 0.2rem solid;
    animation: typing infinite alternate 3.5s steps(28) , blink_typing 1.2s infinite alternate;
    overflow: hidden;
}

@keyframes typing {
    from {width: 0;}
   
}

@keyframes blink{
    50% { border-color: transparent;}
}

.contact_container button{
    background-color: var(--primary-color);
    color: var(--font-tittle-color);
    width: 19rem;
    height: 3.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    border: none;
    border-radius: 0.8rem;
    display: block;
    margin: 6rem 0 ;
    cursor: pointer;
}
.contact_container button:hover{
    background-color: var(--secundary-color);
}
.contact_container a{
    height: 3.5rem;
    text-decoration: none;
}
.contact_container section h3{
    font-weight: 400;
    font-size: 1.8rem;
}
.contact_container section h3::first-line{
    color: var(--primary-color);
}
.contact_container section h3 a{
    color: var(--primary-color);
}

/* Welcome Image Page*/

.main-image--welcome{
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(24,22,23,1) 0%, rgba(133,12,26,1) 71%, rgba(154,7,24,1) 100%);
    z-index: -1;
}
.main-image--welcome img{
    position: absolute;
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    object-position:center;
    opacity: 0.35;
    animation: scaleUp 15s forwards;
}
@keyframes scaleUp {
    0% { transform: scale(1);
    }
    100% { transform: scale(1.1); 
    }
}
.main-text--section_welcome{
    position:absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-text--section_welcome h2{
    font-size: 5.5rem;
    font-weight: 700;
    color: whitesmoke;
    opacity: 0;
    animation: appear_rigth 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
@keyframes appear_rigth {
    0% { opacity: 0; transform: translateX(-100%);
    } 
    100% { opacity: 1; transform: translateX(0);
    }
}
.main-text--section_welcome p{
    font-size: 1.7rem;
    color: whitesmoke;
    text-align: center;
    opacity: 0;
    animation: blink_main 2.5s forwards;
    animation-delay: 2s;
}
@keyframes blink_main { 
    0% { opacity: 0; 
    } 
    100% { opacity: 1; 
    } 
}
.main-text--section_welcome p strong{
    animation: blink 3.5s infinite;
    animation-delay: 3s;
    opacity: 0;
}
@keyframes blink { 
    0% { opacity: 0; 
    } 
    50% { opacity: 1; 
    } 
    100% { opacity: 0; 
    }
}

/* 3 Benefits to highligh*/

.main-benefits{
    height: 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.main-benefits div{
    background: linear-gradient(90deg,#f7f6f6,#dbdadb);
}

/* Colors Separators*/

.separator_orange{
    height: 8px;
    width: 100%;
    background: linear-gradient(45deg, rgba(209,135,23,1) 0%, rgba(237,38,82,1) 71%, rgba(228,214,48,1) 100%);
}
.separator_green{
    height: 8px;
    width: 100%;
    background: linear-gradient(45deg, rgba(23,209,32,1) 0%, rgba(38,59,237,1) 71%, rgba(228,48,163,1) 100%);
}
.separator_pink{
    height: 8px;
    width: 100%;
    background: linear-gradient(45deg, rgba(209,23,195,1) 0%, rgba(237,38,65,1) 71%, rgba(48,228,84,1) 100%);
}
.separator_blue{
    height: 8px;
    width: 100%;
    background: linear-gradient(45deg, rgba(31,74,224,1) 0%, rgb(230, 217, 37) 71%, rgb(243, 32, 4) 100%);
}

/* Main article SEO */

.main-article_seo{
    width: 80%;
    max-width: 850px;
    margin: 0 auto;
    height: auto;
    padding-block-start: 5rem;
    padding-block-end: 3rem;
}
.main-article_seo h1{
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    line-height: 2.6rem;
    padding: 25px 0;
}
.main-article_seo p{
    font-size: 1.7rem;
    text-align: justify;
    padding: 3rem 0;
}
.main-article_seo h2{
    font-size: 1.9rem;
    font-weight: 500;
    padding: 2rem 0;
}
.main-article_seo h3 {
    color: var(--primary-color);
    font-size: 1.7rem;
    font-weight: 400;
}
.main-article_seo ul{
    font-size: 1.7rem;
    padding: 2rem 3rem;
}
.main-article_seo li{
    font-size: 1.7rem;
    padding: 1rem 2rem;
}
.main-article_seo a{
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 2rem 0;
}
.section-highlighted--dark{
    background-color: #850c1a17;
    height: auto;
    border-radius: 9px;
    margin: 3rem 0 5rem;
    padding: 3rem;
    width: 100%;
    animation: autoShowAnimation both;
    animation-timeline: view(180% 5%);
}
.section-highlighted--dark h3{
    background-color: var(--primary-color);
    color: var(--font-tittle-color);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    height: 3.5rem;
    line-height: 3.5rem;
    border-radius: 9px;
    margin: 0 0 3rem;
}
.section-highlighted--dark__content{
    display: block;
}
.section-highlighted--dark__content h4{
    font-size: 1.6rem;
}
.section-highlighted--dark span{
    position: absolute;
    width: 35px;
    height: 35px;
    left: calc(50% - 17.5px);
    margin-top: 10px;
    z-index: 1;
}
.section-highlighted--dark span img{
    width: 100%;
    height: 100%;
}

/* Sections Images*/

.section-image--focal{
width: 100%;
height: auto;
margin: 5rem 0;
border-radius: 10px;
overflow: hidden;
animation: autoShowAnimation both;
animation-timeline: view(70% 10%);
}
.section-image--focal img{
width: 100%;
}

@keyframes autoShowAnimation{
    from{
        opacity: 0;
        transform: translateY(5px) scale(0.2);
    } to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

/* Alert Main Message Construction Web*/

.main-message--dark{
    position: relative;
    background-color: var(--secundary-color);
    width: 100%;
    height: calc(100dvh - 199px);
    overflow: hidden;
    z-index: -1;
}
.main-message--dark img{
    position: absolute;
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    object-position:center;
    opacity: 0.15;
    animation: scaleUp 15s forwards;
}
@keyframes scaleUp {
    0% { transform: scale(1);
    }
    100% { transform: scale(1.1); 
    }
}
.main-message--dark div{
    position:absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-message--dark h2{
    font-size: 4rem;
    text-align: center;
    line-height: 4rem;
    color: var(--font-tittle-color);
}
.main-message--dark h3{
    font-size: 3.5rem;
    text-align: center;
    line-height: 3rem;
    color: #d37625;
    padding: 1rem 0;
}

/* Allied Brands */

.section-allied--brands{
    height: 50vh;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg,#f7f6f6,#dbdadb);
}
.allied--brands_road{
    height: 245px;
    width: 245px;
    background: linear-gradient(180deg,#f7f6f6,#dbdadb);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    animation: orbit 60s linear infinite;
}
@keyframes orbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.section-allied--brands h1{
    z-index: 1;
    color: var(--font-tittle-color);
    font-size: 2.5rem;
}
.allied--brands_center{
    height: 120px;
    width: 120px;
    background: linear-gradient(45deg, rgb(240, 203, 80) 0%, rgb(248, 59, 2) 71%);
    border-radius: 50%;
    position: relative;
}
.allied--brands_sphere__one , .allied--brands_sphere__two {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
}
.allied--brands_sphere__one{
    left: -20px;
    background: linear-gradient(45deg,#2c76dd,#c410af);
}
.allied--brands_sphere__two{
    right: -20px;
    background: linear-gradient(45deg,#e32914,#050577);
}
.allied--brands_sphere__one:hover, .allied--brands_sphere__two:hover{
    background: linear-gradient(45deg,#781506,#590202);
}
.allied--brands_sphere__one p, .allied--brands_sphere__two p{
    position: absolute;
    display: inline-block;
    font-size: 1.5rem;
    color: white;
    top: 9px;
    left: 16px;
}
.structure-allied--brands ul{
    text-align: center;
    padding-block-end: 45px;
}
.structure-allied--brands ul h4{
    display: none;
    font-size: 1.3rem;
    margin-block-end: 45px;
}
.structure-allied--brands ul li{
    font-size: 1.7rem;
    margin: 10px 0;
    list-style: none;
}
.structure-allied--brands ul li a{
    text-decoration: none;
    color: var(--font-grey-dark)
}
.structure-allied--brands ul li a:hover{
    color: var(--primary-color);
    font-weight: 500;
}

/*Pop Up Projects Style One*/

#popup-style--one, #popup-style--two{
    position: fixed;
    top: 0;
    width: 100dvw;
    height: 100dvh;
    /* min-height: 700px; */
    background-color: rgba(0, 0, 0, 0.769);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow: auto;
}
#popup-style--one.show , #popup-style--two.show{ 
    opacity: 1; 
    pointer-events: auto;
}
#popup-style--one span, #popup-style--two span{
    position: absolute;
    width: 30px;
    height: 30px;
    top: 35px;
    right: 35px;
}
.popup-style-generic{
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
    width: 85%;
    height: 65%;
    min-height: 460px;
    max-height: 460px;
    border-radius: 20px;
    overflow:auto;
}
.popup-style-generic picture{
    /* max-height: 170px; */
    max-height: 220px;
    overflow: hidden;
}
.popup-style-generic picture img{
    width: 100%;
}
.popup-style-generic h2{
    color: var(--font-tittle-color);
    font-size: 2.5rem;
    line-height: 2.4rem;
    padding: 15px;
}
.popup-style-generic p{
    color: var(--font-tittle-color);
    font-size: 1.3rem;
    padding: 0 15px;
    margin-block-end: 30px;
}
.popup-style-generic a{
    color: var(--font-tittle-color);
    font-size: 1.4rem;
    padding:12px;
    text-decoration: none;
    border-color: var(--font-tittle-color);
    border-style:solid ;
    border-width: 1px;
    border-radius: 7px;
    margin: 0 auto;
}
.popup-style-generic a:hover{
    background-color: var(--secundary-color);
    font-weight: 600;
}

/*Mostly Fluid, Section for customers clients*/

.container-customers{
    display: flex;
    flex-wrap: wrap;
}
.customer { 
    position: relative; 
    width: 100%; 
    min-width: 150px;
    height: 390px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background: linear-gradient(45deg, rgba(24,22,23,1) 0%, rgb(24, 22, 23) 0%, rgb(46, 1, 7) 100%);
    transition: background-color 0.3s ease; 
    overflow: hidden;
}
.customer img{ 
    width: auto;
    height: 130%;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}
.customer-info { 
    position: absolute; 
    text-align: center; 
    color: var(--font-tittle-color); 
    z-index: 2; 
    transition: opacity 0.3s ease; 
}
.customer div h2{ 
    font-size: 4.8rem;
}
.customer div h3{ 
    font-size: 1.5rem;
    font-weight: 200;
}
.customer:hover { 
    background: linear-gradient(90deg,#850c1a,#5b040e);
}
.hover-text { 
    position: absolute; 
    display: flex;
    justify-content: center;
    align-content: center;
    color: white; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
    font-size: 2.8rem; 
    font-weight: 600;
    text-decoration: none;
    z-index: 3;
}
.customer:hover .hover-text { 
    opacity: 1; 
}
.customer::before { 
    content: ""; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(90deg, #850c1acd, #5b040ec0); 
    opacity: 0; 
    transition: opacity 0.3s ease; 
    z-index: 1; 
}
.customer:hover::before {
    opacity: 1; 
} 
.customer:hover .customer-info { 
    opacity: 0; 
}

/* FORM LANDING PAGE */

.container_form_landing{
    display: grid;
    justify-items: center;
}
.container_form_landing h4{
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-block-end: 50px;
}
.container_form_landing > label{
    margin: 5px 0;
    display: flex;
    flex-direction: column;
}
.container_form_landing input[type="submit"] {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    margin-block-end: 10px;
}
.container_form_landing span, .container_form_landing fieldset legend {
    color: var(--primary-color);
    font-size: 1.7rem;
    padding: 0 15px;
    margin: 10px 0;
}
.container_form_landing span::after {
    content: " *"; 
    color: red;
    font-weight: bold;
}
.container_form_landing input{
    border: none;
    padding: 7px;
    border-radius: 25px;
    width: 75vw;
    min-width: 300px;
    max-width: 700px;
    font-size: 1.6rem;
    text-align: center;
}
.container_form_landing input::placeholder{
    font-size: 1.2rem;
    opacity: 0.7;
    padding-inline-start: 20px;
    text-align: left
}
.container_form_landing fieldset{
    width: 75vw;
    min-width: 300px;
    max-width: 650px;
    margin: 25px 0 0;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.container_form_landing fieldset legend{
    text-align: center;
    margin-block-end: 30px;
}
.container_form_landing fieldset label{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    color: var(--secundary-color);
    font-size: 1.6rem;
}
.container_form_landing fieldset > label input{
    margin: 2px 0 20px 0;
}
input[type="checkbox"]#terminos {
    accent-color: var(--primary-color);
    padding: 20px 0;
    margin: 15px 0 50px 0;
}
.container_form_landing > label:last-of-type {
    font-size: 1.3rem; 
    text-align: center;
    flex-direction: column-reverse;
    text-align: center;
}
.container_form_landing > label:last-of-type a{
    color: var(--secundary-color);
}

.g-recaptcha {
    margin: 10px 0 20px 0;
}


/* WHATSAPP CONTACT */

body button.Whatsapp_contact{
    position: fixed;
    width: 5rem;
    height: 5rem;
    background-color: #25D366;
    border-radius: 50%;
    border: none;
    margin-block-start: 87vh;
    margin-left: calc( 93vw - 5rem);
    z-index: 3;
}
body button.Whatsapp_contact a{
    text-decoration: none;
}
body button.Whatsapp_contact:hover{
    background-color: var(--secundary-color);
    border-radius: 50%;
}
body button.Whatsapp_contact a span img{
    padding: 1rem;
    width: 100%;
}


/* FOOTER */


footer{
    display: flex;
    flex-direction: column;
    height: 12vh;
    justify-content:center;
    align-items: center;
    background-color: var(--primary-color);
}
footer h3{
    font-family: 'UI',Segoe  Tahoma, Geneva, Verdana, sans-serif ;
    font-weight: 100;
    font-size: 1rem;
    color: white;
}
footer h4{
    margin-block-start: 1rem;
    color: #31050b;
}
footer a{
    text-decoration: none;
    color: #31050b;
}
footer a:hover{
    color: var(--font-tittle-color);
}

