/* ==========================================================================
   HOME PAGE STYLES
   ========================================================================== */

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.home-hero {
	position: relative;
	min-height: 100vh; /* ocupa todo el alto de la pantalla sumando header + hero */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #89aeff;
	color: var(--text-light);
	padding: clamp(80px, 12vh, 140px) 0 clamp(120px, 15vh, 160px); /* Reducir padding top de 100px a 80px */
	margin: 0;
	box-sizing: border-box;
}

.hero-decorations {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 5;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 680px;
	margin: 0 auto;
	justify-content: center; /* Centrar el contenido principal */
}

.hero-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.hero-title {
	margin: 0;
	font-size: clamp(56px, 13vw, 160px);
	font-family: 'Poppins', var(--font-family-display);
	font-weight: 700;
	text-transform: none;
	letter-spacing: -0.01em;
	line-height: 0.95;
	display: inline-block;
	white-space: nowrap;
	position: relative;
}

.hero-title .letter {
	display: inline-block;
	opacity: 1; /* Cambiar de 0 a 1 - texto visible desde el inicio */
	transform: translateY(0);
	animation: typewriterInfinite 4s ease-in-out infinite;
}

/* Efecto de máquina de escribir infinito simplificado */
.hero-title .letter:nth-child(1) { animation-delay: 1.75s; } /* Reducido de 2s a 1.75s */
.hero-title .letter:nth-child(2) { animation-delay: 1.9s; }
.hero-title .letter:nth-child(3) { animation-delay: 2.05s; }
.hero-title .letter:nth-child(4) { animation-delay: 2.2s; }
.hero-title .letter:nth-child(5) { animation-delay: 2.35s; }
.hero-title .letter:nth-child(6) { animation-delay: 2.5s; }

.hero-bang {
	color: #ffffff;
	display: inline-block;
	transform: rotate(-3deg);
	animation: bangInfinite 4s ease-in-out infinite;
	animation-delay: 2.5s; /* Reducido de 2.75s a 2.5s */
	transform-origin: center bottom;
}

.hero-outline {
	margin: 0;
	font-size: clamp(28px, 6vw, 86px);
	font-weight: 300;
	letter-spacing: 0.45em;
	color: rgba(255, 255, 255, 0.8);
	opacity: 1;
}

/* Contenedor que agrupa el CTA y la flecha en la parte inferior */
.hero-bottom-section {
	position: absolute; /* Cambiar a absolute para anclarlo */
	bottom: 40px; /* Distancia desde el fondo del hero */
	left: 50%; /* Centrar horizontalmente */
	transform: translateX(-50%); /* Centrar perfectamente */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px; /* Espacio entre el texto y la flecha */
	z-index: 1; /* Reducido de 10 a 1 para que quede debajo del overlay del menú */
	width: 90%; /* Asegurar ancho fijo */
	max-width: 600px; /* Limitar ancho máximo */
}

.hero-cta {
	align-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0; /* Sin padding de botón */
	border-radius: 0; /* Sin border radius */
	border: none; /* Sin borde */
	background: transparent; /* Sin fondo */
	color: var(--text-light);
	text-transform: none; /* Sin mayúsculas forzadas */
	font-weight: 400; /* Peso normal */
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: opacity var(--transition-fast);
	opacity: 0.9;
	font-size: clamp(14px, 1.5vw, 16px);
	text-align: center;
	line-height: 1.4;
	margin: 0; /* Eliminar margins */
	padding: 0; /* Eliminar paddings */
}

.hero-cta:hover,
.hero-cta:focus {
	background: transparent; /* Sin efecto de hover de botón */
	color: var(--text-light);
	opacity: 1; /* Solo aumentar opacidad */
	transform: none; /* Sin movimiento */
}

