/*=============================================1. VARIABLES GLOBALES=============================================*/ 
:root {
	--background-color: #1e272e;
	--surface-color: #1b262c;
	--default-color: rgba(255, 255, 255, 0.85);
	--heading-color: #e0e9f2;
	--accent-color: #f1c40f; /*verde #1abc9c */
	--contrast-color: #ffffff;
	--soft-glass-bg: rgba(0, 0, 0, 0.45);
	--soft-glass-border: rgba(255, 255, 255, 0.15);
}

/* ============================================= 2. RESET & BASE ============================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Roboto", sans-serif !important;
	background-color: var(--background-color);
	color: var(--contrast-color) !important;
	overflow-x: hidden;
}

html, body {
    overflow-x: hidden !important;
}


/* ============================================= 3. UTILIDADES GLOBALES ============================================= */
.color-blanco {
	color: #fff !important;
}

.text-teal {
	color: var(--accent-color) !important;
}

.bg-brand {
	background-color: #f1c40f;
}

.bg-brandgreen {
	background: linear-gradient(90deg, rgba(243, 156, 18,1.0));
}

.bg-darkbrand {
	background-color: #1e272e;
}

.color-verde {
	color: #f39c12 !important
}

.card-soft {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
}

.btn-custom {
	color: #fff !important;
	border: 1px solid #fff !important;
}

.tamano-medio {
	font-size: 14px !important;
}

.tamano-grande {
	font-size: 18px !important;
}

/* Divider */
.divider-x {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Formularios */
.form-dark .form-control,
.form-dark textarea {
	background: #0e1a27;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-dark .form-control::placeholder,
.form-dark textarea::placeholder {
	color: #aab6c1;
}

/* Icons list */
.list-check i {
	color: var(--accent-color);
	margin-right: .5rem;
}

/* Logos */
.logo-mobile {
	display: none;
}

.logo-desktop {
	display: inline-block;
}

/* RESPONSIVE LOGOS */
@media (max-width: 768px) {
	.logo-desktop {
		display: none;
	}

	.logo-mobile {
		display: inline-block;
	}
}



/* ============================================================ 4. LAYOUT GLOBAL Fondo, contenedores, secciones y espaciado general ============================================================ */
.section {
	position: relative;
	width: 100%;
	padding: 80px 0;
	z-index: 1;
}

.section-title h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: .5rem;
	color: var(--heading-color);
}

.section-title .description-title {
	font-size: 1.1rem;
	opacity: .8;
}

/* ============================================================ 5. NAVBAR PREMIUM Fijo, con blur y hover moderno ============================================================ */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
	padding: 12px 0;
	background: rgba(3, 17, 25, 0.65);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: all .3s ease-in-out;
}

.navbar.scrolled {
	background: rgba(3, 17, 25, 0.9);
}

/* Links */
.navbar .nav-link {
	color: #fff !important;
	font-weight: 500;
	padding: 6px 14px !important;
	transition: .3s;
	border-radius: 6px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
	background: rgba(255, 255, 255, 0.12);
	color: var(--accent-color) !important;
}

/* Hamburguesa */
.navbar-toggler {
	border: none !important;
}

.navbar-toggler-icon {
	filter: brightness(100);
}

/* Dropdown */
.navbar .dropdown-menu {
	background: rgba(0, 0, 0, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
}

.navbar .dropdown-item {
	color: #fff;
	transition: .2s;
}

.navbar .dropdown-item:hover {
	background: rgba(255, 255, 255, 0.1);
}


.navbar-toggler {
  border: none !important;
  outline: none !important;
  font-size: 26px;
  color: #fff;
}

.navbar-collapse {
  padding: 20px;
  border-radius: 12px;
}
/* ============================================================ 6. BOTONES MODERNOS ============================================================ */
/* Botón sólido moderno */
.btn-modern {
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	background: var(--accent-color);
	color: #fff !important;
	border-radius: 50px;
	font-weight: 600;
	font-size: .95rem;
	border: none;
	transition: .3s ease;
}

.btn-modern:hover {
	background: #f39c12 !important;
	transform: translateY(-2px);
}

/* Botón outline moderno */
.btn-outline-modern {
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.55);
	color: #fff !important;
	border-radius: 50px;
	font-weight: 600;
	font-size: .95rem;
	transition: .3s ease;
}

.btn-outline-modern:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
	transform: translateY(-2px);
}

/* CTA general */
.cta-button .btn {
	margin-right: 10px;
	margin-bottom: 10px;
}

