/*
Theme Name: Weeli theme 
Theme URI: https://www.sozpic.com
Author: Roberto Marin
License: The Unlicense
License URI: LICENSE
Text Domain:  Sozpic
Version: 1.0
*/

@font-face {
    font-family: 'POI Aeronaut';
    src: url('fonts/POIAeronautTrial-Regular.woff2') format('woff2'),
        url('fonts/POIAeronautTrial-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root {
	--white:#fff;
	--black:#000000;
	--main-color: #232222;
	--primary: #FE4519;
	--secondary: #E72017;
	--alt: #A71C42;
	--dark: #232222;
	--dark-color: #232222;
	--text-color:#232222;
	--lightgray:#F4F3F1;
	--orange: #FE4519;
	--gray: #79878B;
	--px: 1rem;
	--py: 2rem;
	--heading-font: "POI Aeronaut", sans-serif;
	--bg-head: #ffffff;
	--header-height: 53px;
	--grid-limit: 1250px;
	--container-width: 1280px;
}

html {
	height:100%;
}

body {
	font-family: "Poppins",sans-serif;
	color:var(--text-color);
	background-color:var(--white);
	font-weight: 400;
	line-height:1.6;
	font-size: 14px;
	margin:0;
	position:relative;
	-webkit-font-smoothing:antialiased;
}
label{
	font-family: var(--heading-font);
	font-weight: 300;
}

.thecontent{}
.thecontent a{
	color: var(--secondary);
}

.manrope-<uniquifier> {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.h1,.h2,.h3,h1,h2,h3 {
	font-weight: 400;
	line-height: 1;
}
.bg-hover-alt:hover{
	background-color: var(--alt) !important;
}

@media (min-width: 992px){
	:root {
		--px: 3rem;
		--py: 3rem;
		--header-height: 87px;
	}
	html,body{
		font-size: 15px;
	}
	.py-lg-extra{
		padding-block: 8rem;
	}
}

/* COLORS */
.white,.white a,a.white,.text-white,a.text-white, .text-white a {
	color:var(--white);
}

.white-content, .bg-white {
	background-color:var(--white);
}

.white-content .button {
	background-color:#d25939;
	color:var(--white);
}

.lightgray-content {
	background-color:var(--lightgray-color);
}
.black,.black a,a.black {
	color:var(--black);
}
.text-gray{
	color: var(--gray) !important;
}

.black-content {
	background-color:var(--black);
}
.hover-effect {
	transition:all .3s;
}

.yellow,.text-yellow {
	color:var(--yellow);
}

.orange-content, .bg-orange {
	background-color:var(--orange);
	color: var(--white);
}

.orange-content .button {
	background-color: #000000;
	color:var(--white);
}

.red-content .button:hover {
	background-color: #000000;
	color:var(--yellow);
}

.bg-lightgray{
	background-color: var(--lightgray);
}
.bg-dark{
	background-color: var(--dark);
}

.bg-primary{
	background-color: var(--primary);
	color: var(--white);
}
.bg-secondary{
	background-color: var(--secondary) !important;
	color: var(--white);
}
.bg-alt{
	background-color: var(--alt) !important;
	color: var(--white);
}
.bg-transparent{
	background-color: transparent !important;
	color: var(--primary) !important;
	border-color: var(--primary) !important;
}

.text-primary,
.text-primary a:not(.button){
	color: var(--primary) !important;
}
.text-secondary,
.text-secondary a:not(.button){
	color: var(--secondary) !important;
}
.text-alt,
.text-alt a:not(.button){
	color: var(--alt) !important;
}

.cursor-pointer{
	cursor: pointer;
}

.img-button{
	transition: all .2s ease-in-out;
}
.img-button:hover{
	transform: scale3d(.95,.95,1)
}

/****************************************************/
/* HEADER */
/****************************************************/


#head{
    padding: 1.4rem;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
}

#head .content{
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
#head .logo{
    display: block;
    width: 18rem;
}
#head .logo *{
	display: block;
	width: 100%;
}

.menu-wrapper {
  position: relative;
  display: inline-block;
}

.menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--orange);
  border-radius: 6rem;
  z-index: 1;
  pointer-events: none;
  transition: none;
  will-change: transform, width;
}

#head .menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem 0rem;
  list-style: none;
  padding: 0rem 0.5rem;
  background: rgb(255 83 75 / 5%);
  border-radius: 2rem;
  z-index: 2;
  margin: 0;
}

#head .menu > li {
  position: relative;
  z-index: 2;
  border-radius: 2rem;
  transition: color 0.3s;
  width: -webkit-fill-available;
}