.hero-vrotta-icon {
	position: absolute;
	top: 55%; /* Más abajo que antes (era 15%) */
	right: -90px; /* Menos fuera de la pantalla */
	width: 180px; /* Más pequeño (era 280px) */
	height: 180px; /* Más pequeño (era 280px) */
	background-image: url('https://vrottacreators.com/wp-content/uploads/2026/01/icono-circulo-azul.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.9;
	pointer-events: none;
	z-index: 2;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

/* Flor fija e independiente - posicionada dinámicamente con JavaScript */
.hero-flower-fixed {
	position: absolute;
	width: 60px;
	height: 60px;
	background-image: url('https://vrottacreators.com/wp-content/uploads/2026/01/icono-trebol-verde-agua.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0; /* Oculta inicialmente */
	pointer-events: none;
	z-index: 6;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
	visibility: hidden; /* Asegurar que esté oculta hasta posicionarse */
}

/* Forma amarilla/verde lima en la esquina inferior izquierda */
.hero-yellow-shape {
	position: absolute;
	top: 60%; /* A la mitad del bloque, misma altura que el círculo azul */
	transform: translateY(-50%);
	left: -80px; /* Parcialmente fuera de la pantalla (izquierda) */
	width: 220px;
	height: 220px;
	background-image: url('https://vrottacreators.com/wp-content/uploads/2026/01/icono-luna-verde-lima.png');
	opacity: 0.9;
	pointer-events: none;
	z-index: 2;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

@keyframes heroAppear {
	0% {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}
	50% {
		opacity: 0.7;
		transform: translateY(10px) scale(0.98);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes revealText {
	0% {
		width: 0;
		opacity: 0;
	}
	5% {
		opacity: 1;
	}
	100% {
		width: 100%;
		opacity: 1;
	}
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

@keyframes typewriterLetter {
	0% {
		opacity: 0;
		transform: translateY(8px) scale(0.95);
	}
	60% {
		opacity: 1;
		transform: translateY(-2px) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes typewriterLetterInfinite {
	0% {
		opacity: 0;
		transform: translateY(8px) scale(0.95);
	}
	60% {
		opacity: 1;
		transform: translateY(-2px) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes fadeOutLetter {
	0% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
	100% {
		opacity: 0;
		transform: translateY(8px) scale(0.95);
	}
}

@keyframes typewriterCursor {
	0%, 50% {
		opacity: 1;
	}
	51%, 100% {
		opacity: 0;
	}
}

@keyframes showCursor {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes bangBounce {
	0% {
		transform: rotate(-3deg) scale(1);
	}
	50% {
		transform: rotate(-8deg) scale(1.1);
	}
	100% {
		transform: rotate(-3deg) scale(1);
	}
}

@keyframes bangBounceInfinite {
	0% {
		transform: rotate(-3deg) scale(1);
		opacity: 0;
	}
	11.1% { /* 0.5s de 4.5s */
		opacity: 0;
	}
	27.8% { /* 1.25s de 4.5s */
		opacity: 1;
		transform: rotate(-3deg) scale(1);
	}
	33.3% { /* 1.5s de 4.5s */
		transform: rotate(-8deg) scale(1.1);
	}
	38.9% { /* 1.75s de 4.5s */
		transform: rotate(-3deg) scale(1);
	}
	66.7% { /* 3s de 4.5s */
		opacity: 1;
		transform: rotate(-3deg) scale(1);
	}
	83.3% { /* 3.75s de 4.5s */
		opacity: 0;
		transform: rotate(-3deg) scale(0.95);
	}
	88.9% { /* 4s de 4.5s */
		opacity: 0;
	}
	100% {
		opacity: 0;
		transform: rotate(-3deg) scale(1);
	}
}

/* Eliminar la animación anterior - se reemplaza con la nueva */
@keyframes letterAppear {
	/* Esta animación ya no se usa, pero la mantenemos por compatibilidad */
	0% {
		opacity: 0;
		transform: translateY(30px) scale(0.8) rotateX(90deg);
		filter: blur(8px);
	}
	50% {
		opacity: 0.7;
		transform: translateY(10px) scale(0.95) rotateX(45deg);
		filter: blur(2px);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1) rotateX(0deg);
		filter: blur(0px);
	}
}

/* Flecha de scroll hacia abajo */
.scroll-arrow {
	position: relative; /* Cambiar de absolute a relative */
	bottom: auto; /* Eliminar posicionamiento absoluto */
	left: auto;
	transform: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: var(--text-light);
	text-decoration: none;
	opacity: 1;
	transition: all var(--transition-fast);
	z-index: 5;
	backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--text-light);
}

.scroll-arrow svg {
	width: 24px;
	height: 24px;
}

/* Smooth scroll para toda la página */
html {
	scroll-behavior: smooth;
}

/* ==========================================================================
   SECOND SECTION - ABOUT/SERVICES
   ========================================================================== */

.home-about-section {
	background: #f2f2f2;
	min-height: 700px;
	display: flex;
	align-items: center;
	padding: clamp(60px, 8vw, 100px) 0;
}

.home-about-section .layout-container {
	display: grid;
	grid-template-columns: 60% 40%; /* Columna izquierda 60%, derecha 40% */
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
	min-height: 500px;
	max-width: min(80vw, 1400px); /* 80% de la pantalla pero máximo 1400px */
}

.about-content {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 3vw, 32px);
	/* Eliminado max-width: 600px para permitir que use todo el espacio de la columna */
}

.funnel-content {
	/* Eliminado max-width: 640px para permitir que use todo el espacio de la columna */
}

.funnel-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--brand-green);
}

.funnel-eyebrow::before {
	content: '';
	width: 32px;
	height: 2px;
	background: var(--brand-green);
	border-radius: 2px;
}

.about-title {
	margin: 0;
	font-size: clamp(28px, 4.5vw, 44px);
	text-transform: uppercase;
	letter-spacing: 0.02em; /* Revertido a 0.02em original */
	font-family: 'Poppins', var(--font-family-display);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.1;
}

/* Espaciado específico solo para #VrottaCrew */
.about-title .spaced-text {
	letter-spacing: 0.07em;
}

.about-subtitle {
	margin: 0;
	font-size: clamp(18px, 2.5vw, 24px);
	font-family: var(--font-family-display);
	font-weight: var(--font-weight-light);
	color: var(--text-dark);
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.about-description {
	margin: 0;
	font-size: clamp(16px, 2vw, 20px);
	font-family: var(--font-family-primary);
	color: var(--text-dark);
	line-height: 1.6;
	font-weight: 400;
}

.funnel-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
	font-size: clamp(15px, 1.8vw, 18px);
	color: var(--text-dark);
	font-family: var(--font-family-primary);
	line-height: 1.5;
}

.funnel-list li {
	position: relative;
	padding-left: 50px; /* Aumentado de 22px a 50px para dar espacio a la imagen */
	transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Estado inicial - oculto */
.funnel-list li.list-item-hidden {
	opacity: 0;
	transform: translateY(30px);
}

/* Estado visible - animación de entrada */
.funnel-list li.list-item-visible {
	opacity: 1;
	transform: translateY(0);
}

.funnel-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 28px; /* Tamaño de la imagen */
	height: 28px;
	background-image: attr(data-icon url); /* Fallback */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.3s ease;
}

/* Usar las imágenes específicas para cada item */
.funnel-list li[data-icon]::before {
	background-image: var(--icon-url);
}

/* Efecto en el ícono cuando aparece el item */
.funnel-list li.list-item-visible::before {
	animation: iconPop 0.5s ease, breathe 3s ease-in-out infinite;
}

/* Delay escalonado para cada icono en la animación de respiración */
.funnel-list li:nth-child(1).list-item-visible::before {
	animation: iconPop 0.5s ease, breathe 3s ease-in-out 0s infinite;
}

.funnel-list li:nth-child(2).list-item-visible::before {
	animation: iconPop 0.5s ease, breathe 3s ease-in-out 0.4s infinite;
}

.funnel-list li:nth-child(3).list-item-visible::before {
	animation: iconPop 0.5s ease, breathe 3s ease-in-out 0.8s infinite;
}

@keyframes iconPop {
	0% {
		transform: translateY(-50%) scale(0) rotate(-180deg);
	}
	50% {
		transform: translateY(-50%) scale(1.2) rotate(0deg);
	}
	100% {
		transform: translateY(-50%) scale(1) rotate(0deg);
	}
}

/* Animación de respiración muy sutil - se agranda poquito */
@keyframes breathe {
	0%, 100% {
		transform: translateY(-50%) scale(1);
	}
	50% {
		transform: translateY(-50%) scale(1.08); /* Solo 8% más grande */
	}
}

.funnel-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 600px; /* Aumentado de 500px a 600px */
}

.funnel-form-row {
	display: flex;
	gap: 12px;
	align-items: stretch;
	flex-wrap: nowrap;
	background: #d9d9d9; /* Fondo gris claro como en la imagen */
	padding: 16px 16px 20px 16px;
	border-radius: 16px;
}

.funnel-form input {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 56px;
	border: none; /* Sin bordes */
	border-radius: 0; /* Sin border radius */
	padding: 0 16px;
	font-size: 16px;
	font-family: var(--font-family-primary);
	background: transparent; /* Fondo completamente transparente */
	color: #666666;
	transition: all var(--transition-fast);
	box-shadow: none; /* Sin sombra */
	-webkit-appearance: none; /* Eliminar estilos del navegador en Safari */
	-moz-appearance: none; /* Eliminar estilos del navegador en Firefox */
	appearance: none; /* Eliminar estilos del navegador */
}

.funnel-form input:focus {
	outline: none; /* Sin outline al hacer focus */
	background: transparent;
	color: #333333;
	border: none; /* Asegurar que no aparezca borde en focus */
	box-shadow: none; /* Sin sombra en focus */
}

.funnel-form input::placeholder {
	color: #999999; /* Placeholder gris medio */
	font-size: 15px;
	font-weight: 400;
}

.funnel-button {
	border: none;
	background: #d7ff61;
	color: #1b1f3b;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 10px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 14px;
	cursor: pointer;
	transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
	box-shadow: 4px 6px 0 #0d0f2c;
	white-space: nowrap;
	flex-shrink: 0;
	min-height: 56px;
	position: relative;
	overflow: hidden;
}

.funnel-button-icon {
	width: 16px;
	height: 16px;
	display: block;
	flex-shrink: 0;
	opacity: 0.9;
}

/* Efecto shimmer/brillo continuo que está SIEMPRE activo */
.funnel-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.5),
		transparent
	);
	animation: shimmerContinuous 2.5s ease-in-out infinite;
}

@keyframes shimmerContinuous {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

.funnel-button:hover,
.funnel-button:focus {
	background: #c5fd3a;
	transform: translateY(-2px);
	box-shadow: 6px 8px 0 #0d0f2c;
}

.funnel-note {
	margin: 0;
	font-size: 12px;
	color: var(--muted);
	font-style: italic;
}

.about-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #d7ff61; /* Color de marca igual que header */
	color: #1b1f3b; /* Color oscuro para contraste */
	padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
	border-radius: var(--radius-full);
	text-decoration: none;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: clamp(14px, 1.8vw, 16px);
	transition: background-color var(--transition-fast), transform var(--transition-fast);
	align-self: flex-start;
	margin-top: clamp(16px, 2vw, 24px);
	box-shadow: 4px 6px 0 #0d0f2c; /* Sombra característica de la marca */
}

.about-cta:hover,
.about-cta:focus {
	background: #c5fd3a; /* Hover igual que el header */
	transform: translateY(-2px);
	box-shadow: 6px 8px 0 #0d0f2c; /* Aumentar sombra en hover */
}

.about-image-container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	position: relative;
	transition: opacity 1.4s ease, transform 1.2s ease; /* Aumentado de 0.8s a 1.2s */
}

/* Estado inicial - oculto fuera de la pantalla a la derecha */
.about-image-container.image-hidden {
	opacity: 0;
	transform: translateX(100px);
}

/* Estado visible - entra desde la derecha */
.about-image-container.image-visible {
	opacity: 1;
	transform: translateX(0);
}

.vrotta-crew-sticker {
	position: absolute;
	bottom: 15px;
	left: 65%;
	transform: translateX(-50%);
	width: 180px;
	height: auto;
	max-width: 180px;
	object-fit: contain;
	animation: float 3s ease-in-out infinite;
	z-index: 10;
}

.funnel-case {
	flex-direction: column;
	gap: 20px;
}

.funnel-case-card {
	background: #ffffff;
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: var(--shadow-lg);
	max-width: 420px;
	align-self: flex-end;
}

.funnel-case-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brand-green);
}

