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

body {
    /*
    background: url(../imagenes/double-bubble.png);
    background-repeat: repeat;

    background-position: 0,0;
    background-attachment: fixed;*/
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 16px;
    padding-top: 65px;
    background: linear-gradient(220.55deg, #EAEAEA 0%, #8B8B8B 100%);
}

header{
    background: rgba(0, 0, 0, 0.514);
    position: fixed;
    width: 100%;
    top: 0;
}
.footer{

    background: rgba(0, 0, 0, 0.253);
}
.menu {
    width: 98%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.menu .logo{
    display: inline-block;
    margin-left: 1em;
}

.menu .logo img{
    vertical-align: top;
    height: 45px;
}
.menu .btn-menu {
    display: none;
    color: #00A1B8
    text-decoration: none;
    font-size: 1em;
}

/*
.menu .logo:hover {

}
*/
.menu .enlaces{
    display: inline-block;
    text-align: right;
}

.menu .enlaces a{
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    padding:  1em;
    text-align: center;
    font-size: 1em;
}

.menu .enlaces i{
    margin-right: 5px;
}

.menu .enlaces a:hover {
    background: #f2f2f2;
    color: #0A1B8d;
}
/*
main {
    width: 95%;
    max-width: 1000px;
    margin: 20px;

}*/

/* Efectos del menu */
.headroom {
    transition: transform,.3s ease;
}

.headroom--pinned {
    transform: translateY(0%);
}

.headroom--unpinned {
    transform: translateY(100%);
}

/* Mediaqueries */
@media screen  and (max-width: 700px){
    header .menu{
        flex-direction: column;
    }
    header .menu .logo{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: 1em;
    }
    header .menu .logo .btn-menu{
        display: inline-block;
    }

    header .menu .enlaces {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        z-index: 999999;
    }

    body {
		padding: 90px 0;
	}

	.contenido-principal {
		flex-direction: column;
	}

	.contenido-principal > * {
		width: 100%;
	}


}

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

}

.contenedorFichas {
	max-width: 1200px;
	width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- --- CONTENEDOR PRINCIPAL --- --- */

.contenido-principal {
	margin-bottom: 50px;
	display: flex;
	align-items: center;
}

.contenido-principal__imagen {
	vertical-align: top;
	margin-right: 20px;
	width: 50%;
	max-width: 450px;
}

.contenido-principal__contenedor {
	width: 50%;
}

.contenido-principal__titulo {
	font-weight: normal;
	font-size: 28px;
}

.contenido-principal__resumen {
	font-family: 'Open Sans', sans-serif;
	line-height: 30px;
	color: #CFCFCF;
}

/* --- --- CAROUSEL --- --- */
.carousel__contenedor {
	position: relative;
}

.carousel__anterior,
.carousel__siguiente {
	position: absolute;
	display: block;
	width: 30px;
	height: 30px;
	border: none;
	top: calc(50% - 35px);
	cursor: pointer;
	line-height: 30px;
	text-align: center;
	background: none;
	color: #333;
	opacity: 20%;
}

.carousel__anterior:hover,
.carousel__siguiente:hover {
	opacity: 100%;
}

.carousel__anterior {
	left: -30px;
}

.carousel__siguiente {
	right: -30px;
}

.carousel__lista {
	overflow: hidden;
}

.carousel__elemento {
	text-align: center;
}

.carousel__indicadores .glider-dot {
	display: block;
	width: 30px;
	height: 4px;
	background: #fff;
	opacity: .2;
	border-radius: 0;
}

.carousel__indicadores .glider-dot:hover {
	opacity: .5;
}

.carousel__indicadores .glider-dot.active {
	opacity: 1;
}

.tarjeta{
    margin: 10px;
}

.tarjeta a{
    display: inline-block;
}

.tarjeta:hover figure{
    transform: perspective(600px) rotateY(180deg);


}

.tarjeta:hover figure img {
    filter: blur(2px);
    -webkit-box-shadow: 0px 2px 5px 5px rgba(0,0,0,0.45);
    -moz-box-shadow: 0px 2px 5px 5px rgba(0,0,0,0.45);
    box-shadow: 0px 2px 5px 5px rgba(0,0,0,0.45);

    
}

figure {
    width: 400px;
    height: 400px;
    margin: 0;
    position: relative;
    transition: all ease .5s;
    transform-style: preserve-3d;
    transform: perspective(600px) rotateY(0deg);
}

figure .frontal,
figure .trasera {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: all ease .5s;
 
}
figure .frontal{
    display: block;

}

figure .trasera{
    position: absolute;
    top: 0;
    padding-top: 60px;
    padding-left: 20px;
    color: #000;
    transform: perspective(600px) rotateY(180deg);
    backface-visibility: hidden;
    overflow: auto;

    background: rgba(73,155,234,1);
background: -moz-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,0.58) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(73,155,234,1)), color-stop(100%, rgba(32,124,229,0.58)));
background: -webkit-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,0.58) 100%);
background: -o-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,0.58) 100%);
background: -ms-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(32,124,229,0.58) 100%);
background: linear-gradient(to bottom, rgba(73,155,234,1) 0%, rgba(32,124,229,0.58) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499bea', endColorstr='#207ce5', GradientType=0 );
}
figure .trasera ul{
    padding: 20px;color: #ff0606;
}