/* ============================================================ 7. BANNER DOBLE (SECCIÓN 3) ============================================================ */
.banner-duo {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.banner-text {
	font-size: 1.1rem;
	color: #fff;
}

.social-icon {
	font-size: 1.3rem;
	color: #fff;
	transition: .3s;
}

.social-icon:hover {
	color: var(--accent-color);
}

/* ============================================================ RESPONSIVE GENERAL ============================================================ */
@media (max-width: 768px) {
	.section {
		padding: 60px 0;
	}

	.section-title h2 {
		font-size: 2rem;
	}
}

/* ============================================================ 8. HERO PREMIUM (Parallax + Overlay + Glass Card) ============================================================ */
/* Hero contenedor general */
.hero {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 40px 0;
	background-image: url("../img/nuevo/fundevgame.gif");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
}

/* HERO parallax */
.parallax-hero {
	background-attachment: fixed;
}

@media (max-width: 768px) {
	.parallax-hero {
		background-attachment: scroll;
	}
}

/* Overlay oscuro con degradado superior */
.hero-overlay {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
	z-index: 1;
}

/* Contenido real del hero */
.hero .container {
	position: relative;
	z-index: 3;
}

/* ============================================================ CARD DE CONTENIDO (glass premium) ============================================================ */
.hero-card {
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 35px;
	border-radius: 20px;
	
	animation: heroFade 1.2s ease both;
}

/* Animación suave al entrar */
@keyframes heroFade {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================================ TITULO PRINCIPAL ============================================================ */
.hero-title {
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
}

.gradient-text {
	background: linear-gradient(90deg, #f1c40f, #e1b12c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ============================================================ DESCRIPCIÓN ============================================================ */
.hero-description {
	margin-top: 18px;
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
}

/* ============================================================ BOTONES DEL HERO ============================================================ */
.hero .btn-modern,
.hero .btn-outline-modern {
	font-size: .95rem;
}

.hero .btn-outline-modern:hover {
	background: rgba(255, 255, 255, 0.22);
}

/* ============================================================ RESPONSIVE HERO ============================================================ */
/* Tablets */
@media (max-width: 991px) {
	.hero {
		background-size: 70%;
		background-position: center right;
	}

	.hero-card {
		max-width: 100%;
		padding: 28px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.hero {
		min-height: 90vh;
		background-image: url("../img/nuevo/fundevgame-mobile.gif");
		background-size: contain;
		background-position: center bottom;
		padding-bottom: 20px;
	}

	.hero-card {
		background: rgba(0, 0, 0, 0.55);
		border-radius: 18px;
		padding: 24px;
	}

	.hero-title {
		font-size: 1.7rem;
		text-align: center;
	}

	.hero-description {
		text-align: center;
	}

	.cta-button {
		justify-content: center;
	}
}

/* EXTRA pequeño */
@media (max-width: 420px) {
	.hero-title {
		font-size: 1.45rem;
	}
}

/* ============================================================ 9. ABOUT / NOSOTROS — Sección Premium ============================================================ */
.about {
	position: relative;
	z-index: 2;
}

.about .about-content h2 {
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
}

.about .about-content .lead {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 15px;
}

/* ============================================================ IMAGEN ABOUT — contenedor ============================================================ */
.about-image {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.35);
}

/* Sombra suave en la imagen */
.about-image img {
	border-radius: 20px;
	width: 100%;
	height: auto;
	display: block;
}

/* ============================================================ BADGE DE EXPERIENCIA ============================================================ */
.experience-badge {
	position: absolute;
	bottom: 18px;
	right: 18px;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(14px);
	padding: 14px 20px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	animation: badgeFloat 6s ease-in-out infinite;
}

.experience-badge .years {
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1;
	display: block;
}

.experience-badge .text {
	font-size: .8rem;
	opacity: .8;
}

/* Animación flotante */
@keyframes badgeFloat {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-6px);
	}

	100% {
		transform: translateY(0px);
	}
}

/* ============================================================ FEATURES / CARACTERÍSTICAS ============================================================ */
.feature-item {
	background: rgba(255, 255, 255, 0.05);
	padding: 15px 18px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: .3s ease;
}

.feature-item:hover {
	background: rgba(255, 255, 255, 0.10);
	transform: translateY(-3px);
}

.feature-item h5 {
	font-weight: 600;
	margin-bottom: 4px;
}

.feature-item p {
	font-size: .85rem;
	opacity: .85;
}

/* Iconos dentro de los features */
.feature-item i {
	font-size: 1.4rem;
	color: var(--accent-color);
	min-width: 40px;
	text-align: center;
}

/* ============================================================ RESPONSIVE ABOUT ============================================================ */
@media (max-width: 991px) {
	.about .about-content h2 {
		text-align: center;
	}

	.about .about-content p {
		text-align: center;
	}

	.feature-item {
		text-align: center;
		flex-direction: column;
	}

	.feature-item i {
		margin-bottom: 8px;
	}

	.experience-badge {
		bottom: 12px;
		right: 12px;
		padding: 10px 15px;
	}
}

@media (max-width: 768px) {
	.about-image img {
		border-radius: 16px;
	}

	.experience-badge {
		bottom: 10px;
		right: 10px;
		padding: 8px 12px;
	}

	.experience-badge .years {
		font-size: 1.4rem;
	}
}

@media (max-width: 480px) {
	.experience-badge {
		bottom: 8px;
		right: 8px;
		padding: 6px 10px;
	}

	.experience-badge .years {
		font-size: 1.25rem;
	}

	.experience-badge .text {
		font-size: .7rem;
	}
}

/* ============================================ FIX GLOBAL PARA TESTIMONIOS ============================================ */
/* Ajusta el card: más compacto y legible */
.testimonial-item {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 22px 26px !important;
	border-radius: 14px;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Texto más pequeño para evitar desbordes */
.testimonial-item p {
	font-size: 0.95rem !important;
	line-height: 1.45 !important;
	margin-bottom: 12px;
}

/* Ajustes de la estrella */
.testimonial-item .rating i {
	font-size: 0.9rem !important;
	display: none !important;
}

/* Contenedor de la zona de testimonios */
.testimonials-container {
	position: relative;
	z-index: 2;
}

/* Asegurar que el swiper esté alineado y no caiga debajo del texto */
.testimonials-slider {
	margin-top: 20px !important;
	position: relative;
	z-index: 3;
}

/* Flechas deben estar por encima de todo */
.slider-prev,
.slider-next {
	position: relative;
	z-index: 10 !important;
}

/* Wrapper general para acomodar título + flechas + swiper */
.testimonials-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
}

/* Alinea título + flechas en un mismo renglón cuando sea posible */
.testimonials-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	/* si la pantalla es pequeña, se acomoda */
	position: relative;
	z-index: 5;
}

/* Flechas */
.testimonials-nav {
	display: flex;
	gap: 10px;
	align-items: center;
}

/* Asegurar que el swiper no se vaya debajo del texto */
.testimonials-slider {
	margin-top: 10px;
	position: relative;
	z-index: 3;
}


/* Imagen del cliente */
.client-info .client-img {
	width: 45px !important;
	height: 45px !important;
	object-fit: contain !important;
	/* <-- evita deformación */
	border-radius: 6px !important;
	/* antes era circular, ahora queda mejor */
}

/* Nombre y cargo más compactos */
.client-info h6 {
	font-size: 0.95rem !important;
	font-weight: 600 !important;
}

.client-info span {
	font-size: 0.80rem !important;
	opacity: 0.85;
}

/* ============================================ SWIPER — evitar desbordes y superposición ============================================ */

/* ============================================================
   SWIPER – CONFIGURACIÓN DEPURADA Y ESTABLE (FUNDARTE)
============================================================ */

.testimonial-slider {
  overflow: visible;
  position: relative;
}

.swiper {
  overflow: visible !important;
}

.swiper-wrapper {
  display: flex;
  gap: 20px;
  overflow: visible !important;
  padding-bottom: 10px;
}

.swiper-slide {
  background: transparent;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  display: flex;
  transition: transform .35s ease;
}

/* Card interno */
.testimonial-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 22px 26px;
  border-radius: 14px;
}

