/*
Theme Name: Flusvet 2025
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.1
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{

    --fuente1: "Lato", sans-serif;
    --fuente2: "Cinzel", serif;
}


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

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

body{
    background-color: var(--color6);
    overflow-x: hidden;
}

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

/* top-banner */
.top-banner{
    background-color: var(--color7);
    color: var(--color3);
    padding: 4px 0;
    font-size: 13px;
    text-align: center;
}

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

/* header */
header{
    background-color: var(--color8);
}

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

header .logo{
    width: 100px;
}

@media(max-width:800px){
    header .wrap{
        flex-wrap: wrap;
        padding: 20px 0 0 0;
    }
    header .logo{
        width: 120px;
        max-width: 50%;
        margin:auto;
    }
}

header .logo img{
    width: 100%;
    margin:0 0 -5px 0;
}


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

@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(--color10);
		border-radius: 5px;
        z-index: 99;

	}

	header label span{
		width: 50%;
		height: 3px;
		background: var(--color2);
		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.prncipal--nav */
nav.principal--nav ul{
    display: flex;
    list-style-type: none;
}

nav.principal--nav ul li a{
    color: var(--color6);
    text-decoration: none;
    font-size: 14px;
    padding:10px;
    transition:color .3s ease;
}

nav.principal--nav ul li a:hover{
    color: var(--color3);
}


nav.principal--nav ul li:last-child a{
    background: linear-gradient(135deg, var(--color1), var(--color2));
    border-radius: 50px;
    color: var(--color6);
    transition:box-shadow .3s ease;
}

nav.principal--nav ul li:last-child a:hover{
    box-shadow: 0 0 0 3px #0e7d2850,  0 0 0 10px #0e7d2830;
}

@media(max-width:800px){
    nav.principal--nav{
        position: absolute;
        left: 0;
        top:0;
        margin:0;
        background-color: var(--color7);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 20;
        opacity: 0;
        pointer-events: none;
        transition:opacity .3s ease;
    }

    #btn-nav:checked ~ nav.principal--nav{
        opacity: 1;
        pointer-events: all;
    }



    nav.principal--nav ul{
        display: block;
    }

    nav.principal--nav ul li{
        transition: all .3s ease;
        transform: translateY(-20px);
        transition-delay: .3s;
        opacity: 0;
    }

    #btn-nav:checked ~ nav.principal--nav ul li{
        transform: translateY(0);
        opacity: 1;
    }

    #btn-nav:checked ~ nav.principal--nav ul li:nth-child(1){ transition-delay: 0s; }
    #btn-nav:checked ~ nav.principal--nav ul li:nth-child(2){ transition-delay: 0.1s; }
    #btn-nav:checked ~ nav.principal--nav ul li:nth-child(3){ transition-delay: 0.2s; }
    #btn-nav:checked ~ nav.principal--nav ul li:nth-child(4){ transition-delay: 0.3s; }
    #btn-nav:checked ~ nav.principal--nav ul li:nth-child(5){ transition-delay: 0.4s; }
    #btn-nav:checked ~ nav.principal--nav ul li:nth-child(6){ transition-delay: 0.5s; }
    #btn-nav:checked ~ nav.principal--nav ul li:nth-child(7){ transition-delay: 0.6s; }
    #btn-nav:checked ~ nav.principal--nav ul li:nth-child(8){ transition-delay: 0.7s; }
    #btn-nav:checked ~ nav.principal--nav ul li:nth-child(9){ transition-delay: 0.8s; }
    #btn-nav:checked ~ nav.principal--nav ul li:nth-child(10){ transition-delay: 0.9s; }


    nav.principal--nav ul li a{
        text-align: center;
        display: block;
        padding: 15px 20px;
        font-size: 20px;
    }

}
/* searcg-top */
.search-top{
    width: 24%;
}

.search-top form{
    background-color: var(--color6);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 30px;
}

.search-top form input[type="text"]{
    padding: 12px;
    border:none;
    outline: none;
    width: 80%;
    background-color: transparent;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
}

.search-top form button{
    width: 20%;
    border:none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    border-radius: 0 30px 30px 0;
    font-size: 14px;
}

@media(max-width:800px){
    .search-top{
        width: 100%;
        margin:20px 0;
    }

    .search-top form input[type="text"]{
        padding: 18px 12px;
    }
}

/* shop-nav */
.shop-nav ul{
    display: flex;
    gap:10px;
    list-style-type: none;
}

@media(max-width:800px){
    .shop-nav{
        width: 100%;
    }
    .shop-nav ul{
        justify-content: center;
        display: flex;
        width: 100%;
        line-height: 50px;
    }
}

