/* CSS Variables */
:root {
	--color-primary: #8B1538;
	--color-secondary: #FF6B35;
	--color-accent: #F4E4BC;
	--color-gray: #666;
	--color-light-gray: #f8f9fa;
	--border-radius: 10px;
	--shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
	background: transparent;
	backdrop-filter: none;
	box-shadow: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	min-height: 70px;
	gap: 2.5rem;
}

.nav-brand {
	display: flex;
	align-items: center;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	max-width: 350px;
}

.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;
}

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-width: 100%;
	max-height: 100%;
}

.logo {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0;
	letter-spacing: -0.5px;
	text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}

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

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

.logo-divider {
	width: 100%;
	height: 1px;
	background: var(--color-primary);
	margin: 0.15rem 0;
}

.header.scrolled .logo {
	text-shadow: none;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	align-items: center;
	margin: 0;
	padding: 0;
}

.nav-link {
	text-decoration: none;
	color: var(--color-dark);
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.75rem 0.75rem;
	text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
	white-space: nowrap;
}

.header.scrolled .nav-link {
	text-shadow: none;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-secondary);
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link:hover {
	color: var(--color-primary);
	transform: translateY(-1px);
}

.header:not(.scrolled) .nav-link:hover {
	text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.nav-cta {
	padding: 0.75rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	border-radius: 8px;
	white-space: nowrap;
}

.header:not(.scrolled) .nav-cta {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 8px; /* Área de toque más grande */
	min-width: 44px; /* Tamaño mínimo recomendado para touch */
	min-height: 44px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1001;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--color-primary);
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

/* Hero Styles */
.hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, var(--color-light) 0%, var(--color-accent) 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: 0;
}

.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle at 20% 80%, rgba(139, 21, 56, 0.1) 0%, transparent 50%),
	                  radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.hero-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1;
	width: 100%;
	gap: 4rem;
}