/* ==============================================
   MOBILE FIX – Evitar cortes y overflow
============================================== */
@media (max-width: 768px) {

  .swiper-wrapper {
    gap: 12px !important;
  }

  .swiper-slide {
    max-width: 100% !important;
    width: 100% !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  /* Evita que el contenido rompa el slide */
  .swiper-slide *,
  .testimonial-item * {
    max-width: 100% !important;
    overflow-wrap: break-word;
  }

  /* Imágenes compactas */
  .client-info .client-img {
    width: 42px !important;
    height: 42px !important;
  }

  .testimonial-slider {
        padding-left: 10px;
        padding-right: 10px;
    }

    .swiper-wrapper {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }

    .swiper-slide {
        margin: 0 !important;
        max-width: calc(100% - 4px) !important;
        width: calc(100% - 4px) !important;
    }
}

/* ============================================
   FIX GLOBAL – Evitar scroll horizontal mobile
   Corrige gx-* y paddings de .container
============================================ */
@media (max-width: 768px) {

    .container,
    .container-fluid {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Elimina el desbordamiento de gx-5 */
    .gx-5 {
        --bs-gutter-x: 1rem !important; /* en lugar de 3rem */
    }

    /* Seguridad extra: ningún slide se sale */
    .swiper-slide {
        max-width: 100% !important;
        width: 100% !important;
    }
}


/* ==============================================
   DESKTOP – Cards más angostos (diseño actual)
============================================== */
@media (min-width: 769px) {
  .swiper-slide {
    max-width: 420px;
  }
}
/* ============================================ NAVEGACIÓN (flechas pequeñas premium) ============================================ */
.slider-prev,
.slider-next {
	width: 38px !important;
	height: 38px !important;
	border-radius: 8px !important;
	background: rgba(255, 255, 255, 0.15) !important;
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
	color: #fff !important;
	transition: 0.25s ease !important;
}

.slider-prev:hover,
.slider-next:hover {
	background: var(--accent-color) !important;
	color: #000 !important;
	transform: translateY(-2px);
}





/* ============================================================ 10. SERVICES — Tarjetas Premium con Hover Avanzado ============================================================ */
.services {
	position: relative;
	z-index: 2;
}

.services .service-header {
	margin-bottom: 60px;
	text-align: center;
}

.services .service-header .service-heading {
	font-size: 2.6rem;
	font-weight: 800;
	color: var(--heading-color);
	line-height: 1.2;
}

.services .service-header .service-heading span {
	display: block;
	color: var(--accent-color);
}

.services .service-header .service-summary p {
	color: rgba(255, 255, 255, 0.75);
	max-width: 750px;
	margin: 10px auto;
	font-size: 1.05rem;
}

/* ============================================================ TARJETAS DE SERVICIOS ============================================================ */
.service-card {
	position: relative;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 45px 35px;
	border-radius: 18px;
	transition: .35s ease;
	overflow: hidden;
	min-height: 330px;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: transparent;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Ícono dentro de la tarjeta */
.service-card .service-icon {
	width: 70px;
	height: 70px;
	background: rgba(26, 188, 156, 0.1);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	transition: .35s ease;
}

.service-card .service-icon i {
	font-size: 34px;
	color: var(--accent-color);
}

.service-card:hover .service-icon {
	transform: scale(1.1);
	background: rgba(26, 188, 156, 0.2);
}

/* TÍTULO */
.service-card h3 {
	font-size: 1.55rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 12px;
	transition: .35s ease;
}

.service-card h3:hover {
	color: var(--accent-color);
}

/* PARRAFO */
.service-card p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

/* ============================================================ BOTÓN FLOTANTE (Esquina superior) ============================================================ */
.service-card .card-action {
	position: absolute;
	top: 0;
	right: 0;
	width: 75px;
	height: 75px;
	background: var(--accent-color);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom-left-radius: 22px;
	transition: .35s ease;
}

.service-card:hover .card-action {
	opacity: 1;
	visibility: visible;
}

.service-card .card-action i {
	font-size: 26px;
}

.service-card .card-action:hover i {
	transform: rotate(45deg);
	transition: .3s ease;
}

/* ============================================================ FONDO CON CLIP-PATH (efecto diagonal premium) ============================================================ */
.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--surface-color);
	clip-path: polygon(70% 0%, 100% 28%, 100% 100%, 0 100%, 0 0);
	opacity: 0;
	transition: .35s ease;
}

.service-card:hover::before {
	opacity: 1;
}

/* FIX: Mantener texto visible durante hover */
.service-card {
	transition: all 0.3s ease;
	position: relative;
	overflow: visible !important;
}

/* Hover limpio sin desplazar contenido */
.service-card:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	background: rgba(255, 255, 255, 0.02);
}

