/**
 * Chrono Custom Styles
 * Estilo moderno y minimalista inspirado en shadcn/ui
 */

:root {
	/* Colores principales - estilo shadcn */
	--background: 0 0% 100%;
	--foreground: 222.2 84% 4.9%;
	--card: 0 0% 100%;
	--card-foreground: 222.2 84% 4.9%;
	--popover: 0 0% 100%;
	--popover-foreground: 222.2 84% 4.9%;
	--primary: 29 88.98% 54.63%;
	--primary-foreground: 210 40% 98%;
	--secondary: 210 40% 96.1%;
	--secondary-foreground: 222.2 47.4% 11.2%;
	--muted: 210 40% 96.1%;
	--muted-foreground: 215.4 16.3% 46.9%;
	--accent: 210 40% 96.1%;
	--accent-foreground: 222.2 47.4% 11.2%;
	--destructive: 0 84.2% 60.2%;
	--destructive-foreground: 210 40% 98%;
	--border: 214.3 31.8% 91.4%;
	--input: 214.3 31.8% 91.4%;
	--ring: 221.2 83.2% 53.3%;
	--radius: 0.5rem;

	/* Espaciado */
	--spacing-xs: 0.5rem;
	--spacing-sm: 0.5rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;
	--spacing-2xl: 4rem;
	--spacing-3xl: 6rem;
}

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: hsl(var(--foreground));
	background-color: hsl(var(--background));
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Tipografía */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: var(--spacing-md);
	color: hsl(var(--foreground));
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	letter-spacing: -0.01em;
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
	font-size: 1.125rem;
	font-weight: 600;
}

p {
	margin-bottom: var(--spacing-sm);
	color: hsl(var(--muted-foreground));
	font-size: 1.125rem;
	line-height: 1.7;
}

a {
	color: hsl(var(--primary));
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: hsl(var(--primary) / 0.8);
}

/* Contenedor principal */
.site-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: transparent;
	backdrop-filter: none;
	border-bottom: 1px solid transparent;
	padding: 0.2rem 0;
	transition: all 0.3s ease;
}

.site-header.is-scrolled {
	background-color: hsl(var(--background) / 0.8);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid hsl(var(--border));
	box-shadow: 0 2px 4px -1px rgb(0 0 0 / 0.06);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.site-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: hsl(var(--foreground));
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
}

.site-logo a {
	color: hsl(var(--foreground));
	text-decoration: none;
	display: flex;
	align-items: center;
	margin-top: 0;
}

.site-logo img {
	height: 60px;
	width: auto;
	display: block;
	margin-top: 7px;
	margin-bottom: 7px;
}

.logo-text {
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* Navegación */
.main-navigation {
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: var(--spacing-md);
	align-items: center;
	margin: 0;
	padding: 0;
}

.main-navigation a {
	color: hsl(var(--muted-foreground));
	font-weight: 500;
	font-size: 0.9375rem;
	padding: var(--spacing-xs) var(--spacing-sm);
	border-radius: calc(var(--radius) - 2px);
	transition: all 0.2s ease;
	text-decoration: none;
}

.main-navigation a:hover {
	color: hsl(var(--foreground));
	background-color: hsl(var(--accent));
}

.main-navigation .btn {
	margin-left: var(--spacing-sm);
}

.nav-link-phone {
	color: hsl(var(--foreground));
	font-weight: 500;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.nav-link-phone:hover {
	color: hsl(var(--primary));
}

.text-white {
	color: #ffffff !important;
}

.text-primary {
	color: hsl(var(--primary)) !important;
}

/* Botones */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius);
	font-weight: 500;
	font-size: 0.9375rem;
	padding: 0.625rem 1.25rem;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	text-decoration: none;
	line-height: 1;
	font-family: inherit;
}

