/*
Theme Name: Arenalife
Author: SA Publicidad
Author URI: https://www.sapublicidad.cl/?templateclick=bejaranocontable.cl
Description: Este template ha sido diseñado en su totalidad por nuestra agencia y personalizado especialmente para tu empresa. Desde el año 2012, hemos estado desarrollando páginas web, capturando la esencia de cada cliente en diseños modernos. Agradecemos tu preferencia 💙.
Version: 1.0
License: Privada
Tags: Minimalista, Responsive, Moderno, Full Width, SA Publicidad

Este tema tiene una licencia privada y el uso de esta es exclusiva de SA Publicidad.
*/

*{
    font-family: "Open Sans", sans-serif;
    padding:0;
    margin:0;
}

.wrap{
    max-width: 1200px;
    width: 90%;
    margin:auto;
}

/* header */
body > header{
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    width:100%;
    z-index: 99;
}

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

header .wrap .logo{
    flex:1;
}

header .wrap .logo img{
    width: 100%;
}

@media(max-width:800px){
    header .wrap{
        display: block;
    }

    header .logo{
        width: 50%;
        max-width: 300px;
    }
}


/* btn-nav */
#btn-nav{
	display: none;
}

header label{
	display: none;
}


@media(max-width:800px){
	header{
		position: relative;
	}

	header .wrap{
		justify-content: left;
        display: block;
	}

	header label{
		position: absolute;
		display: block;
		width: 45px;
		height: 45px;
		top:50%;
		transform: translateY(-50%);
		right: 25px;
		border-radius: 3px;
		cursor: pointer;
		outline: none;
		border-radius: 5px;

	}

	header label span{
		width: 50%;
		height: 3px;
		background: #ffffff;
		border-radius: 5px;
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: all .3s ease;
	}

	header label span:nth-child(1){
		top:14px;
	}

	header label span:nth-child(2){
		bottom:14px;
	}

	#btn-nav:checked ~ label span:nth-child(1){
		transform: translateX(-50%) rotate(-45deg);
		top:21px;
	}

	#btn-nav:checked ~ label span:nth-child(2){
		transform: translateX(-50%) rotate(45deg);
		top:21px;
	}
}


header  nav{
    flex:3;
}

header  nav ul{
    display: flex;
    gap:5%;
    justify-content: right;
    list-style: none;
}

header  nav ul li{
    position: relative;
}

header  nav ul li a{
    color: #ffffff;
    text-decoration: none;
    display: block;
    line-height: 45px;
    border-radius: 40px;
}

header nav > ul > li:last-child > a{
    padding: 0 30px;
    background: linear-gradient(45deg, #411b83, #05DBF2);
    color: #ffffff;
    transition: all .3s ease;
}

header nav > ul > li:last-child > a:hover{
    
    box-shadow: 0 0 0 8px #05DBF250, 0 0 0 16px #411b8350;
}

@media(max-width:800px){
	header nav{
		width: 60%;
		position: absolute;
		background: #212121;
		z-index: 999;
		left: 0;
		top:0;
		margin:0 0 0 0;
		transform: translateY(-50%);
		opacity: 0;
		pointer-events: none;
		transition: all .3s ease;
	}

	#btn-nav:checked ~ nav{
		transform: translateY(0);
		opacity: 1;
		pointer-events: all;
	}

	header nav ul{
		display: block;
		margin:0 0 0 0;
	}

	header nav ul li a,
	header nav ul li:last-child a{
		display: block;
		padding: 10px 20px;
		border-radius: 0;
	}

    header nav > ul > li:last-child > a{
        border-radius: 0;
    }
}

/* sub-nav */
header nav ul li ul{
    position: absolute;
    width: 200px;
    top:100%;
    left: 0;
    padding: 0px 0 0 0;
    display: block;
    pointer-events: none;
    opacity: 0;
    transition: all .3s ease;
}

header nav ul li:hover ul{
    opacity: 1;
    pointer-events: all;
    padding: 20px 0 0 0;
}

@media(max-width:800px){
    header nav ul li ul{
        width: 100%;
        position: static;
        max-height: 0;
        overflow: hidden;
        pointer-events: all;
        opacity: 1;
    }

    header nav ul li:hover ul{
        max-height: 500px;
        padding: 0;
    }
}