/* Evitar que título y párrafo se muevan */
.service-card h3,
.service-card p {
	transform: none !important;
	opacity: 1 !important;
}

/* Enlaces de servicios: estilo premium */
.service-card h3 a {
	color: var(--teal) !important;
	text-decoration: none !important;
	font-weight: 600;
	transition: color 0.3s ease;
}

.service-card h3 a:hover {
	color: #2de3c5 !important;
	/* un teal más brillante */
}

/* ============================================================ RESPONSIVE SERVICES ============================================================ */
@media (max-width: 992px) {
	.services .service-header .service-heading {
		font-size: 2.2rem;
	}
}

@media (max-width: 768px) {
	.services .service-header .service-heading {
		font-size: 1.9rem;
	}

	.service-card {
		padding: 35px 25px;
		min-height: 300px;
	}

	.service-card .service-icon {
		width: 60px;
		height: 60px;
	}

	.service-card .service-icon i {
		font-size: 30px;
	}

	.service-card h3 {
		font-size: 1.35rem;
	}
}

@media (max-width: 480px) {
	.service-card {
		padding: 28px 20px;
	}

	.service-card .service-icon {
		width: 55px;
		height: 55px;
	}

	.service-card .service-icon i {
		font-size: 28px;
	}

	.service-card h3 {
		font-size: 1.25rem;
	}
}

/* ============================================================ 11. STEPS — Línea vertical + Iconos circulares premium ============================================================ */
.steps {
	position: relative;
	padding: 80px 0;
	z-index: 2;
}

/* CONTENEDOR GENERAL */
.steps-wrapper {
	display: flex;
	flex-direction: column;
	gap: 50px;
	position: relative;
	padding-left: 45px;
}

/* LÍNEA VERTICAL */
.steps-wrapper::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(to bottom, var(--accent-color), transparent);
	opacity: 0.45;
	border-radius: 6px;
}

/* CADA ITEM */
.step-item {
	width: 100%;
	position: relative;
}

/* CONTENIDO */
.step-content {
	display: flex;
	align-items: flex-start;
	gap: 25px;
}