.funnel-case-title {
	margin: 10px 0 8px;
	font-size: 22px;
	font-family: var(--font-family-display);
	font-weight: var(--font-weight-light);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--text-dark);
}

.funnel-case-text {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--text-dark);
}

.funnel-case-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.funnel-metric {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 12px;
	border-radius: 12px;
	background: #f6f7f8;
}

.funnel-metric-value {
	font-size: 18px;
	font-weight: var(--font-weight-bold);
	color: var(--brand-green);
}

.funnel-metric-label {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.about-image {
	width: 100%;
	height: auto;
	max-width: 500px;
	object-fit: contain;
	border-radius: var(--radius-lg);
	transition: transform var(--transition-fast);
}

.funnel-image {
	max-width: 520px;
	z-index: 1;
	position: relative;
}

.about-image:hover {
	transform: scale(1.02);
}

.about-image-placeholder {
	color: rgba(81, 115, 111, 0.4);
	font-size: 18px;
	font-weight: var(--font-weight-semibold);
	text-align: center;
}

/* Animación flotante para el sticker */
@keyframes float {
	0%, 100% {
		transform: translateX(-50%) translateY(0px);
	}
	50% {
		transform: translateX(-50%) translateY(-10px);
	}
}

/* Responsive para el segundo bloque */
@media (max-width: 1024px) {
	.home-about-section {
		min-height: 600px;
	}
	
	.home-about-section .layout-container {
		gap: clamp(30px, 4vw, 60px);
	}
}

@media (max-width: 768px) {
	.home-about-section {
		min-height: auto;
		padding: clamp(40px, 6vw, 80px) 0;
	}
	
	/* Ocultar parte del texto de descripción solo en mobile */
	.about-description-mobile-hide {
		display: none;
	}
	
	/* Mostrar la versión mobile de las imágenes (después de las líneas, antes del formulario) */
	.about-image-mobile {
		display: flex !important;
		margin: clamp(32px, 5vw, 40px) 0 clamp(24px, 4vw, 32px) 0; /* Espacio arriba y abajo */
		min-height: 300px;
		transition: opacity 1.4s ease, transform 1.2s ease; /* Agregar transición como desktop */
	}
	
	/* Estado inicial - oculto fuera de la pantalla a la derecha */
	.about-image-mobile.image-hidden {
		opacity: 0;
		transform: translateX(100px);
	}
	
	/* Estado visible - entra desde la derecha */
	.about-image-mobile.image-visible {
		opacity: 1;
		transform: translateX(0);
	}
	
	/* Mostrar la imagen mobile-only SOLO en mobile */
	.about-image-mobile-only {
		display: flex !important;
		align-items: center;
		justify-content: center;
		position: relative;
		width: 100%;
		transition: opacity 1.4s ease, transform 1.2s ease; /* Agregar transición como desktop */
	}
	
	/* Estado inicial - oculto fuera de la pantalla a la derecha */
	.about-image-mobile-only.image-hidden {
		opacity: 0;
		transform: translateX(100px);
	}
	
	/* Estado visible - entra desde la derecha */
	.about-image-mobile-only.image-visible {
		opacity: 1;
		transform: translateX(0);
	}
	
	/* Mostrar la imagen mobile-only SOLO en mobile */
	.about-image-mobile-only {
		display: flex !important;
		align-items: center;
		justify-content: center;
		position: relative;
		width: 100%;
	}
	
	/* Estilos para la imagen principal de mobile */
	.about-image-mobile-img {
		width: 100%;
		max-width: 100%;
		height: auto;
		object-fit: contain;
		
	}
	
	/* Estilos para el sticker de mobile */
	.vrotta-crew-sticker-mobile {
		position: absolute;
		bottom: 10px;
		left: 77%;
		transform: translateX(-50%);
		width: 86px;
		height: auto;
		max-width: 86px;
		object-fit: contain;
		z-index: 10;
		animation: float 3s ease-in-out infinite; /* Agregar la misma animación que desktop */
	}
	
	/* Ocultar la versión desktop de las imágenes en mobile */
	.about-image-desktop {
		display: none !important;
	}
	
	.home-about-section .layout-container {
		grid-template-columns: 1fr;
		gap: clamp(32px, 5vw, 48px);
		text-align: center;
		max-width: 100%;
		width: 100%;
		padding-left: 30px;
		padding-right: 30px;
		box-sizing: border-box;
	}
	
	/* Invertir el orden: imagen primero (order: 1), luego texto (order: 2) */
	.about-content,
	.funnel-content {
		order: 2; /* Texto va segundo */
		width: 100%;
		max-width: 100%;
	}
	
	.about-image-container {
		order: 1; /* Imagen va primero */
		min-height: auto;
		padding: 0;
		width: 100%;
	}
	
	/* Cambiar el sticker también */
	.vrotta-crew-sticker {
		width: 120px; /* Reducir de 180px a 120px */
		max-width: 120px;
	}

	.funnel-case-card {
		align-self: center;
		max-width: 100%; /* Usar todo el ancho disponible */
	}
	
	/* Asegurar que el formulario use todo el ancho disponible */
	.funnel-form {
		max-width: 100%;
		width: 100%;
	}

	/* Cambiar el formulario a disposición vertical en móviles */
	.funnel-form-row {
		flex-direction: column; /* Cambiar a columna */
		gap: 16px; /* Más espacio entre input y botón */
		align-items: stretch; /* Estirar elementos al ancho completo */
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}
	
	/* El input ocupa todo el ancho */
	.funnel-form input {
		width: 100%;
	}
	
	.about-cta {
		align-self: center;
	}
	
	/* Alinear el texto a la izquierda en móvil para mejor lectura */
	.about-title,
	.about-description,
	.funnel-list {
		text-align: left;
		max-width: 100%;
	}
	
	/* Ajustar el botón para que ocupe todo el ancho en móvil */
	.funnel-button {
		white-space: normal;
		padding: 16px 24px; /* Padding más generoso para botón completo */
		font-size: 14px;
		width: 100%; /* Ocupar todo el ancho disponible */
		min-height: 56px;
		justify-content: center; /* Centrar texto + icono */
		text-align: center;
	}

	.home-services-section {
		min-height: auto;
		padding: clamp(60px, 8vw, 100px) 0;
	}
	
	.services-title {
		margin-bottom: clamp(40px, 6vw, 70px);
		font-size: clamp(32px, 5vw, 48px);
	}
	
	.services-list {
		grid-template-columns: 1fr;
		gap: clamp(40px, 6vw, 50px);
		max-width: 100%;
		padding: 0 20px;
	}
	
	.service-item {
		gap: clamp(8px, 1.5vw, 12px); /* Mantener gap entre icono y texto */
		padding: 0 clamp(20px, 3vw, 30px); /* Padding lateral uniforme */
		justify-content: center; /* Centrar todo el contenido */
	}
	
	/* En mobile, mantener la estructura de flexbox con iconos alternados */
	.service-item:nth-child(odd) {
		flex-direction: row-reverse; /* Icono a la derecha */
		padding-right: clamp(20px, 3vw, 30px);
		padding-left: clamp(20px, 3vw, 30px);
	}
	
	.service-item:nth-child(even) {
		flex-direction: row; /* Icono a la izquierda */
		padding-left: clamp(20px, 3vw, 30px);
		padding-right: clamp(20px, 3vw, 30px);
	}
	
	/* Iconos más pequeños en mobile */
	.service-item::before {
		width: clamp(30px, 4vw, 40px);
		height: clamp(30px, 4vw, 40px);
		position: relative; /* Mantener relative para que no se superponga */
	}
	
	.service-icon {
		font-size: clamp(36px, 4.5vw, 48px);
	}
	
	.service-name {
		font-size: clamp(24px, 3.5vw, 32px);
		text-align: center; /* Asegurar que el texto esté centrado */
	}
}

@media (max-width: 680px) {
	/* Hero ocupa 100% de altura en mobile descontando el header */
	.home-hero {
		min-height: calc(100vh - 70px); /* 100vh menos altura del header (70px) */
		height: calc(100vh - 70px);
		padding: clamp(70px, 10vh, 100px) 0 clamp(60px, 8vh, 80px);
	}

	/* Subir un poco el título en mobile */
	.hero-content {
		margin-top: -30px;
	}
	
	/* Texto "Hello!" más grande en mobile */
	.hero-title {
		font-size: clamp(64px, 20vw, 140px); /* Aumentado de 48px a 64px */
	}
	
	/* Texto "CREATORS" más grande en mobile */
	.hero-outline {
		font-size: clamp(36px, 8vw, 90px); /* Aumentado de 28px a 36px */
	}
	
	/* Contenedor del texto y flecha más ancho en mobile */
	.hero-bottom-section {
		width: 85%; /* Usar 85% del ancho en mobile */
		max-width: none; /* Eliminar restricción de max-width en mobile */
	}
	
	/* Texto del CTA más ancho en mobile */
	.hero-cta {
		font-size: clamp(16px, 4vw, 20px);
		max-width: 100%;
		width: 100%;
		padding: 0 10px;
	}

	.hero-title {
		font-size: clamp(48px, 18vw, 120px);
	}

	.hero-shape,
	.hero-shape-circle {
		width: 180px;
		height: 180px;
	}

	.hero-shape-leaf {
		left: -30px;
	}

	.hero-vrotta-icon {
		width: 80px; /* Más pequeño para móviles */
		height: 80px;
		right: -40px; /* Ajustado proporcionalmente */
		top: 35%; /* Mantener posición vertical similar */
	}

	.hero-yellow-shape {
		width: 160px;
		height: 160px;
		top: 50%;
		transform: translateY(-50%);
		left: -60px;
	}

	/* Responsive para la flor fija e independiente */
	.hero-flower-fixed {
		width: 30px; /* Más pequeña en mobile */
		height: 30px;
		top: 35%; /* Ajustado para móvil */
		transform: translateX(-50%) translateX(52px);
	}
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.home-services-section {
	background: #282830;
	min-height: 700px;
	display: flex;
	align-items: center;
	padding: clamp(80px, 10vw, 120px) 0;
	position: relative;
}

.home-services-section .layout-container {
	position: relative;
	z-index: 2;
}

.services-title {
	margin: 0 0 clamp(60px, 10vw, 100px) 0;
	font-size: clamp(40px, 6vw, 64px);
	font-family: 'Brandon Grotesque', var(--font-family-display);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #ffffff;
	text-align: center;
}

.services-list {
	display: grid;
	grid-template-columns: 1fr; /* Una sola columna */
	gap: clamp(32px, 4vw, 50px);
	align-items: center;
	justify-items: center; /* Centrar cada item dentro de la grilla */
	width: 100%;
	max-width: 1400px; /* Aumentado de 900px a 1400px para desktop */
	margin: 0 auto; /* Centrar la lista */
}

/* Definir .service-item como flexbox y eliminar decoración de enlace */
.service-item {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2vw, 24px);
	justify-content: center; /* Centrar icono + texto */
	text-decoration: none; /* Eliminar subrayado */
	color: inherit; /* Heredar color del padre */
	transition: opacity 0.6s ease, transform 0.6s ease;
	padding: clamp(12px, 2vw, 20px) 0; /* Padding vertical para área de click */
	width: fit-content; /* Evitar que el item se estire a todo el ancho */
	max-width: 100%;
}


.service-item::before {
	content: '';
	position: relative;
	width: clamp(40px, 5vw, 60px);
	height: clamp(40px, 5vw, 60px);
	display: inline-block; /* Asegura que width/height apliquen */
	background-image: var(--service-icon-url, url('http://vrotta-creators.local/wp-content/uploads/2025/11/iconos-vrotta-creators-09.png'));
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}

/* Servicios impares (1º, 3º, 5º...) - icono a la IZQUIERDA */
.service-item:nth-child(odd) {
	flex-direction: row; /* Icono primero, luego texto */
}

/* Servicios pares (2º, 4º, 6º...) - icono a la DERECHA */
.service-item:nth-child(even) {
	flex-direction: row-reverse; /* Texto primero, luego icono */
}

/* El texto del servicio */
.service-name {
	margin: 0;
	font-size: clamp(48px, 6vw, 72px);
	font-family: 'Brandon Grotesque', var(--font-family-display);
	font-weight: 400;
	color: #ffffff;
	line-height: 1.3;
	transition: color 0.3s ease, transform 0.3s ease; /* Transición suave para hover */
	text-align: center; /* Asegurar que el texto esté centrado */
	flex: 0 1 auto; /* No crecer, pero sí encogerse si es necesario */
}

/* Estado inicial - oculto */
.service-item.service-hidden {
	opacity: 0;
	transform: translateY(40px);
}

/* Estado visible - animación de entrada */
.service-item.service-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Efecto hover - agrandamiento sutil y cambio de color */
.service-item:hover .service-name,
.service-item:focus .service-name {
	color: #f77b59; /* Color naranja en hover */
	transform: scale(1.05); /* Agrandar 5% */
}

.service-icon {
	font-size: clamp(40px, 5vw, 60px);
	flex-shrink: 0;
	line-height: 1;
}

/* Responsive para servicios */
@media (max-width: 1024px) {
	.services-list {
		grid-template-columns: 1fr;
		gap: clamp(24px, 3vw, 40px);
	}
}

@media (max-width: 768px) {
	.home-services-section {
		min-height: auto;
		padding: clamp(60px, 8vw, 100px) 0;
	}
	
	.services-title {
		margin-bottom: clamp(40px, 6vw, 70px);
		font-size: clamp(32px, 5vw, 48px);
	}
	
	.services-list {
		grid-template-columns: 1fr;
		gap: clamp(40px, 6vw, 50px);
		max-width: 100%;
		padding: 0 20px;
	}
	
	.service-item {
		gap: clamp(8px, 1.5vw, 12px); /* Mantener gap entre icono y texto */
		padding: 0 clamp(20px, 3vw, 30px); /* Padding lateral uniforme */
		justify-content: center; /* Centrar todo el contenido */
	}
	
	/* En mobile, mantener la estructura de flexbox con iconos alternados */
	.service-item:nth-child(odd) {
		flex-direction: row-reverse; /* Icono a la derecha */
		padding-right: clamp(20px, 3vw, 30px);
		padding-left: clamp(20px, 3vw, 30px);
	}
	
	.service-item:nth-child(even) {
		flex-direction: row; /* Icono a la izquierda */
		padding-left: clamp(20px, 3vw, 30px);
		padding-right: clamp(20px, 3vw, 30px);
	}
	
	/* Iconos más pequeños en mobile */
	.service-item::before {
		width: clamp(30px, 4vw, 40px);
		height: clamp(30px, 4vw, 40px);
		position: relative; /* Mantener relative para que no se superponga */
	}
	
	.service-icon {
		font-size: clamp(36px, 4.5vw, 48px);
	}
	
	.service-name {
		font-size: clamp(24px, 3.5vw, 32px);
		text-align: center; /* Asegurar que el texto esté centrado */
	}
}

/* ==========================================================================
   WHO WE ARE SECTION
   ========================================================================== */

.who-we-are-section {
	background: #ffffff;
	padding: clamp(100px, 12vw, 160px) 0; /* Aumentado de 80-120px a 100-160px */
	position: relative;
	overflow: hidden; /* Prevenir overflow horizontal */
}

.who-we-are-section .layout-container {
	display: grid;
	grid-template-columns: 35% 65%;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
	max-width: 1400px; /* Limitar ancho máximo */
	width: 100%; /* Asegurar que use el ancho disponible */
	box-sizing: border-box; /* Incluir padding en el ancho */
}

.who-we-are-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.instagram-preview {
	width: 100%;
	max-width: 350px;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.who-we-are-content {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 3vw, 32px);
	max-width: 100%; /* Limitar al 100% del espacio disponible */
	overflow-wrap: break-word; /* Permitir que palabras largas se rompan */
	word-wrap: break-word; /* Compatibilidad con navegadores antiguos */
	padding-right: clamp(40px, 6vw, 80px); /* Agregar padding a la derecha */
}

.who-we-are-title {
	margin: 0;
	font-size: clamp(32px, 5vw, 48px);
	font-family: 'Brandon Grotesque', var(--font-family-display);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #1a1a1a;
	max-width: 100%; /* Asegurar que no exceda el contenedor */
}

.who-we-are-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 100%; /* Limitar al 100% del espacio disponible */
}

