/*
Theme Name: Sicsam
Theme URI: https://www.sapublicidad.cl/sicsam
Author: SA Publicidad SpA
Author URI: https://www.sapublicidad.cl
Description: Tema exclusivo desarrollado por SA Publicidad. Diseño moderno, responsive y full-width.
Version: 1.0.1
License: Licencia Privada
License URI: https://www.sapublicidad.cl/licencia
Tags: minimalista, responsive, moderno, full-width
*/




/* Regular */
@font-face {
  font-family: 'BankGothic-Regular';
  src: url('fonts/bankgothic-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  
}



:root{
    --color1: #576BEC;
    --color2: #ffffff;
    --color3: #91c0fa;
    --color3b:rgba(146, 177, 217, 0.652);
    --color4: #2C3E50;
    --color5: #f0f0f0;

    --fuente1 :   "Exo 2", serif;
    --fuente2 : 'BankGothic-Regular', sans-serif !important;
    --fuente3: "Oswald", serif;
}

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

body{
    opacity: 0;
    transition: opacity .3s ease-in-out;
    font-family: var(--fuente1);
}

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


/* header */
header{
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    width: 100%;
    z-index: 1000;  
    line-height: 40px;
    transition: all .3s ease;
}

header.stick{
    background-color: var(--color4);
    width: 100%;
    z-index: 99;
    transform: translateY(-100%);
}

header.show{
    padding: 10px 0;
    transform: translateY(0);
    box-shadow: 0 5px 30px rgba(0,0,0,.1);
}

@media(max-width:800px){
    header, header.stick, header.show{
        position: absolute;
        transform: translateY(0);
        background-color: transparent;
        box-shadow: none;
    }
}

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

header .wrap .logo{
    width:200px;
    flex:1;
}   

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

@media(max-width:800px){
    header .wrap{
        display: block;
    }
    header .wrap .logo{
        max-width: 300px;
        width: 70%;
        padding:10px 0 0 0;
    }
}



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

header label{
	display: none;
}


@media(max-width:800px){
	header label{
		position: absolute;
		display: block;
		width: 45px;
		height: 45px;
		top:25px;
		right: 25px;
		border-radius: 3px;
		cursor: pointer;
		outline: none;
		background: var(--color2);
		border-radius: 5px;

	}

	header label span{
		width: 50%;
		height: 3px;
		background: var(--color1);
		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;
	}
}


/* nav */
nav#principal--nav{
    flex: 5;
    justify-content: center;
    display: flex;
}

nav#principal--nav > ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
    gap:10%;
}

nav#principal--nav > ul > li{
    position: relative;
}


nav#principal--nav > ul > li > a{
    display: block;
    text-decoration: none;
    color: var(--color2);
    position: relative;
    opacity: .8;
    white-space: nowrap;
}

@media(max-width:800px){
    nav#principal--nav{
        position: absolute;
        top:0;
        left: 0;
        background-color: var(--color4);
        width: 60%;
        border-radius: 0 0 10px 0;
        display: block;
        transform: translateX(-100%);
        transition: all .3s ease;
    }

    #btn-nav:checked ~ nav#principal--nav{
        transform: translateX(0);
    }

    nav#principal--nav > ul{
        display: block;
        justify-content: left;
    }


    nav#principal--nav > ul > li{
        display: block;
        width: 100%;
        text-align: left;
    }

    nav#principal--nav > ul > li > a{
        padding: 0 10px;
        display: block;
        text-align: left;
    }
}

nav#principal--nav > ul > li:hover > a{
    opacity: 1;
}

nav#principal--nav #marker{
    position: absolute;
    width: 100px;
    bottom:25px;
    height: 2px;
    background-color: var(--color3);
    transition: all .3s ease;
    transition-delay: .1s;
}

@media(max-width:800px){
    nav#principal--nav #marker{
        display: none;
    }
}

/* sub-nav */
nav#principal--nav > ul > li > ul{
    width: 200px;
    position: absolute;
    left: 0;
    top:100%;
    list-style-type: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
}

nav#principal--nav > ul > li:hover > ul{
    opacity: 1;
    pointer-events: all;
}

@media(max-width:800px){
    nav#principal--nav > ul > li > ul{
        position: static;
        max-height: 0px;
        overflow: hidden;
        width: 100%;
    }

    nav#principal--nav > ul > li:hover > ul{
        max-height: 100vh;
    }
}

nav#principal--nav > ul > li > ul > li{
    position: relative;
}

nav#principal--nav > ul > li > ul > li > a{
    background-color: var(--color2);
    color: var(--color4);
    display: block;
    text-decoration: none;
    font-size: 15px;
    padding: 15px 20px;
    transition: all .3s ease;
    line-height: 1;
}