/* ============================================================ ICONO REDONDO ============================================================ */
.step-icon {
	min-width: 55px;
	height: 55px;
	border-radius: 50%;
	background: rgba(26, 188, 156, 0.15);
	border: 2px solid rgba(26, 188, 156, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	font-size: 26px;
	transition: 0.35s ease;
	position: relative;
}

/* efecto glow suave */
.step-icon::after {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: rgba(26, 188, 156, 0.15);
	filter: blur(8px);
	opacity: 0;
	transition: 0.35s ease;
}

/* hover EN EL ITEM COMPLETO */
.step-item:hover .step-icon {
	transform: scale(1.1);
	background: rgba(26, 188, 156, 0.28);
}

.step-item:hover .step-icon::after {
	opacity: 1;
}

/* ============================================================ TEXTO DEL PASO ============================================================ */
.step-info {
	margin-top: 3px;
}

.step-number {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 4px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.step-info h3 {
	font-size: 1.45rem;
	font-weight: 700;
	color: var(--heading-color);
	margin: 0 0 6px 0;
}

.step-info p {
	color: rgba(255, 255, 255, 0.70);
	line-height: 1.55;
	max-width: 700px;
	margin-bottom: 0;
}

/* ============================================ TIMELINE MODERNO (ESTILO B) ============================================ */
.timeline {
	position: relative;
	border-left: 2px solid rgba(243, 156, 18,0.5);
	padding-left: 40px;
	margin-top: 30px;
}

.timeline-item {
	position: relative;
	padding-bottom: 40px;
}

.timeline-marker {
	position: absolute;
	left: -13px;
	top: 4px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid var(--teal);
	background: rgba(243, 156, 18,0.2);
}

.timeline-content {
	padding-left: 10px;
}

.timeline-number {
	font-size: 13px;
	color: var(--teal);
	letter-spacing: 1px;
	font-weight: 600;
}

.timeline-title {
	color: #fff;
	font-size: 22px;
	margin-top: 2px;
	margin-bottom: 6px;
	font-weight: 600;
}

.timeline-content p {
	color: #cfcfcf;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* Hover effect elegante */
.timeline-item:hover .timeline-marker {
	background: var(--teal);
	box-shadow: 0 0 12px rgba(243, 156, 18,0.5);
	transition: 0.3s ease;
	cursor: pointer;
}

.small-icon {
	font-size: 20px;
	color: var(--teal);
	margin-left: 8px;
	opacity: 0.9;
	vertical-align: middle;
	transition: 0.25s ease;
}

/* Efecto sutil al pasar el mouse */
.timeline-item:hover .small-icon {
	opacity: 1;
	transform: scale(1.1);
}

/* ============================================================ RESPONSIVE OPTIMIZADO ============================================================ */
@media (max-width: 992px) {
	.steps-wrapper {
		padding-left: 35px;
	}

	.steps-wrapper::before {
		left: 14px;
	}
}

@media (max-width: 768px) {
	.steps-wrapper {
		padding-left: 25px;
		gap: 40px;
	}

	.steps-wrapper::before {
		left: 10px;
		width: 3px;
	}

	.step-content {
		flex-direction: row;
		gap: 18px;
	}

	.step-icon {
		min-width: 48px;
		height: 48px;
		font-size: 22px;
	}

	.step-info h3 {
		font-size: 1.25rem;
	}

	.step-info p {
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.steps-wrapper {
		padding-left: 20px;
	}

	.step-icon {
		min-width: 42px;
		height: 42px;
		font-size: 20px;
	}

	.step-info h3 {
		font-size: 1.15rem;
	}
}

/* ============================================================ 12. CALL TO ACTION — Diseño Premium con tarjeta flotante ============================================================ */
.call-to-action {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.advertise-1 {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	padding: 45px;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

/* Pequeñas partículas decorativas */
.advertise-1 .decoration .circle-1,
.advertise-1 .decoration .circle-2 {
	position: absolute;
	border-radius: 50%;
	filter: blur(25px);
	opacity: 0.25;
	animation: floatCTA 8s ease-in-out infinite;
}

.advertise-1 .decoration .circle-1 {
	width: 120px;
	height: 120px;
	background: var(--accent-color);
	top: -20px;
	right: -20px;
}

.advertise-1 .decoration .circle-2 {
	width: 180px;
	height: 180px;
	background: #ffffff;
	bottom: -40px;
	left: -40px;
}

/* ANIMACIÓN */
@keyframes floatCTA {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-18px);
	}

	100% {
		transform: translateY(0px);
	}
}

/* ============================================================ LADO IZQUIERDO ============================================================ */
.call-to-action h2 {
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 18px;
	color: var(--heading-color);
}

.call-to-action p {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.80);
	margin-bottom: 25px;
}

/* BADGE */
.call-to-action .badge {
	background: var(--accent-color);
	color: #000;
	font-weight: 700;
	padding: 6px 14px;
	font-size: 0.85rem;
	border-radius: 30px;
	letter-spacing: 0.5px;
}

/* Mini Features */
.call-to-action .features .feature-item {
	background: rgba(255, 255, 255, 0.07);
	padding: 8px 14px;
	border-radius: 10px;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Botón outline del CTA */
.call-to-action .btn-outline {
	border: 1px solid rgba(255, 255, 255, 0.5);
	transition: 0.3s;
}

.call-to-action .btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* ============================================================ IMAGEN DERECHA + TARJETA FLOTANTE ============================================================ */
.content-right img {
	max-width: 100%;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* Tarjeta flotante */
.floating-card {
	position: absolute;
	right: -20px;
	bottom: -20px;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(6px);
	padding: 18px 22px;
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
	display: flex;
	align-items: center;
	gap: 14px;
	animation: floatCTA 7s ease-in-out infinite;
}

/* Icono dentro de la tarjeta */
.floating-card .card-icon {
	width: 52px;
	height: 52px;
	background: rgba(26, 188, 156, 0.25);
	border: 1px solid rgba(26, 188, 156, 0.45);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	color: var(--accent-color);
}

.floating-card .stats-number {
	display: block;
	font-size: 1.6rem;
	font-weight: 800;
	color: #fff;
}

.floating-card .stats-text {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.75);
}

/* ============================================================ RESPONSIVE CTA ============================================================ */
@media (max-width: 992px) {
	.advertise-1 {
		padding: 35px;
	}

	.floating-card {
		right: 10px;
		bottom: 10px;
		transform: scale(0.9);
	}
}

@media (max-width: 768px) {
	.call-to-action h2 {
		font-size: 1.9rem;
	}

	.floating-card {
		position: absolute;
		right: 50%;
		transform: translateX(50%) scale(0.9);
		bottom: 10px;
	}
}

@media (max-width: 480px) {
	.advertise-1 {
		padding: 28px;
	}

	.floating-card {
		transform: translateX(50%) scale(0.8);
		padding: 14px 18px;
	}

	.floating-card .card-icon {
		width: 42px;
		height: 42px;
		font-size: 20px;
	}

	.floating-card .stats-number {
		font-size: 1.3rem;
	}
}

/* ============================================================ 13. BENEFICIOS CLAVE — Cards Premium ============================================================ */
#beneficios {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 2;
}

/* Títulos */
#beneficios h2 {
	font-size: 2.3rem;
	font-weight: 800;
	margin-bottom: 10px;
}

.section-title-min {
	font-size: 1.1rem;
	opacity: .8;
}

/* ============================================================ Cards estilo glass suave ============================================================ */
#beneficios .card-soft {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	padding: 28px;
	border-radius: 18px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(12px);
	transition: 0.35s ease;
	position: relative;
	overflow: hidden;
}

/* Hover elegante */
#beneficios .card-soft:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
	background: rgba(255, 255, 255, 0.10);
}