.shop-nav ul li a{
    display: block;
    text-decoration: none;
    color: var(--color6);
    display: flex;
    align-items: center;
    gap:5px;
}

.shop-nav ul li a svg{
    fill: var(--color9);
    width: 20px;
    transition:fill .3s ease;
}

.shop-nav ul li a:hover svg{
    fill: var(--color3);
}

/* slider */
.wrap-slider{
    padding: 40px 0 20px 0;
    border-top:solid 1px var(--color5b);
    background-color: var(--color8);

}
.slider{
    position: relative;
}

.slider .wrap{
    margin:auto;
}
.slider .wrap img{
    width: 100%;
    border-radius: 10px;
}

.slidesjs-pagination{
    position: absolute;
    bottom: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
    list-style-type: none;
    gap:10px;
}

.slidesjs-pagination .slidesjs-pagination-item a{
    color: transparent;
    width: 30px;
    height: 4px;
    border-radius: 10px;
    line-height: 0;
    font-size: 0;
    display: block;
    background-color: var(--color6);
}

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

/* banner-home */
.banner-home{
    padding: 30px 0;
}

.banner-home .wrap{
    display: flex;
    justify-content: space-between;
    gap:2%;
}

.banner-home .wrap article{
    width: 24%;
}

.banner-home .wrap article a{
    text-decoration: none;
    color: inherit;
}