figure .trasera .titutlo{
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

figure .trasera hr{
    height: 2px;
    background: #fff;
    margin-bottom: 20px;
    opacity: .5;
    border: none;
    margin-right: 20px;
}

@media screen and (max-width: 992px){
    figure .trasera{
        backface-visibility: visible;
        transform: perspective(600px) rotateY(0deg);
    }

    .tarjeta:hover{
        transform: perspective(600px) rotateY(0deg);
    }
}

.navbar-nav li{
    color: #fff;
    font-size: 1.2em;
}

.navbar-nav li:hover{
    font-weight: bold;
    background-color:  #82619A ;
    border-radius: 5px;

}

.btn-manto{

    background-color: #82619A;
    color: #fff;

}
.btn-manto:hover{
    cursor: pointer;
    background-color: #00A1B8 ;
}

.btn-refac{

    background-color: #00A1B8;
    color: #fff;

}
.btn-refac:hover{
    cursor: pointer;
    background-color: #82619A ;
}

.btn-vta{

    background-color: #8BB259;
    color: #fff;

}
.btn-vta:hover{
    cursor: pointer;
    background-color: #82619A ;
}



.tap-1{
   /* background-color: #8AB259;*/
    background-color: rgb(33, 37, 41, .6);
}

.tap-2{
    background-color: #82619A;
}

.tap-3{
    background-color: #00A1B8;
}
.Frs-mor{
    color: #82619A ;
}
.Brs-mor{
    background-color: #82619A ;
    color: #fff;
    font-weight: bold;
}

.card2{
    width: 90;
    margin: 0 auto;
    padding: 60px 0;
    max-width: 1200px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 3.5em;
    flex-wrap: wrap;
}

.card2_item{
    background: #F2F2F2;
    padding-bottom: 3em;
    flex-basis: 280px;
    max-width: 450px;
    flex-grow: 1;
    
}

.card2_content{
    width: 90%;
    margin: 0 auto;
}

.card2_picture{
    width: 90%;
    margin: 0 auto;
   /* background: cornflowerblue;*/
    max-height: 30vh;
    position: relative;
   /* bottom: 2em;*/
   top: 2em;

}

.card2_img{
    width: 100%;
    margin: 0 auto;

}
.card2_title{
    font-weight: bold;
    margin-bottom: 1em;
    margin-top: 4em;
}

.appWhatsapp{
	position: fixed;
	right: 26px;
	bottom: 100px;
	width: 70px;
    padding-left: 8px;;
	z-index: 1000;
    background-color: transparent;
    border-radius: 50%;
    filter: drop-shadow(0 0 4px #03C818);
}

.appWhatsapp img{
	width: 100%;
	height: auto;
    
    
}

.titular{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-text-stroke:  1px #000;
    -webkit-text-fill-color: #fff;
    font-size: 2.7em;
   
}


.wrapper{
    display: inline-flex;
}
.wrapper .icon{
    margin: 0 20px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon span{
    display: block;
    height: 60px;
    width: 60px;
    background: #364f6b;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #fff;
}

.wrapper .icon span i{

    line-height: 60px;
    font-size: 25px;
}

.wrapper .icon .tooltip{

    position: absolute;
    top: 0;
    z-index: 1;
    background: #fff;
    color: #fff;
    padding:  10px 18px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 25px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon:hover .tooltip{
    top: -70px;
    opacity: 1;
    pointer-events: auto;

}

.wrapper .icon:before .tooltip{
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    background: #fff;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%) rotate(45deg);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .facebook:hover span,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip:before{ background: #3B5999;}


.wrapper .twitter:hover span,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip:before{ background: #46C1F6;}


.wrapper .instagram:hover span,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip:before{ background: #e1306c;}

.wrapper .youtube:hover span,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip:before{ background: #DE463B;}

.redondeoBtn{

border-radius: 25%;
}


.gradientMto{
    background: linear-gradient(220.55deg, #8A88FB 0%, #D079EE 100%);
}

.gradientVta{
    background: linear-gradient(220.55deg, #E0FF87 0.01%, #8FB85B 100%);
}


/* BOTONES */

.button {
    --color: #8BB259;
    padding: 0.8em 1.7em;
    background-color: transparent;
    border-radius: .3em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-weight: 800;
    font-size: 17px;
    border: 1px solid;
    font-family: inherit;
    text-transform: uppercase;
    color: var(--color);
    z-index: 1;
   }
   
   .button::before, .button::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color);
    transition: 1s ease;
   }
   
   .button::before {
    top: -1em;
    left: -1em;
   }
   
   .button::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
   }
   
   .button:hover::before, .button:hover::after {
    height: 410px;
    width: 410px;
   }
   
   .button:hover {
    color: rgb(10, 25, 30);
   }
   
   .button:active {
    filter: brightness(.8);
   }
   

   .button2 {
    --color: #82619A;
    padding: 0.8em 1.7em;
    background-color: transparent;
    border-radius: .3em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-weight: 800;
    font-size: 17px;
    border: 1px solid;
    font-family: inherit;
    text-transform: uppercase;
    color: var(--color);
    z-index: 1;
   }
   
   .button::before, .button::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color);
    transition: 1s ease;
   }
   
   .button::before {
    top: -1em;
    left: -1em;
   }
   
   .button::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
   }
   
   .button:hover::before, .button:hover::after {
    height: 410px;
    width: 410px;
   }
   
   .button:hover {
    color: rgb(10, 25, 30);
   }
   
   .button:active {
    filter: brightness(.8);
   }
   

   /* BUTTON LEARN MORE */


   button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
   }
   
   button.learn-more {
    width: 12rem;
    height: auto;
   }
   
   button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #00A1B8;
    border-radius: 1.625rem;
   }
   
   button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
   }
   
   button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
   }
   
   button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
   }
   
   button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #00A1B8;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
   }
   
   button:hover .circle {
    width: 100%;
   }
   
   button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
   }
   
   button:hover .button-text {
    color: #fff;
   }

   /* CAROUSEL */

   .embla__container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80%; /* Each slide covers 80% of the viewport */
  }
  
  /* BOTON WHATSAPP */

  .container-boton{
	background-color: #2e6329;
	border: 1px solid #fff;
	position: fixed;
	z-index: 999999;
	border-radius: 50%;
	bottom: 5px;
	right: 10px;
	padding: 20px;
	transition: ease 0.3s;
	animation: efecto 1.2s infinite;
}

.container-boton:hover{
	transform: scale(1.1);
	transition: 0.3s;
}

.boton{
	width: 35px;
	transition: ease 1s;
}

@keyframes efecto{
	0%{
			box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
	}
	100%{
			box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
	}
}