/* ===================================
   SANAMENTE - Estilos Globales
   Consolidados desde Layout.astro
   =================================== */

:root {
	--color-primary: #8B1538;
	--color-secondary: #FF6B35;
	--color-accent: #F4E4BC;
	--color-light: #FEFEFE;
	--color-dark: #2C2C2C;
	--color-gray: #6B7280;
	--color-light-gray: #F3F4F6;
	
	--font-family: 'Inter', sans-serif;
	--border-radius: 12px;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	line-height: 1.6;
	color: var(--color-dark);
	background-color: var(--color-light);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 80px 0;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-primary);
	text-align: center;
	margin-bottom: 3rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	min-height: 48px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-secondary), #FF8C42);
	color: white;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
	background: var(--color-primary);
	color: white;
}

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

.btn-outline:hover {
	background: var(--color-secondary);
	color: white;
}

.card {
	background: white;
	border-radius: var(--border-radius);
	padding: 2rem;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.grid {
	display: grid;
	gap: 2rem;
}

.grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

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

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

.text-secondary {
	color: var(--color-secondary);
}

.text-gray {
	color: var(--color-gray);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* ===================================
   HEADER & NAVBAR STYLES
   =================================== */

.header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	box-shadow: 0 4px 20px rgba(139, 21, 56, 0.08);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: slideDown 0.6s ease-out;
	border-bottom: 1px solid rgba(139, 21, 56, 0.08);
}

.header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 8px 32px rgba(139, 21, 56, 0.12);
	border-bottom-color: rgba(139, 21, 56, 0.15);
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	position: relative;
}

.nav-brand {
	display: flex;
	align-items: center;
	animation: fadeInLeft 0.8s ease-out;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	max-width: 350px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.logo-container:hover {
	transform: translateX(5px);
}

.logo-container:hover .logo-icon {
	transform: rotate(5deg) scale(1.1);
}

.logo-text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	line-height: 1;
	align-items: flex-start;
}

.logo-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
}

.logo-icon::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent, rgba(139, 21, 56, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.logo-container:hover .logo-icon::after {
	opacity: 1;
	animation: shimmer 1.5s ease-in-out infinite;
}

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-width: 100%;
	max-height: 100%;
	filter: drop-shadow(0 2px 4px rgba(139, 21, 56, 0.1));
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0;
	text-shadow: 0 2px 4px rgba(139, 21, 56, 0.1);
	transition: all 0.3s ease;
}

.logo-container:hover .logo {
	color: var(--color-secondary);
}

.logo-title {
	font-size: 1.8rem;
	letter-spacing: -0.02em;
}

.logo-subtitle {
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	white-space: nowrap;
	font-weight: 600;
}

.logo-divider {
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
	margin: 0.15rem 0;
	transition: all 0.3s ease;
}

.logo-container:hover .logo-divider {
	background: linear-gradient(90deg, var(--color-secondary), #FF8C42);
	height: 3px;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	animation: fadeInRight 0.8s ease-out 0.2s both;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	text-decoration: none;
	color: var(--color-dark);
	font-weight: 500;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	padding: 0.5rem 0;
	display: inline-block;
}

.nav-menu a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateX(-50%);
}

.nav-menu a:hover {
	color: var(--color-primary);
	transform: translateY(-2px);
}