.btn-primary {
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.btn-primary:hover {
	background-color: hsl(var(--primary) / 0.9);
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	transform: translateY(-1px);
	color: #ffffff !important;
}

.btn-secondary {
	background-color: hsl(var(--secondary));
	color: hsl(var(--secondary-foreground));
	border: 1px solid hsl(var(--border));
}

.btn-secondary:hover {
	background-color: hsl(var(--accent));
	color: hsl(var(--accent-foreground));
	border-color: hsl(var(--border));
}

.btn-outline-primary {
	background-color: transparent;
	color: hsl(var(--primary));
	border: 2px solid hsl(var(--primary));
}

.btn-outline-primary:hover {
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
}

.btn-lg {
	padding: 0.875rem 1.75rem;
	font-size: 1rem;
}

/* Hero Section */
.hero-section {
	min-height: 130vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: var(--spacing-3xl);
	padding-bottom: calc(var(--spacing-3xl) + 200px);
	text-align: center;
	background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--muted) / 0.3));
	overflow: hidden;
	position: relative;
	z-index: 1;
	box-shadow: inset 0 -30px 60px -20px hsl(var(--primary) / 0.15);
}

/* Inverted curve overlay */
.hero-section::before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: -20%;
	width: 140%;
	height: 200px;
	background-color: hsl(var(--background));
	border-top-left-radius: 50% 100%;
	border-top-right-radius: 50% 100%;
	z-index: 2;
	pointer-events: none;
}

.hero-section::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 0%, hsl(var(--primary) / 0.7) 95%);
	pointer-events: none;
	z-index: 0;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.hero-title {
	margin-bottom: var(--spacing-sm);
	font-family: "LT Superior", sans-serif;
	font-size: 4.5rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	background: linear-gradient(to right, #f28723, #f28723, #ffbf82, #ffbf82, #f28723);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradient-animation 6s linear infinite;
}

.hero-subtitle {
	margin-bottom: var(--spacing-sm);
	font-size: 1.8rem;
	font-weight: 500;
	color: #0d1d34;
}

@keyframes gradient-animation {
	to {
		background-position: 200% center;
	}
}

.hero-description {
	font-size: 1.1rem;
	color: hsl(var(--muted-foreground));
	margin-bottom: var(--spacing-md);
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.hero-cta {
	display: flex;
	gap: var(--spacing-sm);
	justify-content: center;
	flex-wrap: wrap;
	margin-top: var(--spacing-sm);
}

/* Secciones */
.section {
	padding: var(--spacing-3xl) 0;
	position: relative;
	overflow: visible;
}

.section-title {
	text-align: center;
	margin-bottom: var(--spacing-lg);
}

.section-description {
	text-align: center;
	max-width: 600px;
	margin: 0 auto var(--spacing-xl);
	color: hsl(var(--muted-foreground));
	font-size: 1.125rem;
}

/* Grid de características */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-lg);
	margin-top: var(--spacing-xl);
}

.feature-card {
	padding: var(--spacing-lg);
	background-color: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
	transition: all 0.2s ease;
}

.feature-card:hover {
	border-color: hsl(var(--primary) / 0.5);
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	transform: translateY(-2px);
}

.feature-icon {
	width: 48px;
	height: 48px;
	/*background-color: hsl(var(--primary) / 0.1);*/
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--spacing-md);
	font-size: 1.5rem;
	line-height: 1;
}

.feature-card h3 {
	font-size: 1.25rem;
	margin-bottom: var(--spacing-xs);
	color: hsl(var(--card-foreground));
}

.feature-card p {
	font-size: 0.9375rem;
	margin-bottom: 0;
	color: hsl(var(--muted-foreground));
	line-height: 1.6;
}

/* Sección de beneficios */
.benefits-section {
	background-color: hsl(var(--muted) / 0.3);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-xl);
	align-items: center;
	margin-top: var(--spacing-xl);
}

.benefit-item {
	display: flex;
	gap: var(--spacing-md);
	align-items: flex-start;
}

.benefit-number {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1;
}

.benefit-content h3 {
	margin-bottom: var(--spacing-xs);
	font-size: 1.25rem;
	color: hsl(var(--foreground));
}

.benefit-content p {
	font-size: 0.9375rem;
	margin-bottom: 0;
	color: hsl(var(--muted-foreground));
	line-height: 1.6;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.8));
	color: hsl(var(--primary-foreground));
	text-align: center;
	padding: var(--spacing-3xl) 0;
	border-radius: var(--radius);
	margin: var(--spacing-3xl) var(--spacing-md);
	position: relative;
	overflow: hidden;
}

.cta-section h2,
.cta-section p {
	color: hsl(var(--primary-foreground));
}

.cta-section .btn-secondary {
	background-color: hsl(var(--background));
	color: hsl(var(--foreground));
	border-color: hsl(var(--background));
}

.cta-section .btn-secondary:hover {
	background-color: hsl(var(--background) / 0.9);
	color: hsl(var(--foreground));
}