#head .menu > li a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  z-index: 3;
  position: relative;
  display: block;
  padding: 1rem 1.6rem;
  white-space: nowrap;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 3rem;
}
#head .menu > li:hover a {
	background-color: rgb(254 69 26 / 10%);
}

/* ITEM ACTIVO (solo color) */
#head .menu > li.active a {
  color: #ffffff;
}



@media(min-width: 992px){

	#head{
	    padding-block: 0.6rem;
	    padding-inline: var(--px);
	}
	
	#head .logo{
	width: 388px;
	}


}



/****************************************************/
/* MAIN */
/****************************************************/

#main{
	padding-top: var(--header-height)
}

/****************************************************/
/* FOOTER */
/****************************************************/


#footer{
    padding-block: 3rem;
}

#footer .logo{
    margin: 0 0 2rem;
    width: 173px;
    display: block;
}

.store-links{
    gap: 0.8rem;
    margin-bottom: 2rem;
    align-items: center;
}
.store-links a{
	border-radius: 3rem;
	transition: all .3s;
}
.store-links a svg{
    display: block;
    width: auto;
    height: 35px;
	transition: all .3s;
}

.store-links a:hover svg{
	color: #ffffff;
}


.store-links a:hover svg{}
#footer ul.legal-menu{
    padding: 0;
    gap: 1rem;
    margin-block: 2rem;
}
#footer ul.legal-menu li{
    list-style: none;
}
#footer ul.legal-menu li a{
    text-decoration: none;
    display: block;
    padding: 0.4rem;
}
#footer ul.legal-menu li:hover a{}


#footer .logos{
	gap: 0.5rem;
	margin-block: 2rem;
}
#footer .logos img{
	object-fit: contain;
	height: 3.3rem;
	width: auto;
}

.svg-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.animated-pattern path {
  animation: floatYRotate 6s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes floatYRotate {
  0% {
    transform: translateY(0px)  rotate(0deg);
  }
  100% {
    transform: translateY(22px) rotate(2deg);
  }
}


.social-links{
    padding: 0;
    gap: 1.5rem;
    justify-content: center;
}
.social-links li{
	list-style: none;
}
.social-links li a{
	text-decoration: none;
	white-space: nowrap;
	font-size: 0.9rem;
}
.social-links li a img{
	transition: all .3s;
	transform: scale(1);
	margin-left: 0.2rem;
}
.social-links li a:hover img{
	transform: scale(1.1);
}

.footer-menu{}
.footer-menu li{
	list-style: none;
}
.footer-menu li a{
	text-decoration: none;
}
.footer-menu li.current-menu-item a,
.footer-menu li a:hover{
	text-decoration: underline;
}

@media (max-width: 767px){
	.social-links{
		flex-wrap: wrap;
		padding-left: 1rem;
	}
	.social-links li{
		flex-wrap: wrap;
		text-align: left;
		margin-bottom: 0.4rem;
	}
}

@media(min-width: 992px){
	#footer{
		padding-block: 4rem 4rem;
		font-size: 14px;
	}
	.store-links{
		margin-bottom: 0;
		margin-inline: 1rem;
	}
	.store-links a {
	    border-radius: 3rem;
	    transition: all .3s;
	}
	.store-links a svg{
		height: 40px
	}
	#footer ul.legal-menu{
		margin-top: 4rem;
	}
}

/****************************************************/
/* BUTTONS */
/****************************************************/


.has-buttons a ,.button, a.button, button{
	border-radius: 2rem;
	font-size: 1rem;
	font-weight: 500;
	padding: 1rem 2rem;
	display: inline-block;
	background-color: var(--secondary);
	cursor: pointer;
	line-height: 1;
}
.has-buttons a,
.button.arrow-button{
	background-color: #ff4519 !important;
	color: var(--white);
	padding-right: 3rem;
	position: relative;
	text-transform: uppercase;
	padding-block: 0.8rem;
	transition: all .4s;
	letter-spacing: 1.5px;
}

.has-buttons a:hover,
.button.arrow-button:hover{
	font-weight: 600;
	letter-spacing: 1.4px;
}
.has-buttons a:after,
.button.arrow-button:after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 3rem;
	background: url(img/svg/arrow_right_bottom.svg) no-repeat center center;
	background-size: 1rem;
}

@media (min-width: 992px){
	.has-buttons a ,.button, a.button, button{
	}
}


/****************************************************/
/* HOME */
/****************************************************/

.hero-section{
}
.hero-section .content.text-featured{
    font-size: 1em;
    font-weight: 400;
}
.hero-section .content.text-featured p:last-child{
	margin-bottom: 2em;
}
.hero-section .content .illustration{
	
}


#hero-text-content,
#hero-text-img{
	position: relative;
	top: 10px;
}



.feature{
    padding: 1.9rem 1rem 0.8rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}
