/*
Theme Name: Gas Soluciones
Author: SA Publicidad
Author URI: https://www.sapublicidad.cl/
Description: Este diseño ha sido creado por SA Publicidad de manera exclusiva para usted.
Version: 1.01-1_03_25
License: Privada
Tags: minimalista, responsive, modern, full width

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


:root{
    --color1: #85BF4B;
    --color2: #ffffff;
    --color3: #D92534;
    --color3b:#d9253463;
    --color4: #212121;
    --color5: #f0f0f0;

    --fuente1: "Exo 2", serif;
    --fuente2: "Oswald", serif;
}

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

* img{
	height:auto ;
}

body{
    font-family: var(--fuente1);
}

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

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

.btn-cart a{
    display: block;
    width:65px;
    line-height:65px;
    background-color: var(--color3);
    color: var(--color2);
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    transition: box-shadow .3s ease;
}

.btn-cart a:hover{
    box-shadow: 0 0 0 10px var(--color3b);
}

.btn-cart a em{
    position: absolute;
    top:-5px;
    right: -5px;
    font-style: normal;
    font-size: 12px;
    background-color: var(--color1);
    color: var(--color2);
    border-radius: 50%;
    width: 20px;
    line-height: 20px;
}

/* 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{
    max-width: 120px;
    flex:1;
}   

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

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



/* 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%;
    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;
}

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

/* sub-nav */
nav#principal--nav ul li ul{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color4);
    display: none;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
}

nav#principal--nav ul li:hover ul{
    display: block;
}

/* 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);
}


/* 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: 7em;
    text-align: center;
    color: var(--color2);
    font-weight: 300;
}

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

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

@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, border-color .3s ease;
}

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

/* showcase */
.showcase .wrap{
    display: flex;
    justify-content: space-between;
    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;
}

@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;
    font-family: var(--fuente2);
    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:before{
    content: "";
    width: 50%;
    height: auto;
    aspect-ratio: 1/1;
    background-color: var(--color2);
    position: absolute;
    right: -15%;
    top:-10%;
    border-radius: 50%;
}

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

.banner-1 .wrap article{
    width: 50%;
    padding: 100px 0;
}

.banner-1 .wrap article h2{
    font-size: 2em;
    font-weight: 500;
    color: var(--color2);
}

.banner-1 .wrap article h3{
    font-size: 3em;
    font-weight: 600;
    font-family: var(--fuente2);
    color: var(--color2);
}

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

    .banner-1 .wrap{
        padding: 50px 0;
        display: block;
        text-align: center;
    }

    .banner-1 .wrap article{
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .banner-1 .wrap article h2{
        font-size: 1.53em;
    }

    .banner-1 .wrap article h3{
        font-size: 2em;
    }
}

.banner-1 .wrap article p{
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color2);
}

.banner-1 .wrap img{
    position: absolute;
    right: 5%;
    width: 38%;
    bottom: 0;
    max-width: 550px;
    pointer-events: none;
}

@media(max-width:800px){
    .banner-1 .wrap img{
        width: 80%;
        margin:auto;
        opacity: .2;
        z-index: 1;
    }
}

.showcase-2{
    background-color: var(--color2);
    padding: 50px 0;
    
}

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

@media(max-width:800px){
    .showcase-2 .wrap h2{
        font-size: 2em;
    }
}

.splide__list {
    border-radius: 10px;
}

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

.splide__slide article {
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    border-radius: 15px;
    padding: 20px 0;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
    transition: box-shadow .3s ease;
    background-color: var(--color2);
}

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

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

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

.splide__slide article .price {
    padding: 0 20px;
    font-size: 1.3em;
    font-weight: 600;
    font-family: var(--fuente2);
    color: var(--color4);
}

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

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

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

.splide__arrow {
    background: var(--color3) !important;
    color: var(--color2) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
    transition: background 0.3s ease !important;
}

.splide__arrow:hover {
    background: var(--color1) !important;
}

.splide__arrow--prev {
    left: -60px !important;
}

.splide__arrow--next {
    right: -60px !important;
}

.splide__arrow svg {
    width: 20px !important;
    height: 20px !important;
    fill: var(--color2) !important;
}



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

.banner-2 > img{
    width: 60%;
    position: absolute;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    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-family: var(--fuente2);
    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);
    font-family: var(--fuente1);
    margin:0 0 20px 0;
}

.banner-2 > .wrap article .items .item p{
    color: var(--color2);
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* 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{
    font-family: var(--fuente2);
    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: linear-gradient(90deg, var(--color1) 0%, var(--color3) 100%);background: linear-gradient(45deg, var(--color1) 0%, var(--color3) 100%);
}

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

/* 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;
}

.content a{
    color: var(--color1);
    text-decoration: none;
}

@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 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 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 textarea::placeholder{
    color: #313131;
}

.content input[type="submit"]{
    background-color: var(--color1);
    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 img{
    color: var(--color2);
    max-width: 150px;
    font-size: 1.4em;
    font-weight: 800;
    margin:0 0 0px 0;
}
.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);  /* Cambia el color de fondo cuando está sobre el color #2C3E50 */
}
