/* Reset y Variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales - Modernizados */
    --primary-color: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #3730a3;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --success-color: #059669;
    --warning-color: #f59e0b;
    --danger-color: #dc2626;
    
    /* Colores neutros */
    --dark-color: #111827;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white-color: #ffffff;
    --light-color: #f8fafc;
    --gray-color: #6b7280;
    --light-gray: #e5e7eb;
    
    /* Gradientes modernos */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --modern-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    --hero-gradient: linear-gradient(135deg, #4338ca 0%, #7c3aed 30%, #ec4899 70%, #f59e0b 100%);
    --card-gradient: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --glass-gradient: rgba(255, 255, 255, 0.1);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    
    /* Sombras modernas */
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.3);
    
    /* Tipografía */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Border radius modernos */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-2xl: 32px;
    --border-radius-full: 9999px;
    
    /* Transiciones suaves */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estilos base */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    max-width: 100vw;
}

/* Contenedores */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Títulos y texto */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    margin-bottom: var(--spacing-sm);
    color: #555;
    line-height: 1.6;
}

.service-card p {
    color: #444;
    font-size: 1rem;
}

.service-card h3 {
    color: var(--dark-color);
    font-weight: 600;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: var(--border-radius-xl);
    font-weight: 500;
    transition: var(--transition-medium);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white-color);
    box-shadow: var(--shadow-medium);
}

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

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

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

.btn-contact {
    background: var(--accent-color);
    color: var(--white-color);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-contact:hover {
    background: #219a52;
    transform: translateY(-2px);
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Fallback para navegadores que no soportan background-clip */
@supports not (-webkit-background-clip: text) {
    .nav-logo h2 {
        color: var(--primary-color);
        background: none;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    text-decoration: none;
    color: #2c3e50!important;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-fast);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section - Completamente Modernizado */
.hero {
    min-height: 100vh;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--spacing-2xl) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 100%;
    overflow: hidden;
}

.hero-text {
    color: var(--white-color);
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
}

.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.profile-image-hero {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-large);
}

.profile-image-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    /* Animation removed for better performance */
}

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

.hero-title {
    margin-bottom: var(--spacing-lg);
    /* Animation removed for better performance */
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    /* Animation removed for better performance */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.hero-subtitle strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.hero-values {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    /* Animation removed for better performance */
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    text-align: center;
    flex: 1;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-medium);
}

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

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

.value-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    /* Animation removed for better performance */
}

.profile-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image-hero {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* Animation removed for better performance */
}

.profile-image-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.profile-image-hero:hover img {
    transform: scale(1.05);
}

.profile-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--success-color);
    border-radius: var(--border-radius-full);
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 2px solid var(--white-color);
    box-shadow: var(--shadow-medium);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-content i {
    font-size: 0.9rem;
}

.floating-stats {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    justify-content: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 120px;
    box-shadow: var(--shadow-small);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.2;
}

/* Secciones generales */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 400;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    padding: var(--spacing-2xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--white-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.service-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

/* Hover effect removed for better performance */

.service-icon-old {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    color: var(--white-color);
}

.service-benefits {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.service-benefits li {
    padding: var(--spacing-xs) 0;
    position: relative;
    padding-left: 25px;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--light-gray);
}

/* About Section */
.about-section {
    background: var(--white-color);
    padding: var(--spacing-xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
}

.credential-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
}

.credential-item h4 {
    margin: 0 0 5px 0;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 600;
}

.credential-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.profile-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-image {
    margin-bottom: var(--spacing-md);
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.specialties h4 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

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

.specialties li {
    padding: var(--spacing-xs);
    color: #555;
    font-weight: 500;
}

.specialties li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: var(--spacing-xs);
}

/* Sobre Mí Section */
.sobre-mi {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
}

.about-text h4 {
    color: var(--primary-color);
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
    font-size: 1.1rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-sm);
    position: relative;
}

.about-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.credentials {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    margin-top: var(--spacing-md);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.stat-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 2px solid transparent;
    transition: var(--transition-medium);
}

.stat-item:hover {
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-top: var(--spacing-xs);
    font-weight: 500;
}

/* Masajistas Section */
.masajistas {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.masajistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.masajista-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.masajista-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.masajista-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.masajista-card:hover .masajista-image img {
    transform: scale(1.1);
}

.masajista-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: var(--border-radius-xl);
    font-size: 0.9rem;
}