.feature .number{
    font-weight: bold;
    font-size: 3.4rem;
    padding-top: 0.4rem;
    line-height: 1;
    font-family: var(--heading-font);
    min-width: 4.6rem;
    -webkit-font-smoothing: antialiased;
    text-align: center;
}
.feature .content{}
.feature .content .title{
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 992px){
	.feature{
    padding-inline: 2rem;
    font-size: 1.1rem;
}
	.feature .number{
    font-size: 5rem;
    min-width: 4rem;
    text-align: left;
}
	.feature .content{
    font-size: 1.1rem;
}
	.feature .content .title{
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
}

.collapse-list{
	padding: 0;
}
.collapse-list > li{
	list-style: none;
	border-bottom: 1px solid;
}
.collapse-list > li .trigger{
	position: relative;
	transition: all .5s;
	font-weight: bold;
	font-size: 1.3rem;
	padding: 1.4rem 3rem 1.6rem 0;
	margin: 0;
	cursor: pointer;
}
.collapse-list > li:not(.expanded) .trigger:hover{
	color: var(--primary);
}
.collapse-list > li.expanded .trigger{
	color: var(--primary);
	font-weight: 700;
}
.collapse-list > li .trigger:after{
	content: '';
	background: url(img/svg/arrow_right.svg) no-repeat center center;
	background-size: 100%;
	position: absolute;
	right: 0;
	top:50%;
	transform: translateY(-50%) rotate(45deg);
	width: 2.7rem;
	aspect-ratio: 1;
	transition: all .4s;
}
.collapse-list > li:hover .trigger:after{}
.collapse-list > li.expanded .trigger:after{
    transform: translateY(-50%) rotate(-45deg);
}
.collapse-list > li .collapse-content{}

.item-list ul{
	margin-bottom: 1.5rem;
}


	.hero-section{
    text-align: center;
}
	
	.hero-section .h1{
		font-size: 3.8rem;
		margin-bottom: 0.3em;
		line-height: 1;
	}

@media(min-width: 992px){
	.hero-section{
    text-align: left;
}
	
	.hero-section .h1{
		font-size: 7.5rem;
		margin-bottom: 1rem;
		line-height: 0.9;
	}
	
	.store-links-img a img{
		transition: all .3s ease;
	}
	.store-links-img a:hover img{
		transform: scale3d(1.1,1.1,1);
	}
	.hero-section .store-links-img{
		justify-content: flex-start;
	}
	.hero-section .store-links-img a{
		max-width: 200px;
	}

}

@media (min-width: 1440px){
	
	.hero-section .content.text-featured {
	    font-size: 1.2em;
	}
}




/****************************************************/
/* AFEATURES */
/****************************************************/


@media (max-width: 991px){

.afeatures{}
.afeatures .thumb{
	display: block;
	margin-bottom: 2rem;
}
.afeatures .afaq{}
.afeatures .afaq .trigger{
    position: relative;
    padding: 1rem 0;
    font-weight: 500;
    font-size: 1.2rem;
    padding-right: 3rem;
}
.afeatures .afaq .trigger span{
	position: absolute;
	right: 0;
	width: 1.4rem;
	border: 1px solid var(--primary);
	aspect-ratio: 1;
	border-radius: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	top: 1.8rem;
}
.afeatures .afaq .trigger span:before{
	content: '';
	width: 60%;
	height: 1px;
	background-color: var(--primary);
}
.afeatures .afaq .trigger span:after{
	content: '';
	position: absolute;
	transform: translate(-50%) rotate(90deg);
	left: 50%;
	width: 60%;
	height: 1px;
	background-color: var(--primary);
	transition: all .3s;
}
.afeatures .afaq.expanded .trigger span:after{
	transform: translate(-50%) rotate(90deg) scale(0);
}
.afeatures .afaq .content{}
}

@media (min-width: 992px){
	
	.afeatures{
	    position: relative;
	}
	.afeatures .thumb{
		display: block;
		margin: auto;
		width: 100%;
	}
	.afeatures .afaq{
		position: absolute;
		z-index: 1;
		width: 390px;
		font-size: .9rem;
	}
	.afeatures .afaq.left{
		padding-right: 3rem;
		text-align: right;
	}
	.afeatures .afaq.right{
		padding-left: 3rem;
		width: 350px;
	}

	.afeatures .afaq > *{
		opacity: 0;
		transition: all .3s;
		display: block;
		pointer-events: none;
	}
	.afeatures .afaq:hover > *{
		pointer-events: all;
	}
	.afeatures .afaq:hover > *{
		opacity: 1;
	}

	.afeatures .afaq:before,
	.afeatures .afaq:after{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		aspect-ratio: 1;
		border-radius: 50%;
		width: 28px;
		transition: all .3s;
	}
	
	.afeatures .afaq.left:before,
	.afeatures .afaq.left:after{
		left: auto;
		right: 0;
	}
	
	.afeatures .afaq:hover:before{
		border-color: var(--primary)
	}
	.afeatures .afaq:hover:after{
		 background-color: var(--primary)
	}
	
	.afeatures .afaq:before{
		background-color: transparent;
		border: 1px solid #C0CADF;
	}
	.afeatures .afaq:after{
		background-color: #C0CADF;
		transform: scale(0.7);
	}
	
	.afeatures .afaq .trigger{
	    position: relative;
	    padding: 0.5rem 0 1.1rem;
	    font-weight: bold;
	}
	.afeatures .afaq .content{}
	
	#ft-bicis{
		width: 630px;
		position: relative;
		left: -40px;
	}
	#ft-bicis .afaq:nth-child(2){
		left: -16%;
		top: -3%;
	}
	#ft-bicis .afaq:nth-child(3){
		left: -34%;
		top: 25%;
	}
	#ft-bicis .afaq:nth-child(4){
		left: 82%;
		top: -1%;
	}
	#ft-bicis .afaq:nth-child(5){
		left: 87%;
		top: 34%;
	}
	#ft-bicis .afaq:nth-child(6){
		left: 101%;
		top: 70%;
	}
	#ft-bicis .afaq:nth-child(7){
		left: 100%;
		top: 69%;
	}
	#ft-bicis .afaq:nth-child(8){
		left: 10%;
		top: 10%;
	}
	#bicis .thumb{}
	
	/* RECARGA */
	
	
	#ft-recarga{
		width: 520px;
	}
	#ft-recarga .afaq:nth-child(2){
		left: -38%;
		top: 9%;
	}
	#ft-recarga .afaq:nth-child(3){
		left: -59%;
		top: 45%;
	}
	#ft-recarga .afaq:nth-child(4){
		left: 80%;
		top: 1%;
	}
	#ft-recarga .afaq:nth-child(5){
		left: 77%;
		top: 26%;
	}
	#ft-recarga .afaq:nth-child(6){
		left: 81%;
		top: 53%;
	}
}