/* Iconos y títulos */
#beneficios h5 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

#beneficios p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
}

/* Acento teal */
#beneficios h5 i {
	font-size: 1.4rem;
	margin-right: 8px;
	color: var(--accent-color);
}

/* ============================================================ DECORACIÓN INTERNA (brillo en borde) ============================================================ */
#beneficios .card-soft::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 220px;
	height: 220px;
	background: var(--accent-color);
	opacity: 0.15;
	filter: blur(40px);
	border-radius: 50%;
	transition: 0.4s ease;
}

#beneficios .card-soft:hover::before {
	opacity: 0.28;
	transform: scale(1.15);
}

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width: 991px) {
	#beneficios h2 {
		text-align: center;
	}

	#beneficios .section-title-min {
		text-align: center;
		margin-bottom: 15px;
	}
}

@media (max-width: 768px) {
	#beneficios .card-soft {
		padding: 22px;
	}

	#beneficios h5 {
		font-size: 1.1rem;
	}

	#beneficios p {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	#beneficios h2 {
		font-size: 1.9rem;
	}

	#beneficios .card-soft {
		padding: 20px;
		border-radius: 14px;
	}
}

/* ============================================================ 14. FAQ — Accordion Moderno estilo SaaS Premium ============================================================ */
.faq {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 2;
}

/* TITULOS */
.faq h2 {
	font-size: 2.3rem;
	font-weight: 800;
	margin-bottom: 10px;
}

.faq .section-title-min {
	opacity: .8;
	font-size: 1.1rem;
}

/* ============================================================ ACORDEÓN BASE ============================================================ */
.faq .accordion-item {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	margin-bottom: 14px;
	backdrop-filter: blur(12px);
	overflow: hidden;
	transition: 0.3s ease;
}

.faq .accordion-item:hover {
	border-color: rgba(243, 156, 18,1.0);
	/* glow teal suave */
	box-shadow: 0 0 18px rgba(243, 156, 18,0.25);
}

/* ============================================================ BOTÓN DEL ACORDEÓN ============================================================ */
.faq .accordion-button {
	background: transparent;
	color: #fff;
	font-size: 1.05rem;
	font-weight: 600;
	padding: 18px 20px;
	border: none;
	box-shadow: none !important;
	transition: 0.3s ease;
}

/* Texto al pasar hover */
.faq .accordion-button:hover {
	color: var(--accent-color);
}

/* SIN FONDO AL ABRIR */
.faq .accordion-button:not(.collapsed) {
	background: rgba(255, 255, 255, 0.07);
	color: var(--accent-color);
	box-shadow: none;
}

/* ============================================================ ICONO DEL BOTÓN (+ / –) ============================================================ */
/* Ocultamos icono nativo */
.faq .accordion-button::after {
	display: none;
}

/* Nuevo icono */
.faq .accordion-button::before {
	content: "+";
	font-weight: 900;
	font-size: 1.3rem;
	margin-right: 12px;
	color: var(--accent-color);
	transition: 0.3s;
}