.masajista-rating i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.masajista-info {
    padding: var(--spacing-md);
}

.masajista-specialty {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.masajista-experience {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-size: 0.9rem;
}

.masajista-services {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.service-tag {
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: 4px 12px;
    border-radius: var(--border-radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Form Group - Shared styles */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    background: var(--white-color);
    color: var(--dark-color);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.1);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    position: relative;
    transition: var(--transition-medium);
}

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

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

.testimonial-rating {
    margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
    color: var(--secondary-color);
    margin-right: 2px;
}

.testimonial-author {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--light-gray);
}

.testimonial-author strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-card p {
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.contact-content-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.3rem;
    color: #475569;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.contact-item i {
    font-size: 2rem;
    color: #4f46e5;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    padding: 16px;
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 6px;
    color: #1e293b;
    font-weight: 800;
    font-size: 1.2rem;
}

.contact-item p {
    color: #64748b;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

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

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white-color);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: var(--border-radius-full);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    color: var(--white-color);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--white-color);
    margin-bottom: var(--spacing-md);
}

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

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

.footer-section ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition-medium);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

.credits {
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
    opacity: 0.8;
}

.credit-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-medium);
}

.credit-link:hover {
    color: var(--white-color);
    text-decoration: underline;
}

/* ============================================ */
/* ELEMENTOS MODERNOS AGREGADOS */
/* ============================================ */

/* Section Badges - Elementos modernos */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Botones Modernizados */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 14px 24px;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-medium);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-medium);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white-color);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn i {
    font-size: 1.1rem;
}

/* ============================================ */
/* SERVICES SECTION - SIMPLIFICADA */
/* ============================================ */

.services-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
    margin: 0 auto var(--spacing-md) auto;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.25);
}

.service-content h3 {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.popular {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: var(--white-color);
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.service-content p {
    color: #475569;
    line-height: 1.6;
    margin: 0 0 var(--spacing-lg) 0;
    font-size: 1.1rem;
    font-weight: 400;
}

.service-price {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: var(--border-radius-full);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
}

.services-contact {
    text-align: center;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: var(--white-color);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    margin-top: var(--spacing-2xl);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
    position: relative;
    overflow: hidden;
}

.services-contact::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%);
    pointer-events: none;
}