nav#principal--nav > ul > li > ul > li:hover > a{
    background-color: var(--color4);
    color:var(--color2);
}

/* sub-sub-nav */
nav#principal--nav > ul > li > ul > li > ul{
    position: absolute;
    left: 100%;
    list-style-type: none;
    width: 100%;
    top:0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
}

nav#principal--nav > ul > li > ul > li:hover > ul{
    opacity: 1;
    pointer-events: all;
}

@media(max-width:800px){
    nav#principal--nav > ul > li > ul > li > ul{
        position: static;
        left: 0;
        top:0;
        max-width: 100%;
        max-height: 0px;
        overflow: hidden;
    }

    nav#principal--nav > ul > li > ul > li:hover > ul{
        max-height: 100vh;
    }
}

nav#principal--nav > ul > li > ul > li > ul > li > a{
    background-color: var(--color5);
    color: var(--color4);
    font-size: 13px;
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    transition: all .3s ease;
    line-height: 1;
}

nav#principal--nav > ul > li > ul > li > ul > li > a:hover{
    background-color: var(--color4);
    color: var(--color2);
}

/* social-top */
.social-top ul{
    display: flex;
    justify-content: right;
    list-style-type: none;
    gap:10%;
}

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

.social-top ul li a{
    display: block;
    width: 40px;
    text-decoration: none;
    color: var(--color2);
    border:solid 1px var(--color2) !important;
    text-align: center;
    border-radius: 50px;
    transition: background-color .3s ease, border-color .3s ease;
}

.social-top ul li a:hover{
    background-color: var(--color3);
    border-color: var(--color3);
}

.social-top ul li.cart-btn a{
    background-color: var(--color3);
    color:var(--color2);
    border-color:var(--color3) !important;
    text-align: center;
    width: 70px;
}
/* home */
.home {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

.home video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
}

.home .wrap {
    position: relative;
    text-align: center;
}

.home h2 {
    font-size: 10em;
    text-align: center;
    color: var(--color2);
    font-weight: 300;
    font-family: var(--fuente2);
}

.home h2 span {
    font-weight: 900;
}

.home h1 {
    font-size: 1.7em;
    font-weight: 300;
    color: var(--color2);
    letter-spacing: 3px;
    max-width: 800px;
    margin: 20px auto 0 auto;
    text-align: center;
    font-family: var(--fuente3);
}

@media(max-width:800px){
    .home h2{
        font-size: 3em;
    }

    .home h1{
        font-size: 1em;
        letter-spacing: 0;
    }
}

.btn-more {
    display: inline-block;
    margin: 40px 0 0 0;
    text-align: center;
    position: relative;
}

.btn-more a {
    display: block;
    text-decoration: none;
    color: var(--color2);
    border: solid 2px var(--color2) !important;
    line-height: 50px;
    padding: 0 50px;
    margin: auto;
    position: relative;
    overflow: hidden;
    transition:color .3s ease;
    transition-delay: 1s;
}

.btn-more a:hover{
    border-color: var(--color3) !important;
}

.btn-more a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background-color: var(--color3);
    transition: all .3s ease;
    pointer-events: none;
    opacity: 0;
}

.btn-more:hover a::before {
    width: 200px;
    height: 200px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
}

.btn-more a span {
    position: relative;
    z-index: 2;
}


.btn-more:hover a span{
    color: var(--color2);
}



/* categorys */
.categorys{
    background-color: var(--color4);
    padding: 0 20px;
}

.categorys  ul{
    display: flex;
    justify-content: space-between;
    gap:3%;
    padding: 20px 0;
    list-style-type: none;
}

.categorys  ul li{
    flex:1;;
}

@media(max-width:800px){
    .categorys ul {
        flex-wrap: wrap;
    }
    .categorys ul li{
        flex:2;
        width: 50%;;
    }
}

.categorys  ul li a{
    display: block;
    text-decoration: none;
    color: var(--color2);
    padding: 40px 10px;
    text-align: center;
    background-color: var(--color4);
    border-radius: 10px;
    transition: all .3s ease;
    font-family: var(--fuente3);
    font-size: 20px;
}

.categorys  ul li a span{
    max-width: 100%;
    display: block;
    font-size: 50px;
    font-weight: 100;
}

.categorys  ul li a span img{
    max-width: 80px;
}


.categorys  ul li a:hover{
    background-color: var(--color3);
}


/* showcase */
.showcase .wrap{
    display: flex;
    justify-content: left;
    gap:3%;
    flex-wrap: wrap;
    padding: 80px 0;
}