.hero-main {
	flex: 1;
	max-width: 600px;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

/* Hero badge styles removed - not used in new design */

.hero-name {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	line-height: 1.1;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.name-line {
	display: block;
}

.name-line:first-child {
	color: var(--color-primary);
}

.name-line:last-child {
	color: var(--color-secondary);
}

.hero-titles {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.title-group {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.title-separator {
	color: var(--color-gray);
	font-size: 1.2rem;
	font-weight: 300;
	margin: 0 0.5rem;
}

.title-item {
	font-size: 1.3rem;
	color: var(--color-gray);
	font-weight: 500;
}

.title-separator {
	color: var(--color-secondary);
	font-size: 1.5rem;
	font-weight: 300;
}

.hero-tagline {
	font-size: 1.2rem;
	color: var(--color-dark);
	margin-bottom: 2rem;
	line-height: 1.6;
	font-weight: 500;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

/* Hero stats styles removed - not used in new design */

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 400px;
}

.hero-circle {
	position: relative;
	width: 300px;
	height: 300px;
}

.circle-border {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-secondary), #FFD700);
	border: 8px solid transparent;
	background-clip: padding-box;
}

.circle-content {
	position: absolute;
	top: 8px;
	left: 8px;
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	border-radius: 50%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.circle-content i {
	font-size: 4rem;
	color: var(--color-primary);
}


/* History Styles */
.history-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.history-icon {
	width: 200px;
	height: 200px;
	border-radius: var(--border-radius);
	background: var(--color-accent);
	border: 4px solid var(--color-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.history-icon i {
	font-size: 4rem;
	color: var(--color-primary);
}

.history-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: var(--color-gray);
}

/* Services Styles */
.bg-light {
	background-color: var(--color-light-gray);
}

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

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

.service-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--color-primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.service-icon i {
	font-size: 2rem;
}

.service-card h3 {
	font-size: 1.3rem;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.service-card p {
	color: var(--color-gray);
	line-height: 1.6;
}

/* Life Stages Styles */
.life-stages {
	max-width: 800px;
	margin: 0 auto;
}


.stage-content {
	background: white;
	padding: 2rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}

.stage-panel {
	display: none;
}

.stage-panel.active {
	display: block;
}

.stage-panel h3 {
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.stage-panel ul {
	list-style: none;
}

.stage-panel li {
	padding: 0.5rem 0;
	color: var(--color-gray);
	position: relative;
	padding-left: 1.5rem;
}

.stage-panel li::before {
	content: '•';
	color: var(--color-secondary);
	font-weight: bold;
	position: absolute;
	left: 0;
}

/* FAQ Styles */
.faq-container {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	gap: 1.5rem;
}

.faq-item {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.08),
		0 4px 20px rgba(139, 21, 56, 0.1);
	border: 1px solid rgba(139, 21, 56, 0.1);
	overflow: hidden;
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.faq-item:hover {
	transform: translateY(-5px);
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.12),
		0 8px 30px rgba(139, 21, 56, 0.15);
}


.faq-item.active {
	transform: translateY(-3px);
	box-shadow: 
		0 15px 50px rgba(0, 0, 0, 0.1),
		0 6px 25px rgba(139, 21, 56, 0.2);
}


.faq-question {
	width: 100%;
	padding: 2rem;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-primary);
	transition: all 0.3s ease;
	position: relative;
}

.faq-question:hover {
	color: var(--color-secondary);
}

.faq-question i {
	font-size: 1.1rem;
	color: var(--color-secondary);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 107, 53, 0.1);
	padding: 0.5rem;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
	background: var(--color-secondary);
	color: white;
}

.faq-answer {
	padding: 0 2rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 255, 255, 0.5);
}

.faq-item.active .faq-answer {
	padding: 0 2rem 2rem;
	max-height: 300px;
}

.faq-answer p {
	color: var(--color-gray);
	line-height: 1.7;
	font-size: 1.05rem;
	margin: 0;
}

/* Appointment Card Styles */
.appointment-container {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 1200px;
}

.appointment-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: white;
	border-radius: 25px;
	box-shadow: 
		0 25px 60px rgba(0, 0, 0, 0.15),
		0 10px 30px rgba(139, 21, 56, 0.1);
	overflow: hidden;
	position: relative;
}

.appointment-form-side {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
	backdrop-filter: blur(20px);
	padding: 6.24rem 6.5rem;
	position: relative;
}

.payment-side {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, #FF8C42 100%);
	color: white;
	padding: 6.24rem 6.5rem;
	position: relative;
	overflow: hidden;
}

.payment-side::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: shimmer 4s ease-in-out infinite;
}

.payment-content {
	position: relative;
	z-index: 2;
}

/* Form Styles */
.form {
	background: none;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	border: none;
	position: relative;
	overflow: visible;
}


.form h3 {
	color: var(--color-primary);
	margin-bottom: 2rem;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

.form-group {
	margin-bottom: 2rem;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 0.8rem;
	font-weight: 600;
	color: var(--color-primary);
	font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem 1.2rem;
	border: 2px solid rgba(139, 21, 56, 0.2);
	border-radius: 15px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
	transform: translateY(-2px);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Payment Styles */
.payment-content h3 {
	margin-bottom: 2rem;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	position: relative;
	z-index: 2;
}

.payment-methods h4,
.rates h4 {
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
	font-weight: 600;
	position: relative;
	z-index: 2;
}

.payment-icons {
	display: flex;
	gap: 1.2rem;
	margin-bottom: 2rem;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.payment-icons i {
	font-size: 2.2rem;
	background: rgba(255, 255, 255, 0.95);
	color: var(--color-primary);
	width: 60px;
	height: 60px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.payment-icons i:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.rates ul {
	list-style: none;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

.rates li {
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.rates li:hover {
	background: rgba(255, 255, 255, 0.1);
	padding-left: 1rem;
	padding-right: 1rem;
	border-radius: 10px;
}

.rates li:last-child {
	border-bottom: none;
}

.secure-process {
	font-size: 1rem;
	opacity: 0.9;
	margin-bottom: 1.5rem;
	text-align: center;
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.1);
	padding: 1rem;
	border-radius: 15px;
	backdrop-filter: blur(10px);
}

/* Domiciliary Service Styles */
.domiciliary-container {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 1200px;
}

.domiciliary-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: white;
	border-radius: 25px;
	box-shadow: 
		0 25px 60px rgba(0, 0, 0, 0.15),
		0 10px 30px rgba(139, 21, 56, 0.1);
	overflow: hidden;
	position: relative;
}

.domiciliary-visual {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, #FF8C42 100%);
	color: white;
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.domiciliary-visual::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: shimmer 4s ease-in-out infinite;
}

.domiciliary-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.domiciliary-icon i {
	font-size: 2.5rem;
	color: white;
}

.domiciliary-features {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	position: relative;
	z-index: 2;
}

.feature-badge {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 0.6rem 1rem;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.feature-badge:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

.feature-badge i {
	font-size: 1.2rem;
	color: white;
}

.feature-badge span {
	font-size: 0.9rem;
	font-weight: 600;
	color: white;
}

.domiciliary-content {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
	backdrop-filter: blur(20px);
	padding: 2.5rem 2rem;
	position: relative;
}

.domiciliary-content h3 {
	color: var(--color-primary);
	margin-bottom: 1rem;
	font-size: 1.6rem;
	font-weight: 700;
}

.domiciliary-content p {
	color: var(--color-gray);
	line-height: 1.7;
	margin-bottom: 1.8rem;
	font-size: 1rem;
}

.benefits-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.8rem;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	padding: 1.2rem;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	border: 1px solid rgba(139, 21, 56, 0.1);
	transition: all 0.3s ease;
}

.benefit-item:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(139, 21, 56, 0.1);
}

.benefit-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.benefit-icon i {
	font-size: 1.2rem;
	color: white;
}

.benefit-text h4 {
	color: var(--color-primary);
	margin-bottom: 0.3rem;
	font-size: 1rem;
	font-weight: 600;
}

.benefit-text p {
	color: var(--color-gray);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

.domiciliary-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

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

.contact-info p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: var(--color-primary);
	font-weight: 600;
	font-size: 1rem;
	margin: 0;
}

.contact-info i {
	color: var(--color-secondary);
}

/* Testimonials Styles */
.testimonials-container {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.testimonials-slider {
	position: relative;
	overflow: hidden;
	margin-bottom: 2rem;
	min-height: 400px;
}

.testimonial-card {
	background: white;
	padding: 3rem 2.5rem;
	border-radius: 20px;
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.1),
		0 8px 30px rgba(139, 21, 56, 0.08);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px) scale(0.95);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.testimonial-card.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.testimonial-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-secondary), #FF8C42);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	font-size: 2.5rem;
	font-weight: bold;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
	position: relative;
}

.testimonial-avatar::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, var(--color-secondary), #FF8C42);
	border-radius: 50%;
	z-index: -1;
	opacity: 0.3;
}

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

.testimonial-content h4 {
	color: var(--color-primary);
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	font-weight: 700;
}

.testimonial-role {
	color: var(--color-gray);
	margin-bottom: 1.5rem;
	font-style: italic;
	font-size: 1rem;
}

.testimonial-text {
	color: var(--color-gray);
	line-height: 1.8;
	margin-bottom: 2rem;
	font-size: 1.1rem;
	position: relative;
}

.testimonial-text::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: -20px;
	font-size: 4rem;
	color: var(--color-secondary);
	opacity: 0.3;
	font-family: serif;
}