.services-contact p {
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.services-contact .btn {
    position: relative;
    z-index: 2;
    background: var(--white-color);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
}

/* ============================================ */
/* FLOATING BUTTONS */
/* ============================================ */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.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 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

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

.instagram-btn {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fd1d1d);
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.floating-btn i {
    color: white;
}

/* Pulse animation for WhatsApp */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ============================================ */
/* RESPONSIVE DESIGN MOBILE - CONSOLIDADO */
/* ============================================ */

@media (max-width: 768px) {
    /* Container general */
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Header y navegación */
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: var(--transition-medium);
        box-shadow: var(--shadow-medium);
        padding: var(--spacing-md) 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 100px 0 120px; /* Más padding bottom para botones flotantes */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
        width: 100%;
        overflow: visible;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: var(--spacing-sm);
    }
    
    .title-main {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    
    .title-sub {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: var(--spacing-sm);
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .profile-image-hero {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .floating-stats {
        gap: var(--spacing-sm);
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    
    .stat-card {
        min-width: 140px;
        padding: var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Sobre Mí Section Responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
    
    .stat-item {
        padding: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Sections Headers */
    .section-header {
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-sm);
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    /* Services Section */
    .services {
        padding: var(--spacing-xl) 0 calc(var(--spacing-xl) + 40px); /* Extra padding para botones flotantes */
    }
    
    .services-simple {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .service-item {
        padding: var(--spacing-lg);
        margin-bottom: 0;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto var(--spacing-sm) auto;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-sm);
    }
    
    .service-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .service-price {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
    
    .popular {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        padding: 4px 10px;
        font-size: 0.65rem;
    }
    
    .services-contact {
        padding: var(--spacing-lg);
        margin-top: var(--spacing-xl);
    }
    
    .services-contact p {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .services-contact .btn {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    /* Contact Section */
    .contact {
        padding: var(--spacing-xl) 0 calc(var(--spacing-xl) + 40px); /* Extra padding para botones flotantes */
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .contact-item {
        padding: var(--spacing-md);
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .contact-item i {
        min-width: 50px;
        height: 50px;
        font-size: 1.5rem;
        padding: 12px;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
    
    .btn-whatsapp {
        font-size: 1.1rem;
        padding: 16px 32px;
    }
    
    /* Floating Buttons - Posición mejorada */
    .floating-buttons {
        bottom: 30px;
        right: 15px;
        gap: 15px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .credits {
        font-size: 0.8rem;
        margin-top: var(--spacing-xs);
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    /* Masajistas Section */
    .masajistas {
        padding: var(--spacing-xl) 0 calc(var(--spacing-xl) + 40px); /* Extra padding para botones flotantes */
    }
    
    .masajistas-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Testimonials */
    .testimonials {
        padding: var(--spacing-xl) 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Category Filter */
    .category-filter {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-xs);
    }
    
    .filter-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
        margin: 2px;
    }
}

/* ============================================ */
/* ABOUT SECTION - MODERNIZADA */
/* ============================================ */

.about-intro {
    font-size: 1.2rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--gray-50);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.highlight-item span {
    color: var(--gray-700);
    font-weight: 500;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.credential-card {
    background: var(--white-color);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm);
    text-align: center;
    transition: var(--transition-medium);
}

.credential-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.credential-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xs);
    color: var(--white-color);
    font-size: 1.2rem;
}

.credential-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.credential-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.4;
    margin: 0;
}

.values-section h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    font-weight: 600;
}

.values-grid {
    display: flex;
    gap: var(--spacing-sm);
}

.value-card {
    flex: 1;
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-medium);
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.value-card i {
    font-size: 1.5rem;
}

.value-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================ */
/* PROFILE IMAGE EN ABOUT SECTION */
/* ============================================ */

.profile-card {
    background: var(--white-color);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-large);
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.profile-image {
    margin-bottom: var(--spacing-md);
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
}

.profile-image img:hover {
    transform: scale(1.05);
}

.specialties h4 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

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

.specialties li {
    padding: 6px 0;
    color: var(--gray-700);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.specialties li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

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

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

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

/* Regla duplicada eliminada - consolidada arriba */

@media (max-width: 480px) {
    /* Mejoras adicionales para móviles muy pequeños */
    .hero {
        min-height: 90vh;
        padding: 90px 0 60px;
        overflow-x: hidden;
    }
    
    .hero-content {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .title-main {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .title-sub {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 100%;
    }
    
    .profile-image-hero {
        width: 220px;
        height: 220px;
    }
    
    .floating-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-xs);
    }
    
    .stat-card {
        width: 100%;
        max-width: 180px;
        min-width: auto;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Sobre Mí Section Mobile */
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }
    
    .stat-item {
        padding: var(--spacing-xs);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .credits {
        font-size: 0.75rem;
    }
}

/* Animaciones optimizadas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

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

/* Optimización de animaciones */
.hero-title,
.hero-subtitle,
.hero-buttons,
.floating-card {
    will-change: transform, opacity;
}

.hero-title,
.hero-subtitle,
.hero-buttons {
    animation-fill-mode: both;
}

/* Reducir animaciones en dispositivos con preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-card {
        animation: none;
    }
}

/* Regla duplicada eliminada - consolidada en la regla principal arriba */

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .floating-card {
        padding: var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    /* Mejorar legibilidad en servicios móvil */
    .services-grid {
        gap: var(--spacing-md);
    }
    
    .service-card {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .service-price {
        font-size: 1.3rem;
    }
    
    /* About section responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .profile-image img {
        width: 150px;
        height: 150px;
    }
    
    .credentials {
        gap: var(--spacing-sm);
    }
    
    .credential-item {
        padding: var(--spacing-xs);
    }
    
    .credential-item h4 {
        font-size: 0.9rem;
    }
    
    .credential-item p {
        font-size: 0.8rem;
    }
}

/* Smooth scrolling improvements */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Optimizaciones de rendimiento */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimizar hover effects para mejor rendimiento */
.service-card:hover,
.masajista-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Reducir repaint en elementos con hover */
.btn,
.filter-btn,
.nav-link {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.filter-btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* ============================================ */
/* OFFER STYLES - NUEVOS ESTILOS DE OFERTA */
/* ============================================ */

/* Banner de Oferta */
.offer-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52, #ff4757);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-offer 3s infinite;
}

.offer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.offer-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: bounce-fire 2s infinite;
}

.offer-text {
    color: white;
}

.offer-text h3 {
    margin: 0 0 var(--spacing-xs) 0;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: glow-text 2s ease-in-out infinite alternate;
}

.offer-text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.offer-badge-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.seasonal-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.seasonal-icon {
    font-size: 2rem;
    animation: gentle-float 3s ease-in-out infinite;
}

.seasonal-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* Service Badges */
.service-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: badge-pulse 2s infinite;
}

.offer-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.hot-badge {
    background: linear-gradient(135deg, #ff9f43, #ff6348);
    color: white;
}

.limited-badge {
    background: linear-gradient(135deg, #a55eea, #8b5cf6);
    color: white;
}

/* Precios Mejorados */
.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius-lg);
    border: 2px solid #e2e8f0;
}

.price-old {
    font-size: 1.1rem;
    color: #6b7280;
    text-decoration: line-through;
    font-weight: 600;
    position: relative;
}

.price-old::before {
    content: 'Antes:';
    position: absolute;
    left: -45px;
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}

.price-current {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(16, 185, 129, 0.2);
    animation: price-glow 2s ease-in-out infinite alternate;
}

.price-duration {
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 600;
    margin-left: var(--spacing-xs);
}

.savings {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: var(--spacing-xs);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: savings-bounce 2s infinite;
}

/* Mensaje de Urgencia */
.urgency-message {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-radius: var(--border-radius-xl);
    border: 2px solid #fca5a5;
    position: relative;
    overflow: hidden;
}

.urgency-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
    animation: urgency-sweep 3s infinite;
}

.urgency-message p {
    margin: 0;
    position: relative;
    z-index: 2;
}

.urgency-message p:first-child {
    font-size: 1.4rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-message p:nth-child(2) {
    font-size: 1.1rem;
    color: #991b1b;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.urgency-note {
    font-size: 1rem;
    color: #b91c1c !important;
    font-weight: 700;
    margin: 0;
    animation: blink-urgency 1.5s infinite;
}

/* Botón Urgente */
.btn-urgent {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52) !important;
    color: white !important;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 18px 36px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    animation: btn-urgent-pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-urgent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
    background: linear-gradient(135deg, #ee5a52, #ff4757) !important;
}

/* ============================================ */
/* ANIMACIONES DE OFERTAS */
/* ============================================ */

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

@keyframes bounce-fire {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes glow-text {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

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

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
}

@keyframes price-glow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.2);
    }
}

@keyframes savings-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

@keyframes urgency-sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes blink-urgency {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.7;
    }
}

@keyframes btn-urgent-pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6), 0 0 30px rgba(255, 107, 107, 0.3);
    }
}

/* ============================================ */
/* RESPONSIVE PARA OFERTAS */
/* ============================================ */

@media (max-width: 768px) {
    .offer-banner {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-xl);
    }
    
    .offer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .offer-text h3 {
        font-size: 1.4rem;
    }
    
    .offer-text p {
        font-size: 1rem;
    }
    
    .offer-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto;
    }
    
    .seasonal-icon {
        font-size: 1.8rem;
    }
    
    .service-badge {
        top: var(--spacing-xs);
        left: var(--spacing-xs);
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .price-current {
        font-size: 1.6rem;
    }
    
    .price-old::before {
        left: -35px;
        font-size: 0.75rem;
    }
    
    .urgency-message {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
    
    .urgency-message p:first-child {
        font-size: 1.2rem;
    }
    
    .urgency-message p:nth-child(2) {
        font-size: 1rem;
    }
    
    .btn-urgent {
        font-size: 1.1rem;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .offer-banner {
        padding: var(--spacing-md);
    }
    
    .offer-text h3 {
        font-size: 1.2rem;
    }
    
    .offer-text p {
        font-size: 0.9rem;
    }
    
    .seasonal-icon {
        font-size: 1.5rem;
    }
    
    .seasonal-text {
        font-size: 0.8rem;
    }
    
    .price-current {
        font-size: 1.4rem;
    }
    
    .service-badge {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    .urgency-message p:first-child {
        font-size: 1.1rem;
    }
    
    .btn-urgent {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

/* Print styles */
@media print {
    .header,
    .hero,
    .join-section,
    .footer,
    .offer-banner,
    .floating-buttons {
        display: none;
    }
    
    .services,
    .masajistas,
    .testimonials,
    .contact {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .service-badge,
    .urgency-message {
        display: none;
    }
}

 