.showcase .wrap article{
    width: 22%;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    margin:2% 0;
    border-radius: 5px;
    transition: box-shadow .3s ease;
    padding: 0 0 20px 0;
}

@media(max-width:800px){
    .showcase .wrap{
        display: block;
        padding: 30px 5%;
    }

    .showcase .wrap article{
        width: 100%;
        margin:20px 0;
    }
}

.showcase .wrap article:hover{
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}

.showcase .wrap article img{
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;  
}


.showcase .wrap article h2{
    font-size: 1.2em;
    padding: 10px 10px 0 20px;
    color: var(--color4);
}

.showcase .wrap article .price{
    padding: 0 20px;
    font-size: 2em;
    font-weight: 600;
    color: var(--color4);
}

.showcase .wrap article .btn-add{
    display: inline-block;
    margin:10px 10px 20px 20px;
    text-align: center;
    text-decoration: none;
    transition: background-color .3s ease;
}

.showcase .wrap article .btn-add a{
    display: block;
    text-decoration: none;
    line-height: 40px;
    padding: 0 10px;
    border-radius: 5px;
    background-color: var(--color3);
    color: var(--color2);
    transition: background-color .3s ease;
}

.showcase .wrap article .btn-add a:hover{
    background-color: var(--color1);
}

/* banner-1 */
.banner-1{
    background-color: var(--color4);
    padding: 0px 0 0 0;
    overflow: hidden;
    position: relative;
}

.banner-1 a{
    height: 100%;
    overflow: hidden;
}

.banner-1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slidesjs-pagination{
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap:10px;
}

.slidesjs-pagination  a{
    background-color: #ffffff;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: inline-block;
    font-size: 0;
    cursor: pointer;
}

.slidesjs-pagination  a.active{
    background-color: var(--color3);
}

/* logos */
.logos{
    background-color: var(--color2);
    padding: 50px 0;
    
}

.logos .wrap h2{
    font-size: 5em;
    margin:0 0 20px 0;
    text-align: center;
    color: var(--color4);
}

.splide__list {
    border-radius: 10px;
}

.splide__slide{
    padding: 0px 0 !important;
    border-radius: 10px;
}

.splide__slide img{
    opacity: .7;
    max-width: 100px;
}



/* banner-2 */
.banner-2{
    display: none;
    flex-wrap: wrap;
    position: relative;
}

.banner-2 > img{
    width: 30%;
    position: absolute;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    left: 15%;
    border-radius: 0 10px 10px 0;
}
.banner-2 > .wrap{
    display: flex;
    justify-content: right;
    padding: 90px 0;
    flex-wrap: wrap;
}

.banner-2 > .wrap article{
    background-color: var(--color4);
    width: 50%;
    padding: 50px;
    border-radius: 6px;
}



.banner-2 > .wrap article h2{
    font-size: 2.5em;
    line-height: 1.5;
    color: var(--color3);
}

.banner-2 > .wrap article > p{
    color:var(--color2);
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.8;
    margin:20px 0;
    opacity: .7;
}


@media(max-width:800px){
    .banner-2 > .wrap{
        padding: 40px;
    }

    .banner-2 > .wrap article{
        width: 100%;
    }

    .banner-2 > .wrap article h2{
        font-size: 2em;
    }
}

.banner-2 > .wrap article .items{
    display: flex;
    gap:2%;
    flex-wrap: wrap;
}

.banner-2 > .wrap article .items .item{
    padding: 20px 0;
}

.banner-2 > .wrap article .items .item h3{
    font-size: 2.2em;
    font-weight: 700;
    color: var(--color1);
    margin:0 0 20px 0;
}

.banner-2 > .wrap article .items .item p{
    color: var(--color2);
}

.banner-2 > .wrap article a{
    color: var(--color4);
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 3px;

    background-color: var(--color2);
}

/* banner-3 */
.banner-3{
    padding: 100px 0;
    background-color: var(--color2);
}

.banner-3 .wrap{
    display: flex;
    gap:5%;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-3 .wrap article{
    width: 30%;
    display: flex;
    align-items: center;
    gap:5%;
    position: relative;
}
.banner-3 .wrap article:after{
    content: "";
    position: absolute;
    right: -5%;
    top:0;
    width: 0px;
    border-right: dashed 1px var(--color4);
    height: 100%;
    opacity: .4;
}

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

    .banner-3 .wrap article{
        width: 100%;
        padding: 30px;
    }

    .banner-3 .wrap article:after{
        width: 80%;
        height: 1px;
        top:100%;
        left: 50%;
        transform: translateX(-50%);
        border-right: none;
        border-bottom: dashed 1px var(--color4);
    }
}