/* Footer */
.site-footer {
	border-top: 1px solid hsl(var(--border));
	padding: var(--spacing-xl) 0;
	margin-top: var(--spacing-3xl);
	background-color: hsl(var(--muted) / 0.3);
}

.footer-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--spacing-xl);
}

.footer-section h4 {
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: var(--spacing-sm);
	color: hsl(var(--foreground));
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

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

.footer-section ul li {
	margin-bottom: var(--spacing-xs);
}

.footer-section a {
	color: hsl(var(--muted-foreground));
	font-size: 0.875rem;
	transition: color 0.2s ease;
	text-decoration: none;
}

.footer-section a:hover {
	color: hsl(var(--foreground));
}

.footer-bottom {
	text-align: center;
	padding-top: var(--spacing-lg);
	margin-top: var(--spacing-lg);
	border-top: 1px solid hsl(var(--border));
	color: hsl(var(--muted-foreground));
	font-size: 0.875rem;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--spacing-md);
	padding-right: var(--spacing-md);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.875rem;
}

/* Main content area */
.site-main {
	min-height: calc(100vh - 200px);
}

/* Responsive */
@media (max-width: 768px) {
	:root {
		--spacing-md: 1rem;
		--spacing-lg: 1.5rem;
		--spacing-xl: 2rem;
		--spacing-2xl: 3rem;
		--spacing-3xl: 4rem;
	}

	.header-container {
		flex-wrap: nowrap;
		gap: 0.25rem;
	}

	.main-navigation {
		display: flex;
		min-width: 0;
		justify-content: flex-end;
	}

	.site-logo {
		flex-shrink: 0;
	}

	.site-logo img {
		height: 28px;
	}

	.nav-menu {
		gap: 0.15rem;
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
		align-items: center;
	}

	.nav-menu::-webkit-scrollbar {
		display: none;
	}

	.nav-menu a {
		padding: 0.35rem 0.35rem;
		font-size: 0.75rem;
		margin-right: 0 !important;
		white-space: nowrap;
	}

	/* Hide phone text but keep icon */
	.nav-menu a[href^="tel:"] {
		font-size: 0;
		gap: 0 !important;
		padding: 0.4rem;
	}

	.nav-menu a[href^="tel:"] svg {
		width: 20px;
		height: 20px;
	}

	/* Button specific styles */
	.nav-menu .btn {
		padding: 0.35rem 0.6rem;
		font-size: 0.75rem;
		margin-left: 0.2rem !important;
		white-space: nowrap;
	}

	.hero-section {
		padding: var(--spacing-xl) 0;
		min-height: auto;
		/* Remove excessive height on mobile */
		padding-bottom: 380px;
		/* Space for the image */
	}

	.hero-image-wrapper {
		bottom: 130px !important;
		/* Move up to emerge from curve */
		width: 90% !important;
		max-width: 400px !important;
	}

	.hero-title {
		font-size: 3rem;
		/* Smaller title on mobile */
	}

	.hero-subtitle {
		font-size: 1.5rem;
	}

	.hero-cta {
		flex-direction: column;
	}

	.hero-cta .btn {
		width: 100%;
	}

	.social-proof-section {
		margin-top: -120px;
		position: relative;
		z-index: 10;
	}

	.cta-mockup-wrapper {
		display: none !important;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.footer-container {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}

	.cta-section {
		margin: var(--spacing-2xl) var(--spacing-sm);
		padding: var(--spacing-2xl) var(--spacing-md);
	}


}

/* Utilidades */
.text-center {
	text-align: center;
}

.mt-0 {
	margin-top: 0;
}

.mb-0 {
	margin-bottom: 0;
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
}

/* Focus states para accesibilidad */
*:focus-visible {
	outline: 2px solid hsl(var(--ring));
	outline-offset: 2px;
}

/* Compliance Ticker */
.compliance-ticker-wrap {
	width: 100%;
	overflow: hidden;
	padding: var(--spacing-sm) 0;
	border-bottom: 1px solid hsl(var(--border));
	position: relative;
	z-index: 5;
}

.compliance-ticker {
	display: flex;
	white-space: nowrap;
	animation: ticker 30s linear infinite;
	width: max-content;
}

.ticker-item {
	padding: 0 var(--spacing-xl);
	font-weight: 600;
	color: hsl(var(--foreground));
	font-size: 0.9375rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

@keyframes ticker {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* Contact Split Section */
.contact-split-section {
	padding: var(--spacing-3xl) 0;
	position: relative;
	z-index: 10;
	background-color: #ebecf0;
	/* Light grey background from image */
}

.contact-split-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-3xl);
	align-items: flex-start;
	max-width: 1100px;
	/* Slightly narrower for better focus */
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.contact-left {
	padding-right: var(--spacing-xl);
	padding-top: var(--spacing-lg);
}

.contact-left h2 {
	font-size: 2.5rem;
	margin-bottom: var(--spacing-md);
	color: #1d1d1f;
	letter-spacing: -0.02em;
}

.contact-description {
	font-size: 1.125rem;
	color: #6e6e73;
	margin-bottom: var(--spacing-xl);
	line-height: 1.6;
}

.contact-benefits {
	list-style: none;
	margin: 0 0 var(--spacing-2xl) 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}

.contact-benefits li {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-sm);
	color: #424245;
	font-size: 1.0625rem;
	line-height: 1.5;
}

.check-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: transparent;
	color: #009ca6;
	/* Teal color */
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #009ca6;
}