.testimonial-rating {
	color: #FFD700;
	font-size: 1.3rem;
	margin-bottom: 0;
	display: flex;
	justify-content: center;
	gap: 0.3rem;
}

.testimonial-rating i {
	text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.testimonial-navigation {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

.testimonial-prev,
.testimonial-next {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-secondary), #FF8C42);
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
	position: relative;
	overflow: hidden;
}

.testimonial-prev::before,
.testimonial-next::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 50%;
}

.testimonial-prev:hover::before,
.testimonial-next:hover::before {
	opacity: 1;
}

.testimonial-prev:hover,
.testimonial-next:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.testimonial-prev i,
.testimonial-next i {
	position: relative;
	z-index: 2;
}

/* Contact Styles */
.contact-container {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 1200px;
}

.contact-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: white;
	border-radius: 25px;
	box-shadow: 
		0 25px 60px rgba(0, 0, 0, 0.15),
		0 10px 30px rgba(139, 21, 56, 0.1);
	overflow: hidden;
	position: relative;
}

.contact-info-side {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, #FF8C42 100%);
	color: white;
	padding: 3rem 2.5rem;
	position: relative;
	overflow: hidden;
}

.contact-info-side::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: shimmer 4s ease-in-out infinite;
}

.contact-header {
	margin-bottom: 2.5rem;
	position: relative;
	z-index: 2;
}

.contact-header h3 {
	color: white;
	margin-bottom: 1rem;
	font-size: 1.8rem;
	font-weight: 700;
}

.contact-header p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	position: relative;
	z-index: 2;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 1.5rem;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.contact-method:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-3px);
}

.contact-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.contact-icon.whatsapp {
	background: #25D366;
}

.contact-icon.email {
	background: #EA4335;
}

.contact-icon.location {
	background: #34A853;
}

.contact-details {
	flex: 1;
}

.contact-details h4 {
	color: white;
	margin-bottom: 0.3rem;
	font-size: 1.1rem;
	font-weight: 600;
}

.contact-details p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0.3rem;
	font-size: 0.95rem;
}

.contact-status {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8rem;
	font-style: italic;
}

.contact-action {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-action:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.contact-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	z-index: 2;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 0.8rem 1.2rem;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
	font-size: 1rem;
	color: white;
}

.feature-item span {
	font-size: 0.9rem;
	color: white;
	font-weight: 500;
}

.contact-form-side {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
	backdrop-filter: blur(20px);
	padding: 3rem 2.5rem;
	position: relative;
}

.form-header {
	margin-bottom: 2rem;
}

.form-header h3 {
	color: var(--color-primary);
	margin-bottom: 0.8rem;
	font-size: 1.8rem;
	font-weight: 700;
}