.banner-3 .wrap article:last-child:after{
    display: none;
}

.banner-3 .wrap article .icon{
    width: 80px;
    aspect-ratio: 1/1;
    text-align: center;
}

.banner-3 .wrap article .icon span.material-symbols-outlined {
    display: block;
    line-height: 80px;
    width: 80px;
    font-size: 46px;
    border:solid 1px var(--color4);
    color: var(--color4);
    border-radius: 50%;
}

.banner-3 .wrap article h2{
    color: var(--color4);
    font-size: 1.2em;
}


.banner-3 .wrap article p{
    font-size: 1em;
    color: var(--color4);
    opacity: .8;
    line-height: 1.7;
}



/* page-banner */
.page-banner{
	display: flex;
    padding: 200px 0 50px 0;
	align-items: center;
	justify-content: center;
	position: relative;
    background: var(--color4);
}

.page-banner img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .6;
}

.page-banner .wrap{
	position: relative;
	color: var(--color6);
	padding: 250px 0 80px 0;
}

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

.page-banner .wrap p{
	max-width: 500px;
	margin:20px 0 0 0;
	line-height: 1.8;
}

.page-banner h1{
    margin:0 5%;
    color: var(--color2);
}

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

.content .title-page{
	text-align: center;
	color: var(--color1);
	font-size: 40px;
	font-weight: 800;
	margin:80px 0 30px 0;
}

.content .image-single{
	width: 70%;
	margin:auto;
	overflow: hidden;
	margin:0 auto 50px auto;
}

.content .image-single img{
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 20px;
}

@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: var(--color6);
    padding: 15px 2%;
    width: 96%;
    border:solid 1px #dedede;
    outline: none;
    resize: none;
    margin:0 0 10px 0;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; 
	border-radius: 5px;
}

.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: var(--color3);
    color: var(--color2);
    border:none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 50px;
    margin:0 0 20px 0;
    transition: all .3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

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

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

.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%;
    }
}



/* category */
.category{
	padding: 70px 0;
}
.category .wrap{
    display: flex;
    gap:2%;
    flex-wrap: wrap;
}

.category .wrap article{
    width: 23.5%;
    overflow: hidden;
    margin:0 0 40px 0;
	aspect-ratio: 1/1.5;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.category .wrap article:after{
	content: "";
	position: absolute;
	width: 800px;
	height: 100px;
	background-color: rgba(255,255,255,.3);
	top:-400px;
	left: -200px;
	z-index: 1;
	transform:rotate(-45deg);
	filter: blur(50px);
	pointer-events: none;
}

.category .wrap article:hover:after{
	top:800px;
	transition: all 1s ease;
}


.category .wrap article .image{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
	background-color: var(--color4);
	border-radius: 10px;
	overflow: hidden;
}

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

.category .wrap article:hover .image img{
	transform:scale(1.5);
	filter: grayscale(100%);
}


.category .wrap article .info{
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--color6);
}

.category .wrap article .btn-add{
	margin:20px auto 0 auto;
	width: 80px;
	aspect-ratio: 1/1;
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(50px);
	opacity: 0;
	transition: all .3s ease;
	top:50px;
}

.category .wrap article:hover .btn-add{
	transform: translateX(-50%) translateY(0px);
	opacity: 1;

}



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

	.category .wrap article{
		width: 100%;
		aspect-ratio: 1/1;
	}

	.category .wrap article .btn-add{
		opacity: 1;
		transform: translateX(-50%) translateY(0px);
	}
}

.category .wrap article .btn-add a{
	background-color: var(--color1);
	display: block;
	text-align: center;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	color: var(--color6);
	border-radius: 50%;
	transform: rotate(0deg);
	justify-content: center;
	transition: all .3s ease;
}

.category .wrap article .btn-add a:hover{
	transform:rotate(-45deg) scale(1.4);
	background-color: var(--color1);
}

.subtitle{
	text-align: center;
	padding: 50px 0;
	font-size: 25px;
	font-weight: 600;
	color: var(--color1);
}




/* sub-footer */
.sub-footer{
    padding: 80px 0;
    background-color: var(--color4);
    position: relative;
    z-index: 9;
}

.sub-footer .wrap{
    display: flex;
    justify-content: space-between;
    gap:3%;
    flex-wrap: wrap;
}

.sub-footer .wrap article:nth-child(1){
    width: 30%;
}

.sub-footer .wrap article:nth-child(2){
    width: 11%;
}

.sub-footer .wrap article:nth-child(3){
    width: 25%;
}

.sub-footer .wrap article:nth-child(4){
    width: 25%;
}