/* Cambia a – cuando está abierto */
.faq .accordion-button:not(.collapsed)::before {
	content: "—";
	transform: rotate(180deg);
	color: var(--accent-color);
}

/* ============================================================ CONTENIDO DEL ACORDEÓN ============================================================ */
.faq .accordion-body {
	padding: 18px 22px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	line-height: 1.6;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hover suave dentro del contenido */
.faq .accordion-body:hover {
	background: rgba(255, 255, 255, 0.07);
}

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width: 768px) {
	.faq h2 {
		font-size: 2rem;
		text-align: center;
	}

	.faq .section-title-min {
		text-align: center;
		margin-bottom: 12px;
	}

	.faq .accordion-button {
		font-size: 1rem;
		padding: 16px 16px;
	}

	.faq .accordion-body {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.faq .accordion-button::before {
		font-size: 1.1rem;
	}

	.faq .accordion-item {
		border-radius: 12px;
	}
}

/* ============================================================ 15. CONTACTO RÁPIDO — Formulario & Tarjeta Premium ============================================================ */
#contacto-rapido {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 2;
}

/* Títulos */
#contacto-rapido h2 {
	font-size: 2.3rem;
	font-weight: 800;
	margin-bottom: 8px;
}

#contacto-rapido .section-title-min {
	font-size: 1.1rem;
	opacity: .85;
}

/* ============================================================ CARD-FORM — Formulario ============================================================ */
#contacto-rapido .form-dark {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 35px;
	backdrop-filter: blur(12px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.30);
	transition: .3s ease;
}

#contacto-rapido .form-dark:hover {
	border-color: rgba(26, 188, 156, 0.40);
	box-shadow: 0 0 24px rgba(26, 188, 156, 0.25);
}

/* Labels */
#contacto-rapido label {
	font-size: 0.95rem;
	font-weight: 600;
	opacity: 0.9;
}

/* Inputs */
#contacto-rapido .form-control,
#contacto-rapido select,
#contacto-rapido textarea {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	border-radius: 10px;
	padding: 10px 14px;
	transition: 0.3s ease;
}

/* Focus Glow */
#contacto-rapido .form-control:focus,
#contacto-rapido select:focus,
#contacto-rapido textarea:focus {
	background: rgba(255, 255, 255, 0.10);
	border-color: var(--accent-color);
	box-shadow: 0 0 10px rgba(26, 188, 156, 0.50);
	color: #fff;
}

/* Placeholder */
#contacto-rapido ::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

/* Select text */
#contacto-rapido select option {
	background: #121212;
	color: #fff;
}

/* Buttons en el formulario */
#contacto-rapido .btn-teal {
	flex: 1;
	font-size: 1rem;
	padding: 12px;
}

#contacto-rapido .btn-outline-light {
	flex: 1;
	font-size: 1rem;
	border-radius: 35px;
}

/* ============================================================ TARJETA LATERAL — Beneficios incluidos ============================================================ */
#contacto-rapido .card-soft {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	padding: 32px;
	border-radius: 18px;
	backdrop-filter: blur(12px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
	transition: .3s ease;
}

#contacto-rapido .card-soft:hover {
	border-color: rgba(243, 156, 18,1.0);
	box-shadow: 0 0 24px rgba(243, 156, 18,0.25);
}

/* Listas de beneficios */
#contacto-rapido .list-check li {
	margin-bottom: 9px;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

#contacto-rapido .list-check i {
	color: var(--accent-color);
	font-size: 1.2rem;
}

/* Badges extras */
#contacto-rapido .badge-soft {
	background: rgba(26, 188, 156, 0.20);
	border: 1px solid rgba(26, 188, 156, 0.35);
	color: var(--accent-color);
	padding: 5px 10px;
	border-radius: 12px;
	margin-right: 6px;
	font-size: 0.85rem;
}

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width: 992px) {

	#contacto-rapido .form-dark,
	#contacto-rapido .card-soft {
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	#contacto-rapido h2 {
		font-size: 2rem;
		text-align: center;
	}

	#contacto-rapido .section-title-min {
		text-align: center;
	}

	#contacto-rapido .form-dark,
	#contacto-rapido .card-soft {
		padding: 25px;
	}
}

@media (max-width: 480px) {

	#contacto-rapido .form-dark,
	#contacto-rapido .card-soft {
		padding: 20px;
	}

	#contacto-rapido h2 {
		font-size: 1.8rem;
	}
}

/* ============================================================ 16. FOOTER PREMIUM — Estilo moderno, elegante y consistente ============================================================ */
.footer {
	padding-top: 70px;
	padding-bottom: 40px;
	background: #2c2c54 !important;
	/* tú ya defines #341f97 inline */
	color: #fff;
	position: relative;
	overflow: hidden;
}

/* Fondo glass suave */
.footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(10px);
	z-index: 0;
}

.footer-top {
	position: relative;
	z-index: 2;
}

/* ============================================================ FOOTER — Columna "Sobre nosotros" ============================================================ */
.footer-about img {
	margin-bottom: 18px;
	filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
}

.footer-about p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	margin-bottom: 14px;
}