.who-we-are-text p {
	margin: 0;
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.6;
	color: #333333;
	max-width: 100%; /* Asegurar que no exceda el contenedor */
	overflow-wrap: break-word; /* Permitir que palabras largas se rompan */
	word-wrap: break-word; /* Compatibilidad con navegadores antiguos */
}

/* Responsive Who We Are */
@media (max-width: 768px) {
	.who-we-are-section .layout-container {
		grid-template-columns: 1fr;
		gap: clamp(32px, 5vw, 48px);
		text-align: center;
		padding-left: 30px; /* Padding lateral en mobile */
		padding-right: 30px;
	}
	
	.who-we-are-image {
		order: 1;
	}
	
	.who-we-are-content {
		order: 2;
		text-align: left;
		padding-right: 0; /* Eliminar padding derecho en mobile */
	}
	
	.instagram-preview {
		max-width: 100%;
	}
}

/* ==========================================================================
   INFINITE BANNER SECTION
   ========================================================================== */

.infinite-banner-section {
	background-color: #F6805A;
	padding: clamp(40px, 2vw, 60px) 0;
	overflow: hidden;
	position: relative;
}

.infinite-banner {
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.infinite-banner-track {
	display: flex;
	width: fit-content;
	animation: scroll-infinite 15s linear infinite;
	align-items: center; /* Alinear verticalmente los elementos */
}

.infinite-banner-text {
	font-size: clamp(64px, 7vw, 120px);
	font-family: 'Brandon Grotesque', var(--font-family-display);
	font-weight: 500;
	color: #ffffff;
	white-space: nowrap;
	padding: 0 clamp(20px, 3vw, 40px);
	display: inline-flex;
	align-items: center;
	word-spacing: 0.15em; /* Agregar espacio entre palabras */
}

.infinite-banner-text em {
	font-style: italic;
	font-weight: 300;
	padding: 0 0.05em; /* Agregar pequeño padding alrededor de las palabras en cursiva */
}

.infinite-banner-separator {
	font-size: clamp(48px, 8vw, 80px); /* Más pequeño que el texto principal */
	color: rgba(255, 255, 255, 0.6);
	padding: 0 clamp(20px, 3vw, 40px);
	display: inline-flex;
	align-items: center;
}

/* Animación de scroll infinito */
@keyframes scroll-infinite {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */

.newsletter-section {
	background: #f5f5f5;
	padding: clamp(100px, 12vw, 160px) 0; /* Igualado con who-we-are-section */
	position: relative;
}

.newsletter-section .layout-container {
	max-width: 900px;
}

.newsletter-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: clamp(24px, 4vw, 40px);
}

.newsletter-title {
	margin: 0;
	font-size: clamp(28px, 4.5vw, 42px);
	font-family: 'Brandon Grotesque', var(--font-family-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #1a1a1a;
	line-height: 1.2;
	text-align: center; /* Centrado en desktop */
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Estado visible para el título */
.newsletter-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.newsletter-description {
	margin: 0;
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.6;
	color: #666666;
	max-width: 700px;
	text-align: center; /* Centrado en desktop */
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

/* Estado visible para la descripción */
.newsletter-description.visible {
	opacity: 1;
	transform: translateY(0);
}

.newsletter-form {
	width: 100%;
	max-width: 600px;
	display: flex;
	gap: 12px;
	background: #e0e0e0;
	padding: 8px;
	border-radius: 50px;
	align-items: center;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

/* Estado visible para el formulario */
.newsletter-form.visible {
	opacity: 1;
	transform: translateY(0);
}

.newsletter-input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 16px 24px;
	font-size: clamp(15px, 2vw, 16px);
	color: #333333;
	outline: none;
	font-family: var(--font-family-primary);
}

.newsletter-input::placeholder {
	color: #999999;
}

.newsletter-button {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #d7ff61;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #1a1a1a;
	transition: all var(--transition-fast);
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-button:hover,
.newsletter-button:focus {
	background: #c5fd3a;
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.newsletter-button svg {
	width: 24px;
	height: 24px;
	animation: arrowMove 1s ease-in-out infinite;
}

/* Animación de la flecha en bucle */
@keyframes arrowMove {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(4px);
	}
}

/* Responsive Newsletter */
@media (max-width: 768px) {
	.newsletter-section {
		padding-left: 30px;
		padding-right: 30px;
	}

	/* Mantener alineación a la izquierda en mobile */
	.newsletter-title {
		text-align: left;
	}
	
	.newsletter-description {
		text-align: left;
	}

	.newsletter-form {
		flex-direction: row; /* Mantener en fila, no cambiar a columna */
		border-radius: 50px; /* Mantener forma de píldora */
		padding: 8px; /* Mismo padding que desktop */
		gap: 8px; /* Gap más pequeño */
	}
	
	.newsletter-input {
		width: 100%;
		text-align: left; /* Cambiar de center a left */
		padding: 16px 20px; /* Ajustar padding */
	}
	
	.newsletter-button {
		width: 56px; /* Mantener circular */
		height: 56px; /* Mantener circular */
		border-radius: 50%; /* Mantener circular */
		flex-shrink: 0; /* No permitir que se encoja */
	}

	/* Reducir padding de la cinta infinita en mobile */
	.infinite-banner-section {
		padding: clamp(20px, 4vw, 30px) 0;
	}
	
	/* Reducir tamaño del texto de la cinta infinita en mobile */
	.infinite-banner-text {
		font-size: clamp(30px, 7vw, 64px);
	}
	
	.infinite-banner-separator {
		font-size: clamp(32px, 6vw, 48px);
	}
}

/* ==========================================================================
   HOME NAVIGATION (header específico para home)
   ========================================================================== */

.home #site-navigation:not(.sidebar-menu) {
	display: flex;
	width: auto;
	position: relative;
}

.home #site-navigation:not(.sidebar-menu) ul {
	display: none;
	position: absolute;
	top: calc(100% + 16px);
	left: 0;
	list-style: none;
	margin: 0;
	padding: var(--spacing-md);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 20px 50px rgba(16, 36, 68, 0.15);
	gap: var(--spacing-sm);
	z-index: 20;
	min-width: 220px;
}

.home #site-navigation:not(.sidebar-menu) ul a {
	font-size: 13px;
	font-weight: var(--font-weight-semibold);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-dark);
	transition: color var(--transition-fast);
}

.home #site-navigation:not(.sidebar-menu) ul a:hover,
.home #site-navigation:not(.sidebar-menu) ul a:focus {
	color: var(--brand-primary);
}