header nav ul li ul li{
    display: block;
    width: 100%;
}

header nav ul li ul li a{
    display: block;
    text-decoration: none;
    color: #05DBF2;
    background-color: #212121;
    padding: 10px 20px;
    font-size: 14px;
}

header nav ul li ul li a:hover{
    background-color: #411b83;
    color: #ffffff;
    transition: all .3s ease;
}

/* home */
.home{
    position: relative;
    background-color: #000000;
}

.home video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
    position: absolute;
    top:0;
    left: 0;
    z-index: 1;
    margin:0 0 -5px 0;
}

.home .wrap{
    position: relative;
    z-index: 2;
    padding: 250px 0 20px 0;
    text-align: center;
    color: #ffffff;
}

.home .wrap h1{
    font-size: 2em;
    font-weight: 300;
}

.home .wrap h2{
    font-size: 4em;
}

.home .wrap h3{
    font-size: 1em;
    font-weight: 300;
}

@media(max-width:800px){
    .home .wrap{
        padding: 200px 0 0 0;
    }

    .home .wrap h1{
        font-size: 1em;
    }

    .home .wrap h2{
        font-size: 2em;
    }
}

.home .wrap p a{
    display: inline-block;
    line-height: 50px;
    padding: 0 30px;
    border:solid 2px #ffffff;
    color: #ffffff;
    text-decoration: none;
    margin:40px 0 0 0;
    border-radius: 50px;
}

.home .banner-home{
    position: relative;
    z-index: 2;
    padding: 50px 0 50px 0;
    display: flex;
    justify-content: space-between;
    text-align: center;
    color: #ffffff;
    background-color: #00000010;
    backdrop-filter: blur(13px);
    margin:90px 0 0 0;
}

.home .banner-home .wrap{
    position: relative;
    z-index: 2;
    padding: 0px 0 0px 0;
    display: flex;
    justify-content: space-between;
    text-align: center;
    color: #ffffff;
}

.home .banner-home article{
    width: 20%;
}
.home .banner-home i{
    color: #05DBF2;
    font-size: 2em;
}

.home .banner-home h4{
    font-size: 2.5em;
}

.home .banner-home p{
    color: #05DBF2;
    font-weight: 500;
}

@media(max-width:800px){
    .home .banner-home{
        padding:20px 0;
    }
    .home .banner-home .wrap{
        flex-wrap: wrap;
    }

    .home .banner-home .wrap article{
        width: 45%;
        margin:20px 0;
    }

    .home .banner-home i{
        font-size: 1.5em;
    }

    .home .banner-home h4{
        font-size: 1.5em;
    }

    .home .banner-home p{
        font-size: .7em;
    }
}