/****************************************************/
/* TARIFAS */
/****************************************************/

#tarifas{}

.tarifa{
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    background: #FAF8F8;
    margin-bottom: 1.4rem;
    text-align: left;
}
.tarifa label{
    font-size: 1.6rem;
}
.tarifa .price{
	color: var(--primary);
	font-family: var(--heading-font);
	font-size: 4.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 1rem;
}

@media (min-width: 992px){
	
	#tarifas{}

	.tarifa{}
	.tarifa label{}
	.tarifa .price{}
}

/****************************************************/
/* CONOCE BADAJOZ */
/****************************************************/

#conoce-badajoz .content .dec{
	bottom: 0;
	left: 50%;
	transform: translate3d(-50%,-50%,0);
	width: 90px;
	height: auto;
	position: absolute;
}

#conoce-badajoz .content{
	position: relative;
	padding-bottom: 90px;
}

.ft-bd{
    border-radius: 20px;
    border: 2px solid #FF534B;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 5px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    text-decoration: none;
}
.ft-bd img{
	width: auto;
	height: 50px;
}

@media (min-width: 992px){
		
	#conoce-badajoz .content .dec{
	}
	#conoce-badajoz .content{
	}
	
	.ft-bd{
	padding-block: 4rem;
	margin-block: 4rem;
	transition: all .3s;
	}
	.ft-bd:hover{
		background-color: rgb(255 83 74 / 20%);
	}
	.ft-bd img{
		height: 5rem;
	}
	
}


/****************************************************/
/* MAPA */
/****************************************************/


#mapa iframe{
	position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 5;
    min-height: 300px;
    max-width: 100%;
    pointer-events: auto;
    border: none;
}
@media (min-width: 992px){
	
	#mapa iframe{
		min-height: 400px;
        max-height: 50vh;
        width: 100%;
	}
}

/****************************************************/
/* EMPIEZA A PEDALEAR */
/****************************************************/

#empieza-a-pedalear{
    overflow: hidden;
}
#empieza-a-pedalear .store-links{}

#empieza-a-pedalear .svg-background{}
#empieza-a-pedalear .app-img{}

#empieza{}

@media (min-width: 992px){

	#empieza-a-pedalear{
	padding-block: 1rem 2rem;
	}
	#empieza-a-pedalear .app-img{
    width: 280px;
    margin: auto;
}
	#empieza-a-pedalear .svg-background{
    top: 50%;
    transform: translate(-50%,-50%);
    left: 50%;
    bottom: inherit;
}
	
	#empieza{
    width: 28rem;
}
	
}