.check-icon svg {
	width: 14px;
	height: 14px;
	stroke-width: 3px;
}

.contact-trust {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	margin-top: auto;
}

.trust-avatars {
	display: flex;
	margin-right: var(--spacing-xs);
}

.trust-avatars .avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #d1d1d6;
	border: 2px solid #ebecf0;
	margin-left: -10px;
}

.trust-avatars .avatar:first-child {
	margin-left: 0;
}

.contact-trust p {
	font-size: 0.875rem;
	color: #6e6e73;
	margin: 0;
	max-width: 250px;
	line-height: 1.4;
}

/* Form Card */
.contact-form-wrapper {
	background-color: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form {
	display: grid;
	gap: 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	position: relative;
}

/* Input Styles */
.form-group input,
.form-group select {
	height: 48px;
	padding: 0 16px;
	border-radius: 6px;
	border: 1px solid #d2d2d7;
	background-color: #ffffff;
	color: #1d1d1f;
	font-size: 1rem;
	transition: all 0.2s ease;
	width: 100%;
	appearance: none;
	/* Remove default arrow for select */
}

.form-group select {
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236e6e73' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

.form-group input::placeholder {
	color: #86868b;
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: hsl(var(--primary));
	box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

/* Input with Icon */
.input-with-icon {
	position: relative;
}

.input-with-icon .input-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #86868b;
	z-index: 1;
	pointer-events: none;
}

.input-with-icon input {
	padding-left: 44px;
}

/* Phone Input Group */
.phone-input-group {
	display: flex;
	border: 1px solid #d2d2d7;
	border-radius: 6px;
	overflow: hidden;
}

.phone-input-group:focus-within {
	border-color: hsl(var(--primary));
	box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.country-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: flex;
	align-items: center;
	padding: 0 32px 0 12px;
	background-color: #f5f5f7;
	border: none;
	border-right: 1px solid #d2d2d7;
	color: #1d1d1f;
	font-size: 1rem;
	cursor: pointer;
	height: 100%;
	border-radius: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236e6e73' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	width: 20%;
	flex: 0 0 20%;
	min-width: 0;
	/* Allow shrinking if needed, though fixed % requested */
}

.country-select:focus {
	outline: none;
	background-color: #e5e5e7;
}

.phone-input-group input {
	border: none;
	border-radius: 0;
	box-shadow: none !important;
	flex: 1;
	width: 80%;
	/* Fallback/Explicit */
}

/* Checkbox */
.form-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 4px;
}

.form-check input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	border-radius: 4px;
	border: 1px solid #d2d2d7;
	cursor: pointer;
	flex-shrink: 0;
}

.form-check label {
	font-size: 0.8125rem;
	color: #6e6e73;
	line-height: 1.4;
	cursor: pointer;
}