.home #site-navigation:not(.sidebar-menu).toggled ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* ==========================================================================
   HOME RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
	.home-hero {
		padding: 120px 0 100px;
	}

	.hero-outline {
		letter-spacing: 0.3em;
	}

	.hero-shape-circle {
		opacity: 0.4;
	}

	.hero-vrotta-icon {
		width: 110px; /* Más pequeño y proporcional */
		height: 110px;
		right: -55px; /* Ajustado proporcionalmente */
		top: 40%; /* Mantener posición vertical similar */
	}

	.hero-yellow-shape {
		width: 220px;
		height: 220px;
		top: 50%;
		transform: translateY(-50%);
		left: -80px;
	}

	/* Responsive para la flor fija e independiente */
	.hero-flower-fixed {
		width: 30px;
		height: 30px;
		top: 31%; /* Ajustado para tablet */
		transform: translateX(-50%) translateX(68px);
	}
}

/* Ocultar la versión mobile de las imágenes en desktop */
.about-image-mobile {
	display: none;
}

/* Ocultar la imagen mobile-only en desktop */
.about-image-mobile-only {
	display: none;
}

/* Mostrar la versión desktop de las imágenes en desktop */
.about-image-desktop {
	display: flex;
}

/* Animaciones principales del hero */
@keyframes typewriterInfinite {
	0% {
		opacity: 0;
		transform: translateY(8px) scale(0.95);
	}
	12.5% { /* Aparece */
		opacity: 1;
		transform: translateY(0) scale(1);
	}
	25% { /* Se mantiene visible */
		opacity: 1;
		transform: translateY(0) scale(1);
	}
	50% { /* Pausa en el medio */
		opacity: 1;
		transform: translateY(0) scale(1);
	}
	62.5% { /* Comienza a desaparecer */
		opacity: 1;
		transform: translateY(0) scale(1);
	}
	75% { /* Desaparece */
		opacity: 0;
		transform: translateY(8px) scale(0.95);
	}
	100% { /* Se mantiene invisible */
		opacity: 0;
		transform: translateY(8px) scale(0.95);
	}
}

@keyframes bangInfinite {
	0% {
		opacity: 0;
		transform: rotate(-3deg) scale(0.95);
	}
	12.5% {
		opacity: 1;
		transform: rotate(-3deg) scale(1);
	}
	18.75% { /* Pequeño bounce cuando aparece */
		transform: rotate(-8deg) scale(1.05);
	}
	25% {
		opacity: 1;
		transform: rotate(-3deg) scale(1);
	}
	50% {
		opacity: 1;
		transform: rotate(-3deg) scale(1);
	}
	62.5% {
		opacity: 1;
		transform: rotate(-3deg) scale(1);
	}
	75% {
		opacity: 0;
		transform: rotate(-3deg) scale(0.95);
	}
	100% {
		opacity: 0;
		transform: rotate(-3deg) scale(0.95);
	}
}