/* ============================================================ LINKS ============================================================ */
.footer-links h4 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #fff;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li {
	margin-bottom: 8px;
}

.footer-links ul li a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.95rem;
	transition: .3s ease;
	text-decoration: none;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
	text-decoration: underline;
}

/* ============================================================ SOCIAL LINKS ============================================================ */
.social-links a {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	width: 40px;
	height: 40px;
	display: flex;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: .3s ease;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-links a:hover {
	background: var(--accent-color);
	color: #000;
	transform: translateY(-4px);
	border-color: var(--accent-color);
}

/* ============================================================ CONTACTO ============================================================ */
.footer-contact h4 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.footer-contact p {
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.85);
}

.footer-contact strong {
	color: var(--accent-color);
}

/* Teléfono y correo */
.footer-contact a {
	color: rgba(255, 255, 255, 0.9);
	transition: .3s;
}

.footer-contact a:hover {
	color: var(--accent-color);
}

/* ============================================================ COPYRIGHT ============================================================ */
.footer .copyright {
	margin-top: 25px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	position: relative;
	z-index: 2;
	color: rgba(255, 255, 255, 0.8);
}

.footer .sitename {
	color: var(--accent-color);
	font-weight: 700;
}

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width: 992px) {

	.footer-about,
	.footer-links,
	.footer-contact {
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.footer {
		padding-top: 55px;
	}

	.footer-about img {
		max-width: 180px;
	}
}

#cookie-banner {
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 380px;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 20px;
	border-radius: 14px;
	z-index: 99999;
	color: #fff;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
	display: none;
	/* lo mostramos solo si no hay consentimiento */
}

#cookie-banner h4 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--accent-color);
}

#cookie-banner p {
	font-size: .9rem;
	opacity: .85;
}

.cookie-btn {
	padding: 8px 14px;
	border-radius: 8px;
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
}

.cookie-accept {
	background: var(--accent-color);
	color: #000;
}

.cookie-reject {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.cookie-settings {
	background: transparent;
	color: var(--accent-color);
	text-decoration: underline;
	border: none;
	padding: 6px;
}

/* MODAL DE CONFIGURACIÓN */
#cookie-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	display: none;
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

#cookie-modal .modal-content {
	background: rgba(0, 0, 0, 0.85);
	padding: 25px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	max-width: 480px;
	color: #fff;
}

#cookie-modal h3 {
	color: var(--accent-color);
	margin-bottom: 10px;
}

#cookie-modal label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .95rem;
	margin-bottom: 10px;
}

#cookie-modal input[type="checkbox"] {
	width: 18px;
	height: 18px;
}

.modal-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

/* ============================================
   FIX HERO MOBILE – eliminar espacio negro arriba
============================================ */
@media (max-width: 768px) {

    .hero,
    #hero,
    .hero-section {
        padding-top: 0 !important;
        margin-top: 0 !important;
        background-position: top center !important;
        background-size: cover !important;
        min-height: 100vh !important;
    }

    /* Si usas navbar fija, el hero debe subir */
    header,
    .navbar {
        margin-bottom: 0 !important;
    }
}
/* ============================================
   FIX HERO EN TABLET (992px → 768px)
   Evitar espacio negro y mantener imagen grande
============================================ */
@media (max-width: 992px) and (min-width: 769px) {

    .hero,
    #hero,
    .hero-section {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        min-height: 100vh !important;
        padding-top: 0 !important;
    }
}
/* ==========================================
   HERO — Ajustes reales para móviles
   ========================================== */
@media (max-width: 992px) {

  /* Hace el hero más alto para que se vea la imagen */
  #hero {
    min-height: 95vh !important;
    padding-top: 120px !important; /* baja el contenido */
    background-position: center top !important;
    background-size: cover !important;
  }

  /* La tarjeta ocupa todo el ancho y baja */
  .hero-card {
    width: 100% !important;
    padding: 28px 22px !important;
    margin: 0 auto;
    margin-top: 40px !important;   /* la baja aún más */
    border-radius: 22px;

    /* Más transparencia para lucir la imagen del fondo */
    background: rgba(0, 0, 0, 0.20) !important;
    backdrop-filter: blur(2px);
  }

  /* Títulos más equilibrados en móvil */
  .hero-title {
    font-size: 1.9rem !important;
    line-height: 1.25 !important;
    text-align: center;
  }

  /* Descripción más legible */
  .hero-description {
    font-size: 1rem !important;
    line-height: 1.55 !important;
    text-align: center;
  }

  /* Botones centrados */
  .cta-button {
    justify-content: center !important;
  }

}

#snow-container {
    pointer-events: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 99998; /* debajo de tu banner de cookies */
}

.snowflake {
    position: absolute;
    top: -10vh;
    color: rgba(255,255,255,0.9);
    user-select: none;
    animation-name: snowFall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    text-shadow: 0 0 6px rgba(255,255,255,0.6);
}

@keyframes snowFall {
    0% {
        transform: translateY(-10vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) translateX(20px);
        opacity: 0.7;
    }
}

.hero-card{
	margin-top: 350px !important;
}