@media (max-width: 900px) {
	.contact-split-container {
		grid-template-columns: 1fr;
		gap: var(--spacing-xl);
	}

	.contact-left {
		padding-right: 0;
		padding-top: 0;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-form-wrapper {
		padding: 24px;
	}
}

/* Social Proof Section */
.social-proof-section {
	padding-top: 0;
	padding-bottom: var(--spacing-3xl);
	background-color: hsl(var(--background));
	position: relative;
	z-index: 5;
}

.relative-container {
	position: relative;
	width: 100%;
}

.social-proof-content {
	max-width: 800px;
	/* Aumentado ancho máximo */
	margin: 0 auto;
	/* Centrado horizontal */
	position: relative;
	z-index: 10;
	/* Asegurar que esté por encima */
}

.stats-text {
	font-size: 1.7rem;
	/* Aumentado significativamente */
	color: #0d1d34;
	/*margin-top: -90px;
	 AJUSTA ESTE VALOR: Más negativo = más arriba, positivo = más abajo */
	line-height: 1.5;
}

.stats-subtext {
	font-size: 1.25rem;
	color: #0d1d34;
	margin-top: 5px;
	line-height: 1.5;
}

.stats-text strong {
	color: #111827;
	font-weight: 700;
}

.stars {
	color: #f59e0b;
	margin: 0 0.5rem;
	font-size: 1.1em;
}

.logos-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--spacing-2xl);
	/* Mayor separación */
	opacity: 0.8;
	/* Más visible */
	margin-top: var(--spacing-lg);
}

.company-logo {
	font-weight: 700;
	font-size: 1.75rem;
	/* Logos más grandes */
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: 'Inter', sans-serif;
}

/* Floating Avatars */
.floating-avatar {
	position: absolute;
	width: 80px;
	/* Aumentado de 48px */
	height: 80px;
	/* Aumentado de 48px */
	z-index: 1;
	display: none;
}

@media (min-width: 768px) {
	.floating-avatar {
		display: block;
	}
}

.floating-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #ffffff;
	box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
	/* Sombra más pronunciada */
	position: relative;
	z-index: 2;
}

.blob {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.3);
	width: 100%;
	height: 100%;
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	z-index: 1;
	opacity: 0.2;
}

.blob-blue {
	background-color: #3b82f6;
	border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.blob-orange {
	background-color: #f97316;
	border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
}

.blob-green {
	background-color: #22c55e;
	border-radius: 50% 50% 30% 70% / 50% 50% 70% 60%;
}

.blob-purple {
	background-color: #a855f7;
	border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

/* Posiciones de los avatares - Ajustadas para evitar colisión */
.avatar-top-left {
	top: -80px;
	/* Más arriba */
	left: 15%;
	/* Más al extremo */
}

.avatar-center-right {
	top: -70%;
	right: 15%;
	/* Más al extremo */
}

.avatar-bottom-left {
	bottom: 50px;
	left: 7%;
	/* MOVIDO AL EXTREMO para no tapar los badges */
}

.avatar-bottom-right {
	bottom: 50px;
	right: 12%;
	/* MOVIDO AL EXTREMO */
}

/* Asegurar que el contenido esté por encima de los avatares */
.social-proof-content {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	/* Z-index mayor que los avatares (1) */
}

/* Mobile overrides for Contact Section */
@media (max-width: 768px) {
	.contact-benefits {
		display: none !important;
	}
}

/* Form Validation Colors */
.wpcf7-form-control.is-invalid:not([type="submit"]):not([type="button"]) {
	border-color: #ef4444 !important;
	background-color: #fef2f2 !important;
}

.wpcf7-form-control.is-valid:not([type="submit"]):not([type="button"]) {
	border-color: #22c55e !important;
	background-color: #f0fdf4 !important;
}

/* CTA Planes y precios button hover fix */
.cta-planes-btn:hover {
	color: hsl(var(--foreground)) !important;
	background-color: hsl(var(--background) / 0.95) !important;
}

/* Ocultar el spinner circular de CF7 */
.wpcf7 .wpcf7-spinner {
	display: none !important;
}

/* Botón de envío con efecto de carga */
.wpcf7 form.submitting input[type="submit"] {
	position: relative;
	opacity: 0.7;
	cursor: wait;
	pointer-events: none;
	padding-right: 45px;
}

/* Spinner dentro del botón */
.wpcf7 form.submitting input[type="submit"]::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #ffffff;
	animation: button-spinner-rotation 0.7s linear infinite;
}

/* Animación del spinner del botón */
@keyframes button-spinner-rotation {
	from {
		transform: translateY(-50%) rotate(0deg);
	}

	to {
		transform: translateY(-50%) rotate(360deg);
	}
}