.form-header p {
	color: var(--color-gray);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-form .form-group {
	margin-bottom: 0;
}

.contact-form .form-group label {
	color: var(--color-primary);
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
	width: 100%;
	padding: 1rem 1.2rem;
	border: 2px solid rgba(139, 21, 56, 0.1);
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
	transform: translateY(-2px);
}

.contact-form .form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.contact-form .btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.form-note {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-gray);
	font-size: 0.9rem;
}

.form-note i {
	color: var(--color-secondary);
}

/* Footer Styles */
.footer {
	background: var(--color-primary);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-brand h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.footer-brand p {
	opacity: 0.9;
}

.footer-links h4,
.footer-confidentiality h4 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

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

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: white;
	text-decoration: none;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.footer-links a:hover {
	opacity: 1;
}

.footer-confidentiality p {
	opacity: 0.9;
	line-height: 1.6;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 1rem;
	text-align: center;
	opacity: 0.8;
}

/* Floating Social Icons */
.floating-social {
	position: fixed;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	z-index: 1000;
	transition: all 0.3s ease;
}

.social-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.social-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.social-btn:hover {
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-btn i {
	font-size: 1.2rem;
	color: white;
	z-index: 2;
}

/* Individual social button colors */
.facebook-btn {
	background: linear-gradient(135deg, #1877F2, #0D47A1);
}

.instagram-btn {
	background: linear-gradient(135deg, #E4405F, #C13584);
}

.email-btn {
	background: linear-gradient(135deg, #EA4335, #D32F2F);
}

.whatsapp-btn {
	background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Animation for social buttons */
@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.social-btn {
	animation: float 3s ease-in-out infinite;
}

.social-btn:nth-child(2) {
	animation-delay: 0.5s;
}

.social-btn:nth-child(3) {
	animation-delay: 1s;
}

.social-btn:nth-child(4) {
	animation-delay: 1.5s;
}

/* Floating Contact Buttons */
.floating-contact {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	transition: all 0.3s ease;
}

.floating-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.floating-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: white;
	font-size: 1.5rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.floating-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

.floating-btn:hover::before {
	transform: translateX(100%);
}

.floating-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.floating-btn:active {
	transform: translateY(-1px) scale(0.98);
}

.whatsapp-btn {
	background: linear-gradient(135deg, #25D366, #128C7E);
	animation: whatsapp-pulse 3s infinite;
}

.whatsapp-btn:hover {
	background: linear-gradient(135deg, #128C7E, #25D366);
}

.phone-btn {
	background: linear-gradient(135deg, var(--color-primary), #6B1A2C);
}

.phone-btn:hover {
	background: linear-gradient(135deg, #6B1A2C, var(--color-primary));
}

.email-btn {
	background: linear-gradient(135deg, var(--color-secondary), #E55A2B);
}

.email-btn:hover {
	background: linear-gradient(135deg, #E55A2B, var(--color-secondary));
}

.appointment-btn {
	background: linear-gradient(135deg, var(--color-secondary), #FF8C42);
	animation: appointment-glow 2s infinite;
	position: relative;
}

.appointment-btn::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, var(--color-secondary), #FF8C42, var(--color-secondary));
	border-radius: 50%;
	z-index: -1;
	animation: appointment-border 2s infinite;
}

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

/* Animaciones específicas */
@keyframes whatsapp-pulse {
	0%, 100% {
		box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
	}
	50% {
		box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3), 0 0 20px rgba(37, 211, 102, 0.4);
	}
}

@keyframes appointment-glow {
	0%, 100% {
		box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
	}
	50% {
		box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.5);
	}
}

@keyframes appointment-border {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.btn-tooltip {
	position: absolute;
	right: 70px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--color-dark);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-tooltip::after {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 5px solid transparent;
	border-left-color: var(--color-dark);
}

.floating-btn:hover .btn-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(-5px);
}

/* Efecto de ondas para WhatsApp */
.whatsapp-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.3);
	transform: translate(-50%, -50%) scale(0);
	animation: whatsapp-ripple 2s infinite;
}

@keyframes whatsapp-ripple {
	0% {
		transform: translate(-50%, -50%) scale(0);
		opacity: 1;
	}
	100% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
	}
}

@keyframes ripple {
	to {
		transform: scale(4);
		opacity: 0;
	}
}

@keyframes badge-pulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
	}
	50% {
		transform: scale(1.1);
		box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.nav-menu {
		gap: 1.75rem;
	}
	
	.nav-link {
		padding: 0.5rem 0.5rem;
		font-size: 0.95rem;
	}
}

@media (max-width: 768px) {
	.nav {
		padding: 0.75rem 0;
		min-height: 60px;
		justify-content: space-between;
	}

	.nav-menu,
	.nav-actions {
		display: none;
	}

	.nav-toggle {
		display: flex;
		margin-left: auto; /* Empuja el menú hamburguesa a la derecha */
	}

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

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

	.logo-icon {
		width: 40px;
		height: 40px;
	}

	/* Asegurar que el navbar transparente funcione bien en móviles */
	.header:not(.scrolled) .nav-toggle span {
		background: var(--color-primary);
		box-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
	}
	
	/* Mejorar la visibilidad del menú hamburguesa */
	.nav-toggle {
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(10px);
		border-radius: 8px;
		border: 1px solid rgba(139, 21, 56, 0.1);
		transition: all 0.3s ease;
	}
	
	.nav-toggle:hover {
		background: rgba(255, 255, 255, 0.2);
		transform: scale(1.05);
	}
	
	.header:not(.scrolled) .nav-toggle {
		background: rgba(255, 255, 255, 0.2);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.3);
	}
}

	.hero {
		padding: 100px 0 60px;
		min-height: 90vh;
	}

	.hero-content {
		flex-direction: column;
		text-align: center;
		gap: 3rem;
	}

	.hero-main {
		max-width: 100%;
		text-align: center;
	}

	.hero-visual {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.hero-circle {
		width: 250px;
		height: 250px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	/* Hide social buttons on mobile */
	.floating-social {
		display: none;
	}

	.hero-name {
		font-size: 2.5rem;
	}

	.hero-titles {
		flex-direction: column;
		gap: 0.5rem;
	}

	.hero-stats {
		justify-content: center;
		gap: 1.5rem;
		flex-wrap: wrap;
	}

	.hero-card {
		padding: 2rem 1.5rem;
	}



	.appointment-card {
		grid-template-columns: 1fr 1fr;
		margin: 0 1rem;
	}

	.appointment-form-side,
	.payment-side {
		padding: 5.2rem 5.2rem;
	}

	/* Domiciliary Responsive */
	.domiciliary-card {
		grid-template-columns: 1fr;
		margin: 0 1rem;
	}

	.domiciliary-visual,
	.domiciliary-content {
		padding: 2rem 1.5rem;
	}

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

	.domiciliary-features {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.8rem;
	}

	.feature-badge {
		flex: 1;
		min-width: 120px;
		justify-content: center;
	}

	.form h3,
	.payment-content h3 {
		font-size: 1.5rem;
	}

	.payment-icons i {
		width: 50px;
		height: 50px;
		font-size: 1.8rem;
	}

	/* Testimonials Responsive */
	.testimonials-container {
		max-width: 100%;
		margin: 0 1rem;
	}

	.testimonials-slider {
		min-height: 350px;
	}

	.testimonial-card {
		padding: 2rem 1.5rem;
	}

	.testimonial-avatar {
		width: 80px;
		height: 80px;
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}

	.testimonial-content h4 {
		font-size: 1.3rem;
	}

	.testimonial-text {
		font-size: 1rem;
	}

	.testimonial-text::before {
		font-size: 3rem;
		top: -5px;
		left: -15px;
	}

	.testimonial-prev,
	.testimonial-next {
		width: 50px;
		height: 50px;
		font-size: 1.1rem;
	}

	/* Contact Responsive */
	.contact-card {
		grid-template-columns: 1fr 1fr;
		margin: 0 1rem;
	}

	.contact-info-side,
	.contact-form-side {
		padding: 2rem 1.5rem;
	}

	.contact-methods {
		gap: 0.8rem;
	}

	.contact-method {
		padding: 1rem;
	}

	.contact-icon {
		width: 45px;
		height: 45px;
		font-size: 1.2rem;
	}

	.contact-features {
		gap: 0.8rem;
	}

	.feature-item {
		padding: 0.6rem 1rem;
	}

	/* Floating buttons responsive */
	.floating-contact {
		bottom: 20px;
		right: 20px;
	}

	.floating-btn {
		width: 56px;
		height: 56px;
		font-size: 1.3rem;
		min-width: 56px; /* Asegurar tamaño mínimo para touch */
		min-height: 56px;
	}

	.btn-tooltip {
		display: none;
	}

	/* Ajustar animaciones para móvil */
	.whatsapp-btn::after {
		animation: whatsapp-ripple 3s infinite;
	}

	.appointment-btn::after {
		animation: appointment-border 3s infinite;
	}

/* Life Stages Styles */
.life-stages-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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




.life-stages {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.stage-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stage-tab {
	display: inline-flex;
	align-items: center;
	justify-content: 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;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 140px;
	text-align: center;
	position: relative;
	overflow: hidden;
}


.stage-tab i {
	font-size: 1rem;
	color: var(--color-secondary);
	transition: all 0.3s ease;
}

.stage-tab.active {
	background: var(--color-primary);
	color: white;
	border-color: var(--color-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(139, 21, 56, 0.3);
}

.stage-tab:hover {
	background: rgba(139, 21, 56, 0.15);
	border-color: var(--color-primary);
	color: var(--color-primary);
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(139, 21, 56, 0.2);
}

.stage-tab.active i,
.stage-tab:hover i {
	transform: scale(1.1);
}

.stage-content {
	background: rgba(255, 255, 255, 0.95);
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
}


.stage-panel {
	display: none;
	grid-template-columns: 1fr 1.5fr;
	gap: 3rem;
	align-items: center;
}

.stage-panel.active {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 2rem;
	animation: fadeInUp 0.6s ease-out;
}

.stage-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.stage-icon {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(139, 38, 53, 0.2);
}

.stage-icon i {
	font-size: 2.5rem;
	color: white;
}



.stage-info h3 {
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	font-size: 2rem;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stage-info p {
	color: var(--color-gray);
	line-height: 1.8;
	margin-bottom: 2rem;
	font-size: 1.1rem;
	font-weight: 500;
}

.stage-services {
	list-style: none;
	margin: 0;
	padding: 0;
}

.stage-services li {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	color: var(--color-gray);
	font-weight: 500;
	border-bottom: 1px solid rgba(255, 107, 53, 0.1);
	transition: all 0.3s ease;
}

.stage-services li:last-child {
	border-bottom: none;
}

.stage-services li:hover {
	color: var(--color-primary);
	transform: translateX(10px);
}

.stage-services li i {
	color: var(--color-secondary);
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.stage-services li:hover i {
	transform: scale(1.2);
	color: var(--color-primary);
}

/* Responsive Life Stages */
@media (max-width: 768px) {
	.stage-tabs {
		flex-direction: row;
		align-items: center;
		gap: 0.5rem;
		padding: 1rem;
		overflow-x: auto;
		justify-content: flex-start;
	}

	.stage-tab {
		min-width: 120px;
		flex-shrink: 0;
		text-align: center;
		padding: 0.5rem 0.8rem;
		font-size: 0.8rem;
		gap: 0.3rem;
	}

	.stage-tab i {
		font-size: 1rem;
	}

	/* FAQ Responsive */
	.faq-container {
		gap: 1rem;
	}

	.faq-item {
		border-radius: 15px;
	}

	.faq-question {
		padding: 1.5rem;
		font-size: 1.1rem;
	}

	.faq-question i {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}

	.faq-item.active .faq-answer {
		padding: 0 1.5rem 1.5rem;
	}

	.faq-answer p {
		font-size: 1rem;
	}

	.stage-panel {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.stage-icon {
		width: 100px;
		height: 100px;
	}

	.stage-icon i {
		font-size: 2rem;
	}

	.stage-content {
		padding: 2rem;
	}


	.stage-info h3 {
		font-size: 1.5rem;
	}

	.stage-info p {
		font-size: 1rem;
	}

	.stage-services li {
		padding: 0.8rem 0;
		justify-content: center;
		text-align: left;
	}

	.stage-services li:hover {
		transform: none;
	}
}

@media (max-width: 480px) {
	/* Ajustar tamaño del logo en pantallas pequeñas */
	.logo-icon {
		width: 35px;
		height: 35px;
	}

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

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

	.stage-icon {
		width: 80px;
		height: 80px;
	}

	.stage-icon i {
		font-size: 1.5rem;
	}

	.stage-content {
		padding: 1.5rem;
	}

	.stage-info h3 {
		font-size: 1.3rem;
	}

	.stage-services li {
		padding: 0.6rem 0;
		font-size: 0.9rem;
	}

	.stage-tab {
		padding: 0.4rem 0.6rem;
		font-size: 0.75rem;
		min-width: 100px;
		gap: 0.3rem;
	}

	.stage-tab i {
		font-size: 0.8rem;
	}

	/* FAQ Mobile */
	.faq-question {
		padding: 1.2rem;
		font-size: 1rem;
	}

	.faq-question i {
		width: 30px;
		height: 30px;
		font-size: 0.9rem;
	}

	.faq-item.active .faq-answer {
		padding: 0 1.2rem 1.2rem;
	}

	.faq-answer p {
		font-size: 0.95rem;
	}

	/* Appointment Mobile */
	.appointment-card {
		grid-template-columns: 1fr;
		margin: 0 0.5rem;
		gap: 0;
	}
	
	.appointment-form-side,
	.payment-side {
		padding: 2rem 1.5rem;
	}
	
	.appointment-form-side {
		border-bottom: 1px solid rgba(139, 21, 56, 0.1);
	}

	.form h3,
	.payment-content h3 {
		font-size: 1.3rem;
	}

	.payment-icons i {
		width: 40px;
		height: 40px;
		font-size: 1.3rem;
	}

	.form-group input,
	.form-group textarea {
		padding: 1rem 1.2rem;
		font-size: 1rem;
		border-radius: 12px;
		min-height: 48px; /* Mejor para touch */
	}
	
	.form-group textarea {
		min-height: 120px;
		resize: vertical;
	}

	.rates ul li {
		font-size: 0.9rem;
		padding: 0.5rem 0;
	}

	/* Domiciliary Mobile */
	.domiciliary-visual,
	.domiciliary-content {
		padding: 2rem 1.2rem;
	}

	.domiciliary-icon {
		width: 80px;
		height: 80px;
	}

	.domiciliary-icon i {
		font-size: 2rem;
	}

	.domiciliary-content h3 {
		font-size: 1.5rem;
	}

	.benefit-item {
		padding: 0.8rem;
	}

	.benefit-icon {
		width: 40px;
		height: 40px;
	}

	.benefit-icon i {
		font-size: 1.1rem;
	}

	.benefit-text h4 {
		font-size: 1rem;
	}

	.benefit-text p {
		font-size: 0.9rem;
	}

	.feature-badge {
		padding: 0.6rem 1rem;
		font-size: 0.8rem;
	}

	.feature-badge i {
		font-size: 1rem;
	}

	/* Testimonials Mobile */
	.testimonials-slider {
		min-height: 300px;
	}

	.testimonial-card {
		padding: 1.5rem 1rem;
	}

	.testimonial-avatar {
		width: 70px;
		height: 70px;
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}

	.testimonial-content h4 {
		font-size: 1.2rem;
	}

	.testimonial-text {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.testimonial-text::before {
		font-size: 2.5rem;
		top: -3px;
		left: -10px;
	}

	.testimonial-prev,
	.testimonial-next {
		width: 45px;
		height: 45px;
		font-size: 1rem;
	}

	/* Contact Mobile */
	.contact-card {
		grid-template-columns: 1fr;
		margin: 0 0.5rem;
		gap: 0;
	}
	
	.contact-info-side {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.contact-info-side,
	.contact-form-side {
		padding: 1.5rem 1rem;
	}

	.contact-header h3 {
		font-size: 1.5rem;
	}

	.contact-methods {
		gap: 0.6rem;
	}

	.contact-method {
		padding: 0.8rem;
		gap: 0.6rem;
	}

	.contact-icon {
		width: 40px;
		height: 40px;
		font-size: 1.1rem;
	}

	.contact-features {
		gap: 0.6rem;
	}

	.feature-item {
		padding: 0.5rem 0.8rem;
		font-size: 0.8rem;
	}

	.contact-details h4 {
		font-size: 1rem;
	}

	.contact-details p {
		font-size: 0.9rem;
	}

	.contact-status {
		font-size: 0.75rem;
	}

	.form-header h3 {
		font-size: 1.5rem;
	}

	.contact-form .form-group input,
	.contact-form .form-group textarea {
		padding: 1rem 1.2rem;
		font-size: 1rem;
		min-height: 48px; /* Mejor para touch */
		border-radius: 12px;
	}
	
	.contact-form .form-group textarea {
		min-height: 120px;
		resize: vertical;
	}

	.contact-form .btn {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}
}

/* Hero Mobile Optimizations - Applied from main.css */
@media (max-width: 768px) {
	/* Hero Mobile Optimizations */
	.hero {
		padding: 120px 0 80px; /* Más padding superior para compensar la ausencia de la esfera */
		min-height: 100vh;
		display: flex;
		align-items: center;
		position: relative;
	}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2.5rem;
		width: 100%;
		padding: 0 1rem;
	}

	.hero-main {
		order: 1; /* Ahora es el único contenido */
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}

	.hero-visual {
		display: none; /* Ocultar esfera en móvil */
	}

	.hero-badge {
		font-size: 0.85rem;
		padding: 0.4rem 0.8rem;
		margin-bottom: 1rem;
		width: auto;
		max-width: 280px;
	}

	.hero-name {
		font-size: 2.4rem;
		line-height: 1.1;
		margin-bottom: 1rem;
		text-align: center;
	}

	.name-line {
		display: block;
		margin-bottom: 0.2rem;
	}

	.hero-titles {
		flex-direction: column;
		gap: 0.6rem;
		align-items: center;
		margin-bottom: 1rem;
		width: 100%;
	}

	.title-group {
		width: 100%;
		max-width: 320px;
		justify-content: center;
		padding: 0.6rem 1rem;
		flex-wrap: wrap;
		gap: 0.4rem;
	}

	.title-item {
		font-size: 1rem;
		text-align: center;
		line-height: 1.3;
	}

	.title-separator {
		display: none;
	}

	.hero-tagline {
		font-size: 1.1rem;
		margin-bottom: 1.5rem;
		line-height: 1.5;
		text-align: center;
		max-width: 320px;
	}

	.hero-trust {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.6rem;
		justify-content: center;
		width: 100%;
		max-width: 350px;
	}

	.trust-item {
		flex: 1;
		min-width: 100px;
		justify-content: center;
		padding: 0.5rem 0.8rem;
		font-size: 0.8rem;
		text-align: center;
	}

	.trust-item i {
		font-size: 0.9rem;
	}

	.hero-circle {
		width: 220px;
		height: 220px;
		margin: 0 auto;
	}

	.profile-icon i {
		font-size: 3.5rem;
	}

	.particle {
		width: 15px;
		height: 15px;
	}

	.particle i {
		font-size: 0.6rem;
	}

	/* Optimizaciones de rendimiento para móvil */
	.hero-particles {
		animation-duration: 30s;
	}

	.particle {
		animation-duration: 4s;
	}

	.circle-glow {
		animation-duration: 4s;
	}

	/* Mejoras de accesibilidad y UX móvil */
	.hero-badge,
	.trust-item,
	.title-group {
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
	}

	/* Mejorar contraste en móvil */
	.hero-badge {
		background: rgba(255, 255, 255, 0.25);
		border: 1px solid rgba(255, 255, 255, 0.4);
	}

	.trust-item {
		background: rgba(255, 255, 255, 0.15);
		border: 1px solid rgba(255, 255, 255, 0.3);
	}

	.title-group {
		background: rgba(255, 255, 255, 0.15);
		border: 1px solid rgba(255, 255, 255, 0.3);
	}

	/* Optimizar para pantallas táctiles */
	.hero-circle {
		touch-action: manipulation;
	}

	/* Mejorar legibilidad del texto */
	.hero-name {
		font-weight: 800;
		letter-spacing: -0.01em;
	}

	.hero-tagline {
		font-weight: 500;
		letter-spacing: 0.01em;
	}

	/* Ajustar espaciado para mejor scroll */
	.hero {
		scroll-margin-top: 80px;
	}
}

@media (max-width: 480px) {
	/* Hero Mobile Extra Small Optimizations */
	.hero {
		padding: 100px 0 60px; /* Más padding superior para compensar la ausencia de la esfera */
		min-height: 100vh;
	}

	.hero-content {
		gap: 2rem;
		padding: 0 0.5rem;
	}

	.hero-main {
		gap: 1.2rem;
	}

	.hero-visual {
		display: none; /* Ocultar esfera en móvil pequeño también */
	}

	.hero-badge {
		font-size: 0.75rem;
		padding: 0.3rem 0.6rem;
		margin-bottom: 0.8rem;
		max-width: 240px;
	}

	.hero-name {
		font-size: 1.9rem;
		line-height: 1.05;
		margin-bottom: 0.8rem;
	}

	.name-line {
		margin-bottom: 0.1rem;
	}

	.hero-titles {
		gap: 0.4rem;
		margin-bottom: 0.8rem;
	}

	.title-group {
		max-width: 280px;
		padding: 0.5rem 0.8rem;
		gap: 0.3rem;
	}

	.title-item {
		font-size: 0.9rem;
		line-height: 1.2;
	}

	.hero-tagline {
		font-size: 1rem;
		margin-bottom: 1.2rem;
		line-height: 1.4;
		max-width: 280px;
	}

	.hero-trust {
		gap: 0.4rem;
		max-width: 300px;
	}

	.trust-item {
		min-width: 85px;
		padding: 0.4rem 0.6rem;
		font-size: 0.7rem;
	}

	.trust-item i {
		font-size: 0.8rem;
	}

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

	.profile-icon i {
		font-size: 2.8rem;
	}

	.particle {
		width: 12px;
		height: 12px;
	}

	.particle i {
		font-size: 0.5rem;
	}

	/* Mejorar legibilidad en pantallas pequeñas */
	.hero-name {
		text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
		font-weight: 900;
	}

	.hero-tagline {
		text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
		font-weight: 600;
	}

	/* Mejoras adicionales para pantallas muy pequeñas */
	.hero-badge {
		background: rgba(255, 255, 255, 0.3);
		border: 1px solid rgba(255, 255, 255, 0.5);
	}

	.trust-item {
		background: rgba(255, 255, 255, 0.2);
		border: 1px solid rgba(255, 255, 255, 0.4);
	}

	.title-group {
		background: rgba(255, 255, 255, 0.2);
		border: 1px solid rgba(255, 255, 255, 0.4);
	}

	/* Optimizar botones para pantallas táctiles pequeñas */
	.btn {
		min-height: 44px; /* Tamaño mínimo recomendado para touch */
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
	}

	/* Mejorar accesibilidad en móvil */
	.hero {
		scroll-margin-top: 70px;
	}

	/* Reducir aún más las animaciones para mejor rendimiento */
	.hero-particles {
		animation-duration: 40s;
	}

	.particle {
		animation-duration: 5s;
	}

	.circle-glow {
		animation-duration: 5s;
	}
}