.sub-footer .wrap article:nth-child(1) img{
    color: var(--color2);
    max-width: 150px;
    font-size: 1.4em;
    font-weight: 800;
    margin:0 0 0px 0;
}

.sub-footer .wrap article:nth-child(4) img{
    width: 90%;
    margin:20px 0 0 0;
    border-radius: 20px;
}



.sub-footer .wrap article h2{
    color: var(--color2);
    max-width: 150px;
    font-size: 1.4em;
    font-weight: 800;
    margin:0 0 40px 0;
}

.sub-footer .wrap article p,
.sub-footer .wrap article a{
    color: #f9f9f9;
    text-decoration: none;
    font-size: 16px;
    line-height: 30px;
    transition: color .3s ease;
}

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

.sub-footer .wrap article ul.menu{
    line-height: 40px;
    list-style-type: none;
}

.sub-footer .wrap article ul.menu li a i{
    color: var(--color2);
}

.sub-footer .wrap article ul.menu li a:hover{
    color: var(--color2);
}

.sub-footer .wrap article ul.social{
    display: flex;
    gap:3%;
    list-style-type: none;
    margin:20px 0 0 0;
}

.sub-footer .wrap article ul.social li a{
    display: block;
    line-height: 50px;
    width: 50px;
    border:solid 1px var(--color2);
    color: var(--color2);
    text-align: center;
    font-size: 20px;
    border-radius: 50px;
    line-height: 50px;
    transition: all .3s ease;
}



@media(max-width:800px){
    .sub-footer{
        padding: 40px 0;
    }
    .sub-footer .wrap{
        display: block;
    }

    .sub-footer .wrap article:nth-child(1),
    .sub-footer .wrap article:nth-child(2),
    .sub-footer .wrap article:nth-child(3),
    .sub-footer .wrap article:nth-child(4){
        width: 100%;
        text-align: center;
        padding: 40px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .sub-footer .wrap article img{
        display: block;
        margin:auto;
        text-align: center;
        width: 100px;
    }

    .sub-footer .wrap article h2{
        width: 100%;
    }

    .sub-footer .wrap article ul{
        width: 100%;
        justify-content: center;
    }
}

.sub-footer .wrap article ul.social li a:hover{
    background-color: var(--color2);
    color: var(--color1);
}

.sub-footer .wrap article input[type="email"]{
    padding: 14px 2%;
    width: 96%;
    border:none;
    background-color: var(--color2);
    outline: none;
    font-size: 16px;
    border-radius: 50px;
}

.sub-footer .wrap article input[type="email"]::placeholder{
    color: var(--color4);
}

.sub-footer .wrap article input[type="submit"]{
    color: var(--color2);
    background-color: var(--color3);
    padding: 14px 20px;
    border-radius: 50px;
    border:none;
    font-size: 16px;
    cursor: pointer;
    margin:10px 0 20px 0;
    transition: all .3s ease;
}

.sub-footer .wrap article input[type="submit"]:hover,
.sub-footer .wrap article input[type="submit"]:focus{
    background-color: var(--color1);
    color: #212121;
}


/* footer */
footer{
    background-color: var(--color4);
    padding: 0 0 50px 0;
    text-align: center;
    font-size: 18px;
    color: #dedede;
}

footer a{
    color: var(--color2);
    text-decoration: none;
    transition: all .3s ease;
}

footer a:hover{
    color: var(--color2);
}

footer em{
    font-style: normal;
    display: inline;
    margin:0 10px;
}

@media(max-width:800px){
    footer em{
        display: none;
    }

    footer span{
        display: block;
        padding: 20px;
    }
}
.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color4); 
    color: var(--color2); 
    border-radius: 60px;
    font-size: 24px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
    visibility: hidden;
    z-index: 99;
}

.go-top.visible {
    visibility: visible;
    opacity: 1;
}

.go-top.hovered {
    background-color: var(--color3); 
}



/* btn-whatsapp */
.btn-whatsapp{
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99;
}

.btn-whatsapp .icon{
  color: #212121;
  background-color: #25D366;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: 35px;
}

.btn-whatsapp .box{
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 300px;
  background-color: #ECE5DD; 
  padding: 16px 20px;
  border-radius: 10px;
  margin: 0 0 20px 0;
  font-family: 'Helvetica Neue', sans-serif;
  color: #111B21;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

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

.btn-whatsapp .box:after{
  content: "";
  position: absolute;
  border-top:solid 10px #ECE5DD;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  top:100%;
  left: 20px;
}


/* Estilo de texto */
.btn-whatsapp .box h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #075E54;
}

.btn-whatsapp .box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
