/* Neulis Neue Bold */
@font-face {
	font-family: "Neulis Neue";
	src: url("/fonts/neulis-neue-bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
}

/* Neulis Sans Medium */
@font-face {
	font-family: "Neulis Neue";
	src: url("/fonts/neulis-sans-medium.otf") format("opentype");
	font-weight: 500;
	font-style: normal;
}

/* Neulis Sans Regular */
@font-face {
	font-family: "Neulis Sans";
	src: url("/fonts/neulis-sans-regular.otf") format("opentype");
	font-weight: 400; /* Regular siempre es 400 */
	font-style: normal;
}

a,
a:hover,
a:active,
a:focus,
a:visited {
	cursor: pointer;
	text-decoration: none;
	transition: 0.3s;
}

body {
	overflow-x: hidden !important;
	width: 100vw;
	touch-action: pan-y;
}

* {
 	font-family: "Neulis Sans", sans-serif!important;
	font-weight: 400!important;
}

p

/* Botones en Medium */
.btn {
	 font-family: "Neulis Neue", sans-serif!important;
	font-weight: 500!important;
}

/* Títulos en Bold */
h1,
h2,
h3 {
	 font-family: "Neulis Neue", sans-serif!important;
	font-weight: 700!important;
}

.c-primary {
	background-color: #7fc6ba !important;
}

.c-secondary {
	background-color: #f5f5f5 !important;
}

.c-tertiary {
	background-color: #f3bb02 !important;
}

.btn-primary {
	background-color: #212121 !important;
	border-color: #212121 !important;
	color: white;
}

.nav-link {
	color: #000000;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	background-color: #f3bb02;
}

.nav-link:focus,
.nav-link:hover {
	background-color: #333;
	color: white;
}

.btn {
	padding: 13px 20px;
}

/* hero */
.hero .container {
	border-radius: 25px;
}

.hero .col-lg-6 h1,
.hero .col-lg-6 p {
	color: white;
}

/* header */
.navbar-brand {
	font-weight: bold;
	font-size: 1.4rem;
}

header {
  position: relative;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, 
              box-shadow 0.3s ease, 
              padding 0.3s ease;
	background-color: #F5F5F5;
    padding: 13px 0px;
}

/* Header al hacer scroll */
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff; /* fondo blanco */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 8px 0px;
}


/* Links */
.navbar-nav .nav-link {
	margin: 0 8px;
	color: #000;
}
.navbar-nav .nav-link:hover {
	color: #27a59a;
	background-color: transparent;
}

/* Botones */
.btn-ingresar {
	background-color: #7fc6ba;
	border: 1px solid #7fc6ba;
	color: #fff;
}
.btn-ingresar:hover {
	background-color: white;
	border-color: #212121;
	color: #212529;
}

.btn-registrarse {
	background-color: #212121;
	color: #fff;
}
.btn-registrarse:hover {
	background-color: #333;
	color: #fff;
}

/* Links del offcanvas */
.offcanvas .nav-link {
	padding: 12px 0;
	border-bottom: 1px solid #eaeaea;
	font-weight: 500;
	background-color: transparent !important;
}
.offcanvas .nav-link:last-child {
	border-bottom: 1px solid #e6e6e6;
}

.offcanvas {
	border-top-left-radius: 32px;
	border-bottom-left-radius: 32px;
}

/* Botones */
.btn-login {
	background-color: #80c3b5;
	color: #fff;
	font-weight: 500;
	border-radius: 8px;
	padding: 6px 16px;
}
.btn-login:hover {
	background-color: #6ab2a4;
	color: #fff;
}

.btn-register {
	background-color: #111;
	color: #fff;
	font-weight: 500;
	border-radius: 8px;
	padding: 6px 16px;
	margin-left: 8px;
}
.btn-register:hover {
	background-color: #333;
	color: #fff;
}

/* features */
.feature-card {
	background: #f5f5f5;
	border-radius: 12px;
	padding: 20px;
	padding-bottom: 0px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.feature-card:hover {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.301);
	transform: translateY(-3px);
}

.feature-header {
	margin-bottom: 15px;
}

.feature-header .text-body-emphasis {
	margin-right: 20px;
}

@media (max-width: 570px) {
	.step-number {
		padding: 15px 7px !important;
		font-size: 22px !important;
	}
}