/* wellcome */
.wellcome{
    background: linear-gradient(to right, #411b83, #251e3e);
    padding: 100px 0;

}
.wellcome .wrap{
    display: flex;
    gap:5%;
    align-items: center;
}

.wellcome article{
    flex:1;
    color: #ffffff;
}

@media(max-width:800px){
    .wellcome .wrap{
        flex-wrap: wrap !important;
    }

    .wellcome .wrap article{
        flex: 1;
        min-width: 100%;
        text-align: center;
    }
}

.wellcome article h2{
    font-size: 2em;
}

.wellcome article h3{
    font-size: 3em;
}

.wellcome article h4{
    font-size: 1em;
    font-weight:600;
    margin:10px 0;
}

.wellcome article p{
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
}



.wellcome .wrap .icons{
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin:70px 0;
    flex-wrap: wrap;
    gap:5%;
}


.wellcome .wrap .icons .item{
    color:#ffffff;
    border-radius: 100px;
    border:solid 2px #ffffff;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    margin:20px 0;
    align-items: center;
    flex-wrap: wrap;
    line-height: 20px !important;
}

.wellcome .wrap .icons .item i{
    display: block;
    line-height: 20px;
    width: 100% !important;
}

.wellcome .wrap .icons .item p{
    font-weight: 600;
}

/* title-section */
.title-section{
    padding: 30px;
    text-align: center;
}

.title-section h2{
    font-size: 2em;
}

.title-section h3{
    font-size: 3em;
}

.title-section p{
    font-size: 1em;
    font-weight: 300;
    max-width: 40%;
    margin:auto;
}

@media(max-width:800px){
    .title-section p{
        max-width: 90%;
    }
}

/* showcase */
.showcase{
    padding: 60px 0;
    background-color: #f0f0f0;
}

.showcase .gallery{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap:2%;
    max-width: 1500px;
    margin:auto;
}

.showcase .gallery article{
    width: 20%;
    background-color: #ffffff;
    padding: 20px 1%;
    margin:0;
    text-align: center;
    background-color: transparent;
}

@media(max-width:800px){
    .showcase .gallery{
        padding: 0 5%;
        width: 90%;
    }
    .showcase .gallery article{
        width: 100%;
        margin:10px 0;
    }
}

.showcase .gallery article .image{
    position: relative;
    width: 100% !important;
}

.showcase .gallery article img{
    width: 90%;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    transition: all .3s ease;
}

.showcase .gallery article:hover img{
    transform: scale(1.1) translateY(-20px);
}

.showcase .gallery article h4{
    font-size: 1.2em;
}

.showcase .gallery article p{
    font-size: 1em;
    font-weight: 300;
    margin:20px 0 0 0;
    opacity: .7;
}

.showcase .gallery article .btn-add a{
    color: #ffffff;
    padding: 14px 35px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    border:none;
    outline: none;
    cursor: pointer;
    background-color: #411b83;
    transition: all .3s ease;
    text-decoration: none;
    margin:20px 0;
    border-radius: 100px;
}

.showcase .gallery article .btn-add a:hover{
    background-color: #251e3e;
}
/* banner-1 */
.banner-1{
    padding: 100px 0;
    background-image: url(img/bg-b1.jpeg);
    background-size: 100%;
    background-position: center;
}

.banner-1 .wrap{
    display: flex;
    justify-content: space-between;
    gap:2%;
    max-width: 900px;
    padding: 50px 0 0 0;
}


.banner-1 .wrap article{
    text-align: center;
}

.banner-1 .wrap article:nth-child(1), 
.banner-1 .wrap article:nth-child(3){
    transform: translateY(90px);
    margin:0 0 50px 0;
}

.banner-1 .wrap article .icon{
    text-align: center;
    background-color: #ffffff;
    border-radius: 100px;
    border:solid 2px #411b83;
    color: #411b83;
    backdrop-filter: blur(3px);
    width: 100px;
    line-height: 100px;
    font-size: 3em;
}

@media(max-width:800px){
    .banner-1{
        background-image: none;
    }

    .banner-1 .wrap{
        flex-wrap: wrap;
    }


    .banner-1 .wrap article,
    .banner-1 .wrap article:nth-child(1), 
    .banner-1 .wrap article:nth-child(3){
        width: 100%;
        text-align: center;
        transform: translateY(0px);
        margin:0 0 50px 0;
    }

    .banner-1 .wrap article .icon{
        margin:0 auto 20px auto;
    }
}


.banner-1 .wrap article h3{
    font-size: 1.3em;
    text-align: center;
    color: #251e3e;
}

/* banner-2 */
.banner-2{
    position: relative;
    background: linear-gradient(to right, #411b83, #251e3e);
}

.banner-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left: 0;
    opacity: .2;
}

.banner-2 .wrap{
    position: relative;
    z-index: 2;
    padding: 150px 0;
    text-align: center;
    color: #ffffff;
    display: flex;
    gap:5%;
    justify-content: space-between;
}

.banner-2 .wrap article{
    text-align: center;
    padding: 20px 0;
}

@media(max-width:800px){
    .banner-2 .wrap{
        flex-wrap: wrap;
        padding: 20px 0;
    }
    .banner-2 .wrap article{
        width: 100%;
        margin:20px 0;
    }
}

.banner-2 .wrap article i{
    font-size: 3em;
    color: #05DBF2;
}

.banner-2 .wrap article h3{
    font-size: 1.5em;
    margin:20px 0 0 0;
}

/* news */
.news{
    padding: 80px 0;
}

.news .wrap{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.news .wrap article{
    width: 30%;
}

@media(max-width:800px){
    .news .wrap{
        flex-wrap: wrap;
    }

    .news .wrap article{
        width: 100%;
        margin:10px 0;
    }
}

.news .wrap article .image{
    overflow: hidden;
    height: 200px;
}

.news .wrap article .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.news .wrap article:hover .image img{
    transform: scale(1.1);
}

.news .wrap article h3{
    font-size: 1.2em;
    padding: 10px;
}

.news .wrap article p{
    font-size: 1em;
    font-weight: 300;
    padding: 10px;
    opacity: .7;
}

.news .wrap article .btn-more a{
    display: block;
    text-decoration: none;
    color: #251e3e;
    font-size: 14px;
    padding: 10px;
}

.news .wrap article .btn-more a i{
    transition: all .3s ease;
}

.news .wrap article:hover .btn-more a i{
    transform: translateX(20px);
}



/* go-top */
.go-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    opacity: 0; 
    text-align: center;
    border: none;
    z-index: 99;
    color: #ffffff;
    line-height: 50px;
    font-size: 30px;
    transition: opacity 0.5s ease; 
    transform: rotate(-90deg);
}
  
.go-top-btn.active {
    opacity: 1;
}
  

.go-top-btn svg {
    cursor: pointer;
    width: 60px;
    height: 60px;
    fill: #F2541B;
}

.separador{
    margin:0 0 -90px 0;
    z-index: 1;
    transform: rotateX(50deg);
    pointer-events: none;
}

@media(max-width:800px){
    .separador{
        display: none;
    }
}

/* suscribe */
.suscribe{
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, #411b83, #251e3e);
    padding: 0 0 100px 0;
    text-align: center;
}

.suscribe .image{
    width: 150px;
    margin:0 auto 20px auto
}

.suscribe .image img{
    width: 100%;
}

.suscribe h3{
    font-size: 30px;
    font-weight: 400;
    margin:0 0 20px 0;
    color: #ffffff;
}

.suscribe form{
    background-color: rgba(255,255,255,.3);
    width: 50%;
    margin:auto;
    max-width: 500px;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media(max-width:800px){
    .suscribe form{
        width: 90%;
        justify-content: center;
    }
}

.suscribe form input[type="email"]{
    padding: 10px;
    border:none;
    width:55%;
    font-size:15px;
    font-weight:400;
    outline: none;
    background-color: transparent;
}

.suscribe form input[type="email"]::placeholder{
    color: #ffffff;
}


.suscribe form input[type="submit"]{
    padding: 10px;
    border:none;
    width:40%;
    background: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    font-size:15px;
    font-weight:400;
    outline: none;
}


.wpcf7-spinner{
    position: absolute;
    top:100%;
    left: 50%;
    transform: translateX(-50%);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    background-color: #ffb900;
    color: #ffffff;
    font-size: 14px !important;
    padding: 10px 2%;
    width: 75%;
    transition: all .3s ease;
    text-align: left;
}

.wpcf7 form.sent .wpcf7-response-output{
    width: 75%;
    background-color: #46b450;
    color: #ffffff;
    font-size: 14px !important;
    padding: 10px 2%;
    transition: all .3s ease;
    text-align: left;
}

.wpcf7-not-valid-tip{
    position: absolute;
    top:-50px;
    left: 0;
    font-size: 12px;
    padding: 10px;
    text-align: left;
    color: #212121 !important;
}


/* page-banner */
.page-banner{
    background: #411b83;
    height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-banner h1{
    margin:70px 0 0 0;
    font-size: 60px;
    color: #ffffff;
    position: relative;
}

.page-banner .image{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    z-index: 1;
    opacity: .1;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #411b83; 
    mix-blend-mode: color;
}

.page-banner .image img{
    top: 50%;
    height: auto;
    width: 100%;
    position: absolute;
    transform: translateY(-50%);
}

@media(max-width:800px){
        .page-banner{
            height: auto;
            padding: 100px 0 30px 0;
        }

    .page-banner h1{
        font-size: 30px;
        margin:0;
    }
    .page-banner .image img{
        width: 120%;
    }
}



/* content */
.content{
    padding: 80px 0 0px 0;
}

@media(max-width:800px){
    .content{
        padding: 40px 0;
    }
}

.content input[type="text"],
.content input[type="email"],
.content input[type="tel"],
.content input[type="number"],
.content input[type="file"],
.content input[type="date"],
.content input[type="password"],
.content textarea,
.content select{
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    padding: 8px 2%;
    width: 96%;
    border:solid 1px #f0f0f0;
    border-radius: 5px;
    outline: none;
    resize: none;
    margin:0 0 10px 0;
    font-size: 15px;
    -webkit-appearance: none;
}

.content select{
    color: #313131;
    cursor: pointer;
}

.content label{
    font-size: 14px;
    font-weight: bold !important;
    color: #777777 !important;
}

.content input[type="text"]:focus,
.content input[type="email"]:focus,
.content input[type="tel"]:focus,
.content input[type="number"]:focus,
.content input[type="date"]:focus,
.content input[type="password"]:focus,
.content textarea:focus,
.content select:focus{
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    transition: all .3s ease;
}

.content input[type="text"]::placeholder,
.content input[type="email"]::placeholder,
.content input[type="tel"]::placeholder,
.content input[type="number"]::placeholder,
.content input[type="date"]::placeholder,
.content input[type="password"]::placeholder,
.content textarea::placeholder{
    color: #313131;
}

.content input[type="submit"]{
    background-color: #411b83;
    color: #ffffff;
    border:none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 30px;
    margin:0 0 20px 0;
    transition: all .3s ease;
    -webkit-appearance: none;
}

.content input[type="submit"]:hover,
.content input[type="submit"]:focus{
    color: #ffffff;
    background-color: #313131;
}

.not-found{
    padding: 100px 0;
}

.not-found h2{
    font-size: 100px;
    text-align: center;
    color: #313131;
    font-weight: 900;
}

.not-found h3{
    font-size: 24px;
    text-align: center;
    color: #313131;
    margin:auto;
    max-width: 500px;
    font-weight: 300;
}

@media(max-width:800px){
    .not-found{
        padding: 50px 0;
    }

    .not-found h2{
        font-size: 50px;
    }

    .not-found h3{
        font-size: 17px;
        width: 80%;
    }
}

/* add-to-cart-message */
.add-to-cart-message{
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #411b83;
    padding: 20px 20px;
    text-align: center;
    transition: all .3s ease;
    z-index: 99;
}

.add-to-cart-message i{
    display: inline-block;
    width: 40px;
    border-right: solid 1px #313131;
    margin:0 10px 0 0;
}

.add-to-cart-message a{
    text-decoration: underline;
    color: #313131;
    font-weight: 900;
}


/* sub-footer */
.sub-footer{
    background: linear-gradient(to right, #411b83, #251e3e);
    padding: 60px 0;
    border-top:solid 1px rgba(255,255,255,.1)
;}

.sub-footer .wrap{
    display: flex;
    flex-wrap: wrap;
    gap:5%
}

.sub-footer .wrap article{
    width: 26%;
    position: relative;
    padding:0 2%;
}

.sub-footer .wrap article .social{
    display: flex;
    line-height: 50px;
    gap:2%;
    margin:20px 0 0 0;
}

.sub-footer .wrap article .social li a{
    display: block;
    line-height: 50px;
    width: 50px;
    text-align: center;
}

@media(max-width:800px){
    .sub-footer .wrap article{
        width: 100%;
        margin:30px 0;
    }
}

.sub-footer .wrap article:after{
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: rgba(255,255,255,.1);
    top:0;
    right: -10%;   
}

.sub-footer .wrap article:last-child:after{
    display: none;
}

.sub-footer .wrap article h2{
    font-size: 20px;
    font-weight: 400;
    margin:0 0 30px 0;
    color: #ffffff;
}

.sub-footer .wrap article p{
    font-size: 15px;
    color: #dedede;
    line-height: 28px;
}

.sub-footer .wrap article ul.contact-footer li{
    position: relative;
}

.sub-footer .wrap article ul.contact-footer li:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,.1);
    left: 0;
    bottom: 0;
}

.sub-footer .wrap article ul.contact-footer li:last-child:after{
    display: none;
}

.sub-footer .wrap article ul li{
    list-style-type: none;
}

.sub-footer .wrap article ul li a{
    padding: 10px 0;
    display: block;
    text-decoration: none;
    color: #ffffff;
}


/* footer */
footer{
    background: linear-gradient(to right, #411b83, #251e3e);
    padding: 30px 0;
    border-top:solid 1px rgba(255,255,255,.1);
    text-align: center;
    font-size: 16px;
    color: #dedede;
    font-weight: 300;
}

footer a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}