.nav-menu a:hover::before {
	width: 100%;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-toggle:hover {
	background: rgba(139, 21, 56, 0.1);
	transform: scale(1.05);
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
	margin: 3px 0;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	border-radius: 2px;
	box-shadow: 0 2px 4px rgba(139, 21, 56, 0.2);
}

.nav-cta {
	margin-left: 1rem;
}

/* Estilos para el botón Contáctanos en escritorio */
.nav-menu a.desktop-contact-btn,
.nav-menu a.btn-primary {
	background: linear-gradient(135deg, var(--color-secondary), #FF8C42) !important;
	color: white !important;
	padding: 12px 24px !important;
	border-radius: 50px !important;
	font-weight: 600 !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	text-decoration: none !important;
	margin-left: 1rem !important;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
	position: relative;
	overflow: hidden;
}

.nav-menu a.desktop-contact-btn::before,
.nav-menu a.btn-primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.6s ease;
}

.nav-menu a.desktop-contact-btn:hover::before,
.nav-menu a.btn-primary:hover::before {
	width: 300%;
	height: 300%;
}

.nav-menu a.desktop-contact-btn:hover,
.nav-menu a.btn-primary:hover {
	background: linear-gradient(135deg, #e55a2b, #ff7a4a) !important;
	color: white !important;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15) !important;
}

/* Animación de shimmer para el logo */
@keyframes shimmer {
	0% {
		transform: translateX(-100%) rotate(45deg);
	}
	100% {
		transform: translateX(100%) rotate(45deg);
	}
}

/* Animación de entrada del header */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Animación de entrada desde la izquierda */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ===================================
   SERVICIOS STYLES
   =================================== */

/* Contenedor de servicios desktop */
.services-dots-container {
	display: flex;
	align-items: center;
	gap: 3rem;
	margin: 3rem 0;
	justify-content: space-between;
}

.dots-pool {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 300px;
}

.dots-row {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.dots-row-center {
	justify-content: center;
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
}

.service-dot {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-secondary) 0%, #ff8c5a 100%);
	border: 3px solid rgba(255, 255, 255, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 8px 25px rgba(255, 107, 53, 0.3),
		0 3px 10px rgba(255, 107, 53, 0.2);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.6s ease-out both;
}

.service-dot::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.6s ease;
}

.service-dot:hover {
	transform: scale(1.15) translateY(-8px);
	box-shadow: 
		0 15px 45px rgba(255, 107, 53, 0.4),
		0 5px 20px rgba(255, 107, 53, 0.3);
	border-color: rgba(255, 255, 255, 0.8);
}

.service-dot:hover::before {
	left: 100%;
}

.service-dot.active {
	background: linear-gradient(135deg, #e55a2b 0%, #ff7a4a 100%);
	transform: scale(1.2) translateY(-10px);
	box-shadow: 
		0 20px 50px rgba(255, 107, 53, 0.5),
		0 8px 25px rgba(255, 107, 53, 0.4);
	border-color: rgba(255, 255, 255, 0.9);
	animation: pulse 2s ease-in-out infinite;
}

.service-dot i {
	font-size: 1.8rem;
	color: white;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.service-dot:hover i {
	transform: scale(1.2) rotate(5deg);
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.service-dot.active i {
	animation: bounce 2s ease-in-out infinite;
}

/* Panel de información del servicio */
.service-info-panel {
	flex: 1;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
	border: 2px solid rgba(139, 21, 56, 0.1);
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 
		0 10px 40px rgba(139, 21, 56, 0.08),
		0 4px 15px rgba(139, 21, 56, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.service-info-panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), #FF8C42);
	border-radius: 24px 24px 0 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-info-panel:hover::before {
	opacity: 1;
}

.service-detail {
	text-align: center;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.service-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--color-secondary) 0%, #ff8c5a 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: 
		0 12px 40px rgba(255, 107, 53, 0.4),
		0 4px 16px rgba(255, 107, 53, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.service-icon::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: spin 3s linear infinite;
}

.service-icon i {
	font-size: 2.5rem;
	color: white;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
	position: relative;
	z-index: 3;
	transition: all 0.3s ease;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.service-icon:hover {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 
		0 15px 50px rgba(255, 107, 53, 0.5),
		0 6px 20px rgba(255, 107, 53, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-icon:hover i {
	transform: scale(1.1);
	text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.service-content h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color-dark);
	margin-bottom: 1rem;
	line-height: 1.3;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-content p {
	font-size: 1.1rem;
	color: var(--color-gray);
	line-height: 1.6;
	margin: 0 0 1.5rem 0;
}

.service-btn {
	margin-top: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.service-btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

/* Versión móvil de servicios */
.mobile-services-container {
	display: none;
}

.mobile-carousel-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 500px;
	padding: 0 1rem;
}

.mobile-service-card {
	width: 100%;
	max-width: 400px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
	border: 2px solid rgba(139, 21, 56, 0.1);
	border-radius: 24px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 
		0 10px 40px rgba(139, 21, 56, 0.08),
		0 4px 15px rgba(139, 21, 56, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	margin: 0 auto;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(20px);
}

.mobile-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), #FF8C42);
	border-radius: 24px 24px 0 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.mobile-service-icon {
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, var(--color-secondary) 0%, #ff8c5a 100%);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	box-shadow: 
		0 12px 40px rgba(255, 107, 53, 0.4),
		0 4px 16px rgba(255, 107, 53, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.mobile-service-icon::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border-radius: 26px;
	background: linear-gradient(135deg, var(--color-secondary), #ff8c5a, var(--color-secondary));
	z-index: -1;
	opacity: 0.7;
	filter: blur(8px);
	transition: all 0.3s ease;
}

.mobile-service-card:hover .mobile-service-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 
		0 16px 50px rgba(255, 107, 53, 0.5),
		0 6px 20px rgba(255, 107, 53, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mobile-service-card:hover .mobile-service-icon::before {
	opacity: 1;
	filter: blur(12px);
}

.mobile-service-icon i {
	font-size: 2.2rem;
	color: white;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.mobile-service-card:hover .mobile-service-icon i {
	transform: scale(1.1);
	text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.mobile-service-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--color-dark);
	margin-bottom: 1.2rem;
	line-height: 1.3;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.mobile-service-card:hover .mobile-service-title {
	color: var(--color-secondary);
	transform: translateY(-2px);
}

.mobile-service-description {
	font-size: 1.05rem;
	color: var(--color-gray);
	line-height: 1.7;
	margin: 0;
	font-weight: 500;
	letter-spacing: 0.01em;
	transition: all 0.3s ease;
}

.mobile-carousel-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 2rem;
	padding: 0 1rem;
}

.mobile-carousel-btn {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--color-secondary) 0%, #ff8c5a 100%);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 8px 25px rgba(255, 107, 53, 0.4),
		0 3px 10px rgba(255, 107, 53, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.mobile-carousel-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.mobile-carousel-btn:hover {
	background: linear-gradient(135deg, #e55a2b 0%, #ff7a4a 100%);
	transform: scale(1.15) translateY(-3px);
	box-shadow: 
		0 12px 35px rgba(255, 107, 53, 0.5),
		0 5px 15px rgba(255, 107, 53, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mobile-carousel-btn:hover::before {
	left: 100%;
}

.mobile-carousel-btn i {
	font-size: 1.3rem;
	color: white;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.mobile-carousel-btn:hover i {
	transform: scale(1.1);
}

.mobile-carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex: 1;
}

.mobile-indicator {
	width: 14px;
	height: 14px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(139, 21, 56, 0.15) 0%, rgba(139, 21, 56, 0.1) 100%);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(255, 255, 255, 0.5);
	box-shadow: 
		0 2px 8px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.mobile-indicator:hover {
	transform: scale(1.2);
	box-shadow: 
		0 4px 12px rgba(139, 21, 56, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mobile-indicator.active {
	background: linear-gradient(135deg, var(--color-secondary) 0%, #ff8c5a 100%);
	transform: scale(1.4);
	box-shadow: 
		0 6px 20px rgba(255, 107, 53, 0.4),
		0 2px 8px rgba(255, 107, 53, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   HERO STYLES
   =================================== */

.hero {
	padding: 140px 0 100px;
	background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 30%, #DEE2E6 70%, #F1F3F4 100%);
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="particles" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="40" r="0.8" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23particles)"/></svg>');
	animation: float-particles 20s linear infinite;
}

.hero-content {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 5rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-main {
	display: flex;
	flex-direction: column;
	animation: fadeInUp 1s ease-out;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(139, 21, 56, 0.1);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	border: 1px solid rgba(139, 21, 56, 0.2);
	color: var(--color-primary);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.8s ease-out 0.2s both;
	width: fit-content;
}

.hero-badge i {
	color: var(--color-secondary);
}

.hero-name {
	font-size: 3.8rem;
	font-weight: 900;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.name-line {
	display: block;
	animation: slideInLeft 0.8s ease-out;
}

.name-line:first-child {
	animation-delay: 0.3s;
	color: var(--color-primary);
}

.name-line:last-child {
	animation-delay: 0.5s;
	background: linear-gradient(135deg, var(--color-secondary), #FF8C42);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-titles {
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* CORREGIDO: Títulos profesionales en una línea */
.title-group {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(139, 21, 56, 0.1);
	backdrop-filter: blur(10px);
	padding: 0.7rem 1rem;
	border-radius: 50px;
	border: 1px solid rgba(139, 21, 56, 0.2);
	width: fit-content;
	flex-wrap: nowrap;
}

.title-group i {
	color: var(--color-secondary);
	font-size: 1.2rem;
}

.title-item {
	font-weight: 600;
	color: var(--color-primary);
	font-size: 0.95rem;
	white-space: nowrap;
}

.hero-tagline {
	font-size: 1.3rem;
	color: var(--color-gray);
	margin-bottom: 2rem;
	line-height: 1.6;
	font-weight: 400;
	animation: fadeInUp 0.8s ease-out 0.9s both;
}

.tagline-highlight {
	background: linear-gradient(135deg, var(--color-secondary), #FF8C42);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin-bottom: 2rem;
	animation: fadeInUp 0.8s ease-out 1.1s both;
}

.stat-item {
	text-align: center;
	background: rgba(139, 21, 56, 0.1);
	backdrop-filter: blur(10px);
	padding: 1rem;
	border-radius: 15px;
	border: 1px solid rgba(139, 21, 56, 0.2);
	flex: 1;
}

.stat-number {
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--color-secondary);
	margin-bottom: 0.3rem;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--color-gray);
	font-weight: 500;
}

.hero-trust {
	display: flex;
	gap: 1.5rem;
	animation: fadeInUp 0.8s ease-out 1.3s both;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(139, 21, 56, 0.1);
	backdrop-filter: blur(10px);
	padding: 0.6rem 1rem;
	border-radius: 50px;
	border: 1px solid rgba(139, 21, 56, 0.2);
	color: var(--color-primary);
	font-size: 0.9rem;
	font-weight: 500;
}

.trust-item i {
	color: var(--color-secondary);
	font-size: 1rem;
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-circle {
	position: relative;
	width: 400px;
	height: 400px;
	animation: float 6s ease-in-out infinite;
	aspect-ratio: 1;
}

.circle-border {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
	backdrop-filter: blur(20px);
	padding: 8px;
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
}

.circle-glow {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-accent), var(--color-secondary), #FF8C42);
	z-index: -1;
	opacity: 0.3;
	filter: blur(20px);
	animation: pulse-glow 3s ease-in-out infinite;
}

.circle-content {
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.2);
	aspect-ratio: 1;
}

.profile-icon {
	position: relative;
	z-index: 3;
}

.profile-icon i {
	font-size: 6rem;
	color: white;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	animation: pulse 2s ease-in-out infinite;
}

.psychology-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.6;
	animation: particle-twinkle 3s ease-in-out infinite;
}

.particle i {
	font-size: 0.8rem;
	color: var(--color-secondary);
	text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.particle[data-icon="brain"] {
	top: 15%;
	left: 20%;
	animation-delay: 0s;
}

.particle[data-icon="heart"] {
	top: 25%;
	right: 15%;
	animation-delay: 0.5s;
}

.particle[data-icon="mind"] {
	top: 60%;
	left: 10%;
	animation-delay: 1s;
}

.particle[data-icon="balance"] {
	top: 70%;
	right: 20%;
	animation-delay: 1.5s;
}

.particle[data-icon="growth"] {
	top: 40%;
	left: 5%;
	animation-delay: 2s;
}

.particle[data-icon="peace"] {
	top: 10%;
	left: 60%;
	animation-delay: 2.5s;
}

.particle[data-icon="connection"] {
	top: 80%;
	left: 70%;
	animation-delay: 0.8s;
}

.particle[data-icon="healing"] {
	top: 50%;
	right: 5%;
	animation-delay: 1.8s;
}

.particle[data-icon="therapy"] {
	top: 35%;
	left: 75%;
	animation-delay: 0.3s;
}

.particle[data-icon="wellness"] {
	top: 65%;
	left: 25%;
	animation-delay: 0.7s;
}

.particle[data-icon="meditation"] {
	top: 5%;
	left: 40%;
	animation-delay: 1.2s;
}

.particle[data-icon="support"] {
	top: 85%;
	left: 45%;
	animation-delay: 1.7s;
}

.particle[data-icon="mindfulness"] {
	top: 45%;
	left: 85%;
	animation-delay: 2.2s;
}

.particle[data-icon="empathy"] {
	top: 30%;
	left: 50%;
	animation-delay: 0.9s;
}

.particle[data-icon="resilience"] {
	top: 75%;
	left: 60%;
	animation-delay: 1.4s;
}

.particle[data-icon="hope"] {
	top: 20%;
	left: 30%;
	animation-delay: 2.7s;
}

.particle[data-icon="wisdom"] {
	top: 55%;
	left: 15%;
	animation-delay: 0.6s;
}

.particle[data-icon="tranquility"] {
	top: 90%;
	left: 35%;
	animation-delay: 2.1s;
}

.particle[data-icon="strength"] {
	top: 12%;
	right: 25%;
	animation-delay: 1.6s;
}

.particle[data-icon="harmony"] {
	top: 38%;
	right: 35%;
	animation-delay: 0.4s;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes float-particles {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-100px);
	}
}

@keyframes pulse-glow {
	0%, 100% {
		opacity: 0.3;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.1);
	}
}

@keyframes particle-twinkle {
	0%, 100% {
		opacity: 0.3;
		transform: scale(0.8);
	}
	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}

/* ===================================
   HISTORY STYLES
   =================================== */

.history-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 3rem 0;
}

.history-icon {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, #FF8C42 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 
		0 0 0 20px rgba(139, 21, 56, 0.1),
		0 0 0 40px rgba(255, 107, 53, 0.05),
		0 30px 60px rgba(139, 21, 56, 0.3);
	transition: all 0.4s ease;
	overflow: hidden;
	animation: float 6s ease-in-out infinite;
}

.history-icon::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: spin 3s linear infinite;
}

.history-icon::after {
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
	border: 3px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
}

.history-icon i {
	font-size: 6rem;
	color: white;
	position: relative;
	z-index: 3;
	text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	animation: bounce 2s ease-in-out infinite;
	filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.history-icon:hover {
	transform: translateY(-20px) scale(1.1) rotate(5deg);
	box-shadow: 
		0 0 0 30px rgba(139, 21, 56, 0.15),
		0 0 0 60px rgba(255, 107, 53, 0.1),
		0 50px 100px rgba(139, 21, 56, 0.4);
}

.history-text {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
	padding: 3rem;
	border-radius: 30px;
	box-shadow: 
		0 25px 50px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
	transform: perspective(1000px) rotateY(-5deg);
	transition: all 0.4s ease;
}

.history-text::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(180deg, var(--color-primary), var(--color-secondary), #FF8C42);
	border-radius: 0 3px 3px 0;
}

.history-text::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 200%;
	background: radial-gradient(circle, rgba(139, 21, 56, 0.1) 0%, transparent 70%);
	animation: shimmer 4s ease-in-out infinite;
}

.history-text:hover {
	transform: perspective(1000px) rotateY(0deg) translateY(-10px);
	box-shadow: 
		0 35px 70px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.history-text p {
	font-size: 1.2rem;
	line-height: 2;
	margin-bottom: 2rem;
	color: var(--color-gray);
	position: relative;
	z-index: 2;
	font-weight: 500;
}

.history-text p:last-child {
	margin-bottom: 0;
}

.history-text p:first-child {
	font-weight: 700;
	color: var(--color-dark);
	font-size: 1.3rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.history-text p:first-child::first-letter {
	font-size: 4rem;
	font-weight: 900;
	color: transparent;
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), #FF8C42);
	-webkit-background-clip: text;
	background-clip: text;
	float: left;
	line-height: 0.8;
	margin-right: 12px;
	margin-top: 8px;
	text-shadow: none;
	filter: drop-shadow(0 4px 8px rgba(139, 21, 56, 0.3));
}

/* Enhanced Animations */
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes bounce {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

@keyframes shimmer {
	0%, 100% {
		opacity: 0.3;
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
	50% {
		opacity: 0.6;
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 768px) {
	.section {
		padding: 50px 0;
	}
	
	.section-title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
	
	.container {
		padding: 0 20px;
	}

	/* Navbar responsive */
	.nav-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
		backdrop-filter: blur(30px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
		transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
		z-index: 999;
		padding: 3rem 2rem;
		box-shadow: -10px 0 50px rgba(139, 21, 56, 0.15);
	}

	.nav-menu.active {
		left: 0;
		animation: menuSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	}

	.nav-menu li {
		opacity: 0;
		transform: translateX(-50px);
		transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	}

	.nav-menu.active li {
		opacity: 1;
		transform: translateX(0);
	}

	.nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
	.nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
	.nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
	.nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
	.nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
	.nav-menu.active li:nth-child(6) { transition-delay: 0.6s; }

	.nav-menu a {
		font-size: 1.5rem;
		font-weight: 600;
		color: var(--color-dark);
		padding: 1rem 2rem;
		width: 100%;
		max-width: 300px;
		text-align: center;
		border-radius: 50px;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		position: relative;
		overflow: hidden;
		border: 2px solid transparent;
	}

	.nav-menu a::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		background: rgba(139, 21, 56, 0.1);
		border-radius: 50%;
		transform: translate(-50%, -50%);
		transition: all 0.5s ease;
		z-index: -1;
	}

	.nav-menu a:hover::before {
		width: 200%;
		height: 200%;
	}

	.nav-menu a:hover {
		background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
		color: white;
		transform: translateY(-5px) scale(1.05);
		border-color: var(--color-primary);
		box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
	}

	.nav-menu li:last-child a,
	.nav-menu a.btn-primary,
	.nav-menu a.nav-cta,
	.nav-menu a.desktop-contact-btn {
		background: linear-gradient(135deg, var(--color-secondary), #FF8C42) !important;
		color: white !important;
		margin-top: 1rem !important;
		padding: 1.2rem 2.5rem !important;
		border-radius: 50px !important;
		font-weight: 700 !important;
		border: 2px solid var(--color-secondary) !important;
		box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
		position: relative;
		overflow: hidden;
	}

	.nav-menu li:last-child a::after,
	.nav-menu a.btn-primary::after,
	.nav-menu a.nav-cta::after,
	.nav-menu a.desktop-contact-btn::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		background: rgba(255, 255, 255, 0.3);
		border-radius: 50%;
		transform: translate(-50%, -50%);
		transition: all 0.6s ease;
	}

	.nav-menu li:last-child a:hover::after,
	.nav-menu a.btn-primary:hover::after,
	.nav-menu a.nav-cta:hover::after,
	.nav-menu a.desktop-contact-btn:hover::after {
		width: 300%;
		height: 300%;
	}

	.nav-menu li:last-child a:hover,
	.nav-menu a.btn-primary:hover,
	.nav-menu a.nav-cta:hover,
	.nav-menu a.desktop-contact-btn:hover {
		background: linear-gradient(135deg, #e55a2b, #ff7a4a) !important;
		color: white !important;
		transform: translateY(-8px) scale(1.1);
		box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15) !important;
		border-color: #FF8C42 !important;
	}

	.nav-toggle {
		display: flex;
		position: relative;
		z-index: 1001;
		background: rgba(139, 21, 56, 0.05);
		padding: 0.6rem;
		border-radius: 12px;
		transition: all 0.3s ease;
	}

	.nav-toggle:hover {
		background: rgba(139, 21, 56, 0.15);
		transform: scale(1.1);
	}

	.nav-toggle span {
		transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
		box-shadow: 0 2px 6px rgba(139, 21, 56, 0.3);
	}

	.nav-toggle.active {
		background: rgba(139, 21, 56, 0.1);
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(8px, 8px);
		background: linear-gradient(90deg, #e55a2b, #ff7a4a);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
		transform: scale(0);
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(8px, -8px);
		background: linear-gradient(90deg, #e55a2b, #ff7a4a);
	}

	.logo-container {
		max-width: 280px;
	}

	.logo-container:hover {
		transform: translateX(0);
	}

	.logo-title {
		font-size: 1.4rem;
	}

	.logo-subtitle {
		font-size: 0.75rem;
	}

	/* Animación de entrada del menú móvil */
	@keyframes menuSlideIn {
		from {
			left: -100%;
			opacity: 0;
		}
		to {
			left: 0;
			opacity: 1;
		}
	}

	.hero {
		padding: 80px 0 40px;
		min-height: auto;
	}

	.hero-content {
		grid-template-columns: 1fr 1fr;
		text-align: left;
		gap: 2rem;
		width: 100%;
	}

	.hero-badge {
		font-size: 0.7rem;
		padding: 0.3rem 0.8rem;
		margin-bottom: 0.8rem;
	}

	.hero-badge i {
		font-size: 0.6rem;
	}

	.hero-name {
		font-size: 1.4rem;
		margin-bottom: 0.5rem;
	}

	.hero-titles {
		flex-direction: column;
		gap: 0.3rem;
		align-items: flex-start;
		margin-bottom: 0.5rem;
	}

	.title-group {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0.2rem;
	}

	.title-item {
		font-size: 0.7rem;
	}

	.title-separator {
		display: none;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1rem;
	}

	.stat-item {
		width: 100%;
	}

	.hero-tagline {
		font-size: 0.8rem;
		margin-bottom: 0.5rem;
		line-height: 1.3;
	}

	.hero-trust {
		flex-direction: column;
		gap: 0.3rem;
		align-items: flex-start;
		margin-bottom: 0.5rem;
	}

	.trust-item {
		width: 100%;
		padding: 0.3rem 0.5rem;
		font-size: 0.7rem;
		display: flex;
		align-items: center;
		gap: 0.3rem;
	}

	.trust-item i {
		font-size: 0.6rem;
		width: 12px;
	}

	.hero-visual {
		display: none;
	}

	.hero-circle {
		width: 120px;
		height: 120px;
		aspect-ratio: 1;
		margin: 0 auto;
	}

	.specialty-icon {
		width: 28px;
		height: 28px;
	}

	.specialty-icon i {
		font-size: 0.8rem;
	}

	.specialty-item {
		padding: 0.3rem;
	}

	.specialty-item span {
		font-size: 0.65rem;
	}

	.history-icon {
		width: 250px;
		height: 250px;
	}
	
	.history-icon i {
		font-size: 5rem;
	}
	
	.history-text {
		padding: 2.5rem;
		transform: none;
	}
	
	.history-text:hover {
		transform: translateY(-5px);
	}
	
	.history-text p {
		font-size: 1.1rem;
	}
	
	.history-text p:first-child::first-letter {
		font-size: 3rem;
	}
}

@media (max-width: 480px) {
	.section {
		padding: 40px 0;
	}
	
	.section-title {
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
	}
	
	.container {
		padding: 0 15px;
	}
	
	.hero {
		padding: 60px 0 30px;
		min-height: auto;
	}

	.hero-content {
		grid-template-columns: 1fr 1fr;
		text-align: left;
		gap: 0.8rem;
	}
	
	.hero-badge {
		font-size: 0.6rem;
		padding: 0.2rem 0.6rem;
		margin-bottom: 0.5rem;
	}

	.hero-badge i {
		font-size: 0.5rem;
	}

	.hero-name {
		font-size: 1.2rem;
		margin-bottom: 0.3rem;
	}

	.hero-tagline {
		font-size: 0.7rem;
		margin-bottom: 0.3rem;
	}

	.hero-titles {
		flex-direction: column;
		gap: 0.2rem;
		margin-bottom: 0.3rem;
	}

	.title-item {
		font-size: 0.6rem;
	}

	.hero-trust {
		flex-direction: column;
		gap: 0.2rem;
		margin-bottom: 0.3rem;
	}

	.trust-item {
		width: 100%;
		padding: 0.2rem 0.4rem;
		font-size: 0.6rem;
	}

	.trust-item i {
		font-size: 0.5rem;
		width: 10px;
	}

	.hero-visual {
		display: none;
	}

	.hero-circle {
		width: 90px;
		height: 90px;
		aspect-ratio: 1;
	}

	.specialty-icon {
		width: 22px;
		height: 22px;
	}

	.specialty-icon i {
		font-size: 0.7rem;
	}

	.specialty-item {
		padding: 0.2rem;
	}

	.specialty-item span {
		font-size: 0.55rem;
	}

	.profile-icon i {
		font-size: 2.2rem;
	}
	
	.hero-circle {
		animation: none;
	}
	
	.psychology-particles {
		display: none;
	}
	
	.hero-particles {
		animation: none;
	}
	
	.card:hover {
		transform: none;
	}
	
	.service-card:hover {
		transform: none;
	}
	
	* {
		transition-duration: 0.2s !important;
	}

	.history-icon {
		width: 200px;
		height: 200px;
	}
	
	.history-icon i {
		font-size: 4rem;
	}
	
	.history-text {
		padding: 2rem;
	}
	
	.history-text p:first-child::first-letter {
		font-size: 2.5rem;
	}
}

/* Optimización para usuarios que prefieren movimiento reducido */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	
	.hero-circle,
	.psychology-particles,
	.hero-particles {
		animation: none !important;
	}
}

/* Services styles moved to component-specific files */