@media(max-width:800px){
    .banner-home .wrap{
        flex-wrap: wrap-reverse;
        gap:30px;
    }

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

.banner-home .wrap article img{
    width: 100%;
    aspect-ratio: 4/2;
    object-fit: cover;
    border-radius: 10px;
}

.banner-home .wrap article h2{
    padding: 10px 20px 0 20px;
    text-transform: uppercase;
    text-align:center;
    font-size: 17px;
    font-weight: 800;
    color: var(--color7);
}

.banner-home .wrap article p{
    padding: 5px 20px 10px 20px;
    text-align:center;
    font-size: 15px;
    color: var(--color8);
    opacity: .8;
}

/* categoryes-home */
.categoryes-home{
    padding: 30px 0;
}

.categoryes-home h2{
    margin:0 0 20px 0;
    color: var(--color7);
    font-weight: 800;
    font-size: 30px;
}

.categoryes-home .gallery section{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: .5% 0;
    gap:1%;
}

.categoryes-home .gallery section:nth-child(1) article {
    width: 32.5%;
}


.categoryes-home .gallery section:nth-child(2) article {
    width: 15.5%;
}

@media(max-width:800px){
    .categoryes-home .gallery section{
        gap:1%;
        row-gap: 5px;
    }
    .categoryes-home .gallery section:nth-child(1) article{
        width: 100%;
    }

    .categoryes-home .gallery section:nth-child(2) article{
        width:49%;
    }
}

.categoryes-home .gallery section article img{
    width: 100%;
    cursor: pointer;
}

/* showcase */
.showcase{
    padding: 50px 0;
}

.showcase h2{
    margin:0 0 20px 0;
    color: var(--color7);
    font-weight: 800;
    font-size: 30px;
}

.swiper-wrapper{
    padding: 20px 0;
}


.product-card {
    padding: 0 20px 20px 20px;
    background: var(--color6);
    border: 1px solid var(--color5);
    border-radius: 8px;
    position: relative;
    margin:0 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.product-card a{
    text-decoration: none;
    display: block;
    color: inherit;

}

.product-card .sale{
    position: absolute;
    top:10px;
    right: 10px;
    background-color: var(--color3);
    color: var(--color6);
    font-size: 13px;
    font-weight: 800;
    padding: 7px 10px;
    border-radius: 5px;
}

.product-card img {
    width: 90%;
    height: auto;
    max-height: 90%;
    border-radius: 8px;
    margin-bottom: 10px;
    margin:10px 5%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    background-color: #fff;
    display: block;
}

.product-card h3 {
    font-size: 16px !important;
    color: var(--color7);
    margin: 5px 0 !important;
    min-height: 60px !important;
    background-color: transparent !important;
}

.product-card .category-info {
    font-size: 14px;
    color: var(--color1);
}

.product-card .price{
    font-weight: 800;
    min-height: 50px;
    color: var(--color7);
    font-size: 20px !important;
    display: block;
    margin-top: 5px;
    text-decoration: none;
}

.product-card .price del{
    opacity: .4;
    font-size: 12px !important;
    font-weight: 400 !important;
    display: block !important;
}

.product-card .price ins{
    font-size: 20px !important;
    text-decoration: none !important;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-button-next-2,
.swiper-button-prev-2{
    line-height: 50px !important;
    text-align: center !important;
    width: 50px !important;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    border-radius: 50%;
}

[class*="swiper-button-next"]:after,
[class*="swiper-button-prev"]:after {
    font-size: 20px !important;
    width: 50px !important;
    border-radius: 50%;
    cursor: pointer !important;
    background-color: var(--color6) !important;
    color: var(--color1) !important;
    line-height: 50px !important;
    text-align: center !important;
}



/* banner-2 */
.banner-2 .wrap{
    display: flex;
    gap:2%;
    justify-content: space-between;
}

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

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

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

/* banner-3 */
.banner-3 .wrap {
    display: flex;
    flex-wrap: wrap !important;
    justify-content: space-between;
    gap: 2%;
    padding: 0 0 50px 0;
}

.banner-3 .wrap article {
    width: 49%;
}

.banner-3 .wrap article a{
    display: block;
}

.banner-3 .wrap article a img {
    width: 100%;
    display: block;
}


@media(max-width:800px){
    .banner-3 .wrap {
        flex-wrap: wrap;
    }
    .banner-3 .wrap article{
        width: 100%;
    }
}
/* categoryes-2 */
.categoryes-2{
    padding: 20px 0 40px 0;
}
.categoryes-2 h2{
    margin:0 0 20px 0;
    color: var(--color7);
    font-weight: 800;
    font-size: 30px;
}

.categoryes-2 .gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 2%;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.categoryes-2 .gallery article {
    flex: 0 0 calc((100% - (2% * (6 - 1))) / 6);
    max-width: calc((100% - (2% * (6 - 1))) / 6);
    text-align: center;
    box-sizing: border-box;
}

@media(max-width:800px){
    .categoryes-2 .gallery{
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .categoryes-2 .gallery article{
        width: 49%;
    }
}

.categoryes-2 .gallery article a{
    display: block;
    padding: 20px 0 0 0;
    text-decoration: none;
    color: var(--color8);
    font-size: 16px;
    font-weight: 600;
    background-color: var(--color4);
    border-radius: 10px;
    transition: background-color .3s ease;
}


.categoryes-2 .gallery article a:hover{
    background-color: var(--color9);
}

.categoryes-2 .gallery article a img{
    margin:0 0 -3px 0;
    max-width: 100%;
}

.categoryes-2 .gallery article a h3{
    font-weight: 900;
    font-size: 16px;
    margin:0 0 10px 0;
}

/* categoryes-3 */
.categoryes-3{
    padding: 20px 0 40px 0;
}
.categoryes-3 h2{
    margin:0 0 20px 0;
    color: var(--color7);
    font-weight: 800;
    font-size: 30px;
    text-align: center;
}

.categoryes-3 .gallery{
    display: flex;
    gap:2%;
    justify-content: center;
    row-gap: 20px;
    flex-wrap: wrap;
}


.categoryes-3 .gallery article{
    text-align: center;
}

@media(max-width:800px){
    .categoryes-3 .gallery{
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .categoryes-3 .gallery article{
        width: 48%;
    }
}

.categoryes-3 .gallery article a{
    display: block;
    text-decoration: none;
    color: var(--color8);
    font-size: 16px;
    font-weight: 600;
    background-color: var(--color6);
    border-radius: 10px;
    transition: all .3s ease;
    padding: 10px;
}

.categoryes-3 .gallery article a:hover{

    box-shadow: 0 5px 10px rgba(0,0,0,.1);
}

.categoryes-3 .gallery article a img{
    margin:0 0 -3px 0;
}


/* banner-inferior */
.banner-inferior {
    background-image: url(assets/images/bg-footer-1.svg), url(assets/images/bg-footer-2.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right bottom;
    background-size: 30%, 30%;
    padding: 80px 0;
    background-color: var(--color5);
}

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

.banner-inferior .wrap{
    text-align: center;
}

.banner-inferior .wrap h2{
    font-size: 20px;
    font-weight: 500;
}

.banner-inferior .wrap h3{
    font-family: var(--fuente2);
    max-width: 900px;
    width: 90%;
    margin:10px auto 20px auto;
    font-weight: 900;
    font-size: clamp(18px, 4vw, 4em);
}


.news-bar {
    padding: 50px 0 20px 0; 
    overflow: hidden;
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
}

.ticker {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ticker li {
    white-space: nowrap;
    margin-right: 50px;
    font-size: clamp(2em, 5vw, 4em);
    text-decoration: none;
    color: var(--color4);
    padding: 0 20px;
    border-radius: 13px;
    font-weight: 900;
}


.ticker li:nth-child(even){
	background-color: var(--color2b);
	color: var(--color1);
}


/* page-banner */
.page-banner{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
    padding: 70px 0;
    color: var(--color6);
    background-color: var(--color3);
    overflow: hidden;
    z-index: 1;
    margin:20px auto;
    width: 90%;
    max-width: 1430px;
    border-radius: 13px;
}

.page-banner img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .1;
    top:0;
    left: 0;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}


.page-banner  h1{
    z-index: 3;
    position: relative;
    text-transform: uppercase;
    color: var(--color6);
}

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

    .page-banner  h1{
        z-index: 99;
        font-size: 30px;
        text-align: center;
        position: relative;
    }
}

.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: var(--fuente1);
    background-color: var(--color6);
    padding: 10px 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(--color5);
    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%;
    margin:0 0 40px 0;
	position: relative;
	justify-content: center;
	align-items: center;
}

.category .wrap article img{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    object-fit: cover;
}

.category .wrap article h2{
    font-size: 1.2em;
    line-height: 1.5;
    color: var(--color2);
    padding: 20px 20px 0 20px;
}

.category .wrap article .btn-more{
    display: table;
    margin:20px 0 20px 20px;
}

.category .wrap article .btn-more a{
    background-color: var(--color1);
    color: var(--color3);
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 20px;
}

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

	.category .wrap article{
		width: 90%;
        margin:auto 30px;
	}
}


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



/* sub-footer */
.sub-footer{
	background: var(--color1);
	padding: 100px 0 50px 0;
    margin:30px 2.5%;
    border-radius: 13px;
}

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

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

.sub-footer .wrap article:nth-child(1):after{
	content: "";
	width: 1px;
	height: 80%;
	border-right: dashed 1px rgba(255,255,255,.3);
	right: 0;
	top:0;
	position: absolute;
}

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

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

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

.sub-footer .wrap article .mgt-20{
	margin-top:40px;
}

.sub-footer .wrap article:nth-child(1) img{
	max-width: 120px;
	border-radius: 10px;
	margin:0 0 20px 0;
	padding: 10px;
}

.sub-footer .wrap article:nth-child(3) img{
	max-width: 100%;
    background-color: var(--color6);
    border:solid 2px var(--color9);
	border-radius: 10px;
	margin:0 0 20px 0;
	padding: 10px;
}

@media(max-width:800px){
    .sub-footer .wrap article:nth-child(3) img{
        max-width: 300px;
    }
}

.sub-footer .wrap article p{
	font-size: 16px;
	line-height: 30px;
	color:  var(--color4);
	max-width: 90%;
}

.sub-footer .wrap article h2{
	color: var(--color4);
	font-size: 20px;
	margin:0 0 20px 0;
}

.sub-footer .wrap article ul li{
	list-style: none;
	padding: 5px 0;
}

.sub-footer .wrap article ul li a{
	color: var(--color4);
	text-decoration: none;
	font-size: 16px;
	transition: all .3s ease;
}

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

.sub-footer .wrap article ul.social{
	display: flex;
	gap:3%;
}

@media screen and (max-width:800px){
	.sub-footer{
		padding: 50px 0;
	}

	.sub-footer .wrap{
		display: block;
		text-align: center;
	}

	.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),
	.sub-footer .wrap article:nth-child(5){
		text-align: center;
		width: 100%;
		margin:0 0 50px 0;
	}

	.sub-footer .wrap article:nth-child(5){
		margin-bottom: 0;
	}

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

	.sub-footer .wrap article ul.social{
		justify-content: center;
	}
}

.sub-footer .wrap article ul.social li a{
	display: block;
	line-height: 55px;
	width: 55px;
	text-align: center;
	background: var(--color9);
    font-size: 20px;
	border-radius: 55px;
	color: var(--color1);
}

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

/* footer */
footer{
	padding: 20px 0 40px 0;
	text-align: center;
	color: var(--color1);
	font-size: 17px;
}

footer span{
	display: block;
}

footer a{
	color: var(--color1);
	text-decoration: none;
	font-weight: 500;
}


/* btn-whatsapp */
.btn-whatsapp{
    position: fixed;
    width: 60px;
    line-height: 60px;
    text-align: center;
    bottom: 30px;
    left: 30px;
    border-radius: 50%;
    font-size: 40px;
    background-color: #0e7d28;
    color: #ffffff;
    z-index: 99;
}


.btn-whatsapp:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: #0e7d28;
    opacity: .5;
    left: -10px;
    top:-10px;
    border-radius: 50%;
    animation: animacion_a 2s infinite;
    z-index: -1;
}

@keyframes animacion_a{
    0%{
        transform: scale(.2);
        opacity: .4;
    }

    50%{
        opacity: .4;
    }

    100%{
        opacity: 0;
        transform: scale(1.2);
    }
    
}

.btn-whatsapp a{
    display: block;
    text-decoration: none;
    border-radius: 50%;
    color: inherit;
}