.step-number {
	background: #f3bb02; /* amarillo */
	color: white;
	font-weight: bold!important;
	border-radius: 15px;
	padding: 17px 20px;
	font-size: 35px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 60px;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.feature-card:hover .step-number {
	background-color: #212529;
}

/* features-title */
.features-title .feature-icon-small {
	background: #f3bb02;
	width: fit-content;
	padding: 10px;
	border-radius: 8px;
}

.features-title .row {
	border-radius: 25px;
	padding-left: 20px;
	padding-right: 20px;
}

.features-title .row .col .bg {
	background-color: white;
	padding: 20px;
	height: 100%;
	border-radius: 20px;
}

@media (max-width: 570px) {
	.features-title h2,
	.features-title p {
		text-align: center;
	}
}

/* categorías */
.categories .nav button img {
	background-color: #d9d9d9;
	padding: 10px;
}

.categories .nav-pills .nav-link.active .img-fluid,
.nav-pills .show > .nav-link .img-fluid {
	background-color: white;
}

.categories .box-img {
	padding: 10px;
	background-color: #f5f5f5;
	border-radius: 20px;
}

.categories .nav-link {
	background-color: #f5f5f5;
}

.categories .nav-link:hover {
	color: #333;
	opacity: 0.9;
	transition: 0.3s;
}

.custom-swiper-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #28a745;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	font-family: "bootstrap-icons" !important; /* 👈 MUY IMPORTANTE */
	font-style: normal;
	font-weight: normal;
	line-height: 1;
}

.swiper-button-next.custom-swiper-btn,
.swiper-button-prev.custom-swiper-btn {
	background-color: #7fc6ba;
	border-color: #7fc6ba;
}

/* posiciones */
.swiper-button-prev.custom-swiper-btn {
	left: -65px;
}
.swiper-button-next.custom-swiper-btn {
	right: -65px;
}

/* Flecha izquierda */
.swiper-button-prev.custom-swiper-btn::before {
	content: "\F12C"; /* Codepoint de bi-arrow-left-short */
	font-size: 28px;
	color: white;
}

/* Flecha derecha */
.swiper-button-next.custom-swiper-btn::before {
	content: "\F135"; /* Codepoint de bi-arrow-right-short */
	font-size: 28px;
	color: white;
}

.swiper-button-disabled {
	background: transparent !important;
	opacity: 0.8 !important;
}

/* Estado deshabilitado */
.swiper-button-disabled {
	opacity: 0.6;
	border-color: #ccc !important;
}
.swiper-button-disabled::before {
	color: #ccc !important;
}

.swiper-navigation-icon {
	display: none;
}

/* reviews */
.reviews .c-secondary {
	border-radius: 25px;
	padding: 70px;
}

.reviews h2 > span {
	color: #7fc6ba;
}

.reviews h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #222;
}

.reviews .highlight {
	color: #6ec1b6;
}

.review-card {
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	min-height: 180px; 
}

.review-text {
	/* font-style: italic; */
	color: #333;
	font-size: 16px;
}

.review-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.plans .price-footer h3{
	font-size: 35px;
}

footer .text-decoration-underline:hover{
	color: #27a59a!important;
}

@media (max-width: 570px) {
	.reviews .c-secondary {
		padding: 20px;
	}
	.reviews h2 {
		text-align: center;
		font-size: 26px;
		margin-top: 20px;
	}
}

.stars {
	color: #ffd700;
	font-size: 14px;
}

.custom-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #6ec1b6 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.custom-btn i {
	color: #fff;
	font-size: 30px;
	display: flex;
}

/* plans */
.pricing-card {
	border-radius: 15px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}
.pricing-card h5 {
	font-weight: bold;
	font-size: 25px;
}
.pricing-card h5 i {
	color: #f3bb02;
	font-size: 19px;
}
.plans .highlight {
	border: 5px solid #f2c200;
	position: relative;
}
.plans .highlight::before {
	content: "Más elegido";
	position: absolute;
	top: 27px;
	right: 0;
	background: #f2c200;
	color: #000;
	font-size: 16px;
	font-weight: normal;
	padding: 7px 10px;
	border-radius: 5px;
	border-bottom-right-radius: 0px;
	border-top-right-radius: 0px;
}
.btn-custom {
	background-color: #6fc3b2;
	color: #fff;
	font-weight: bold;
}
.plans .btn-green a {
	font-size: 16px;
}

.table .table-light tr th {
	background-color: #f5f5f5;
	padding: 20px;
	font-weight: 500;
}

.icon-yes {
	color: #7fc6ba;
}

.icon-no {
	color: #ff6969;
}

.table-responsive {
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.pricing-table {
	table-layout: fixed;
	width: 100%;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
	width: 30%;
	padding: 10px 20px;
	white-space: nowrap;
}

.pricing-table th:not(:first-child),
.pricing-table td:not(:first-child) {
	width: 20%;
	border-left: 1px solid #e6e6e6;
}

/* banner */
.banner-wrapper {
	background-size: cover;
	width: 100%;
	height: auto;
	aspect-ratio: 2048 / 671;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-position: center center;
}

.banner-text {
	color: #fff;
	max-width: 500px;
	padding: 40px;
}

.banner-text h2 {
	font-size: 1.8rem;
	line-height: 1.3;
}

.banner-text p {
	font-size: 1.1rem;
	margin: 10px 0 20px;
}

.banner-text .btn {
	padding: 12px 20px;
	font-weight: bold;
	border-radius: 8px;
}

/* cta */
.banner-whatsapp .banner-wrapper {
	background-size: cover; /* asegura que ocupe todo el ancho */
	width: 100%;
	height: auto;
	aspect-ratio: 2048 / 780; /* relación de la imagen original */
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-position: center center;
	justify-content: end;
}

.banner-whatsapp .text-cta .btn:hover {
	background-color: #7fc6ba;
	color: white !important;
}

.banner-whatsapp .text-cta .btn:hover i {
	color: white !important;
}

.banner-whatsapp .text-cta .btn i {
	font-size: 20px;
	color: #7fc6ba;
}

.text-cta {
	color: #212121;
	max-width: 500px;
	padding: 40px;
	margin-right: 100px;
	margin-top: 50px;
}

/* blog */

.swiper-wrapper {
	align-items: stretch;
	height: auto;
}

.swiper-slide {
	height: auto;
}

.blog-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.card-text {
	flex-grow: 1;
}

.blog-card {
	background-color: #f5f5f5;
	padding: 10px;
}

.blog-card .card-img-wrapper {
	overflow: hidden;
	border-radius: 10px;
}

.blog-card img {
	transition: transform 0.6s ease;
}

.blog-card:hover img {
	transform: scale(1.1);
}

.blog .btn-group .btn-see {
	background-color: #6ec1b6;
	border-color: #6ec1b6;
	color: white;
}

.btn-group {
	display: block;
}

.blog-card::after {
	content: "";
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236ec1b6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'%3E%3C/line%3E%3Cpolyline points='7 7 17 7 17 17'%3E%3C/polyline%3E%3C/svg%3E");
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateX(-5px);
}

.blog-card:hover::after {
	opacity: 1;
	transform: translateX(0);
}

.blog .btn-group .btn-dark:hover {
	background-color: #6ec1b6;
	color: white !important;
}

.blog .btn-group .btn-see:hover {
	background-color: #212529;
	border-color: #212529;
}

/* footer */
footer.footer {
	background-color: #212121 !important;
}

/* hero */
.hero .img-float {
	position: absolute;
}

.hero .img-float.float-02 {
	right: 0px;
	top: 50%;
}

.hero .img-float.float-03 {
	bottom: 0px;
}

.hero .img-float.float-04 {
	top: -150px;
}

.btn-dark:hover {
	background-color: white;
	border-color: white;
	color: #212121 !important;
	/* border: 1px solid #212121; */
}

.btn-dark a,
.btn-green a {
	font-size: 18px;
}

.btn-green a:hover {
	background-color: #212121 !important;
}

.accordion-button:not(.collapsed) {
	background-color: #f5f5f5;
	color: #6ec1b6;
}

.accordion-button {
	font-weight: bold;
	background-color: #f5f5f5;
}

.accordion-item,
.accordion-header {
	border: 0;
}

.accordion-button:focus {
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	color: #6ec1b6;
}

@media (max-width: 570px) {
	.hero .bg-img {
		background: url("/img/landing-new/portada-web-mobile.png") !important;
		background-size: cover !important;
		background-repeat: no-repeat !important;
		align-items: start !important;
		height: 100vh;
	}
	.hero .col-lg-6 h1 {
		font-size: 28px;
	}
	.hero .col-lg-6 p,
	.hero .col-lg-6 button {
		font-size: 16px;
	}
	.hero .col-lg-6 h1,
	.hero .col-lg-6 p {
		text-align: center;
	}
	.img-float {
		top: 13rem !important;
	}
	.img-float.float-03 {
		top: 24rem !important;
	}
	.categories .nav-link {
		display: inline-grid;
	}
	.categories .nav-link img {
		margin: 0 auto !important;
	}
	.swiper-button-prev.custom-swiper-btn {
		left: 0px;
	}
	.swiper-button-next.custom-swiper-btn {
		right: 0px;
	}
	.blog .btn-group .btn {
		width: 100%;
		margin-bottom: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.img-float {
		animation: none !important;
		transition: none !important;
	}
}

/* rendimiento */
.img-float {
	position: absolute;
	z-index: 30;
	max-width: 150px;
	will-change: transform;
	pointer-events: none;
}

@keyframes float-bob1 {
	0% {
		transform: translateY(0px) translateX(0px) rotate(0deg);
	}
	25% {
		transform: translateY(-14px) translateX(6px) rotate(-1deg);
	}
	50% {
		transform: translateY(0px) translateX(10px) rotate(0deg);
	}
	75% {
		transform: translateY(12px) translateX(6px) rotate(1deg);
	}
	100% {
		transform: translateY(0px) translateX(0px) rotate(0deg);
	}
}

@keyframes float-bob2 {
	0% {
		transform: translateY(0px) translateX(0px) rotate(0deg);
	}
	25% {
		transform: translateY(10px) translateX(-6px) rotate(1deg);
	}
	50% {
		transform: translateY(0px) translateX(-12px) rotate(0deg);
	}
	75% {
		transform: translateY(-10px) translateX(-6px) rotate(-1deg);
	}
	100% {
		transform: translateY(0px) translateX(0px) rotate(0deg);
	}
}

@keyframes float-bob3 {
	0% {
		transform: translateY(0px) translateX(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) translateX(-9px) rotate(-2deg);
	}
	100% {
		transform: translateY(0px) translateX(0px) rotate(0deg);
	}
}

@keyframes float-rotate {
	0% {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

.float-01 {
	top: 12%;
	left: 6%;
	animation-name: float-bob1;
	animation-duration: 5.8s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-delay: 0s;
}

.float-02 {
	top: 28%;
	right: 6%;
	animation-name: float-bob2;
	animation-duration: 6.6s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-delay: 0.6s;
}

.float-03 {
	bottom: 14%;
	left: 10%;
	animation-name: float-bob3;
	animation-duration: 7.2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-delay: 0.9s;
}

.float-04 {
	animation-name: float-rotate;
	animation-duration: 20s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.marquee {
	background-color: #212121;
}

.marquee__item {
	color: white;
	position: relative;
}

.marquee__content {
	animation: scrolling 40s linear infinite;
	gap: 85px !important;
}

.marquee__item::after {
	content: "";
	width: 6px;
	height: 6px;
	background: #f1b30f;
	border-radius: 50%;
	display: inline-block;
	margin-left: 12px;
	margin-right: 12px;
}

.marquee__item:not(:last-child)::after {
	content: "";
    position: absolute;
    right: -59px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #f1b30f;
    border-radius: 50%;
}

.marquee__content li {
	font-size: 14px;
}

.swiper-pagination-bullet-active {
	background-color: #27a59a;
}

@keyframes scrolling {
	0% {
		transform: translate(0);
	}

	to {
		transform: translate(-100%);
	}
}

@media (max-width: 991px) {
	.img-float {
		max-width: 140px;
	}
	.float-01 {
		left: 2%;
		top: 8%;
	}
	.float-02 {
		right: 2%;
		top: 20%;
	}
	.float-03 {
		right: 2%;
		top: 18%;
	}
	.float-04 {
		display: none;
	}
}

@media (max-width: 570px) {
	.btn {
		font-size: 16px !important;
	}
	.pricing-table th:first-child,
	.pricing-table td:first-child {
		font-size: 12px;
		white-space: wrap;
	}
	.table .table-light tr th {
		font-size: 13px;
	}
	.banner .banner-wrapper {
		background: url("/img/landing-new/banner-01-mobile.png") !important;
		/* background-size: cover !important; */
		background-repeat: no-repeat !important;
		align-items: end !important;
		background-position: center center!important;
		min-height: 562px;
	}
	.banner-text h2 {
		font-size: 22px;
		text-align: center;
	}
	.banner-text p {
		font-size: 16px;
		text-align: center;
	}
	.banner-whatsapp {
		padding-left: 20px;
		padding-right: 20px;
	}
	.banner-whatsapp .banner-wrapper {
		background: url("/img/landing-new/cta-contacto-mobile.png") !important;
		/* background-size: cover !important; */
		background-repeat: no-repeat !important;
		align-items: end !important;
		background-position: center center!important;
		min-height: 653px;
	}
	.text-cta {
		margin-top: 0px;
		margin-right: 0px;
	}
	header.fixed{
		padding-top: 35px;
	}
}

@media(max-width: 420px){
	.banner-text{
		/* padding: 29px; */
	}
}