/* Venus Cosmetología Landing Page - Modern Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

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

:root {
    /* Venus Color Palette */
    --venus: #8C9668;
    --venus-soft: #a8b485;
    --venus-light: #e8ebe0;
    --venus-dark: #6b7a4e;
    --venus-cream: #faf9f6;

    /* Modern Palette */
    --primary: #8C9668;
    --primary-light: #a8b485;
    --primary-dark: #6b7a4e;
    --secondary: #D4C5B9;
    --accent: #C4A77D;
    --accent-light: #e0d4c3;

    --dark: #2C2C2C;
    --light: #F8F6F4;
    --white: #FFFFFF;
    --muted: #7a7a6a;
    --border: rgba(140, 150, 104, 0.15);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(140, 150, 104, 0.95), rgba(196, 167, 125, 0.85));
    --gradient-card: linear-gradient(180deg, #ffffff, #faf9f6);
    --gradient-venus: linear-gradient(135deg, #8C9668, #6b7a4e);
    --gradient-gold: linear-gradient(135deg, #C4A77D, #a8915f);

    /* Shadows */
    --shadow-soft: 0 4px 20px -4px rgba(140, 150, 104, 0.2);
    --shadow-card: 0 8px 30px -8px rgba(44, 44, 44, 0.12);
    --shadow-glow: 0 0 40px rgba(140, 150, 104, 0.25);
    --shadow-hover: 0 20px 50px -15px rgba(140, 150, 104, 0.3);

    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--venus-cream);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: var(--shadow-card);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
    box-shadow: var(--shadow-soft);
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary);
    font-style: italic;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-venus);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

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

.nav-cta {
    background: var(--gradient-venus) !important;
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s !important;
    box-shadow: var(--shadow-soft);
    border: none;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
}

/* ========== HERO ========== */
.hero {
    margin-top: 75px;
    min-height: 90vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px;
}

.hero-content {
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero h1 span {
    font-style: italic;
    font-weight: 500;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

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

.hero-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
}

.hero-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
}

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

.cta-button-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ========== SECTIONS ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
    letter-spacing: 1px;
}

.section-title-gradient {
    background: var(--gradient-venus);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 3.5rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== GLASS CARDS ========== */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
}

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

/* ========== SERVICES ========== */
.services-preview {
    background: var(--white);
}

.services-preview .services-grid {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* Category Section */
/* Category Section */

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.category-icon-circle {
    width: 48px;
    height: 48px;
    background: var(--gradient-venus);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
    margin: 0;
}

.category-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-preview-card {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-venus);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-preview-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-preview-card:hover::before {
    transform: scaleX(1);
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.service-preview-card h3 {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.service-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.service-card-desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.service-preview-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--muted);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.service-card-cta {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.service-preview-card:hover .service-card-cta {
    gap: 10px;
}

.service-preview-card .category-badge {
    display: inline-block;
    background: var(--venus-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Booking step description */
.service-desc-booking {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== TRANSFORMATIONS ========== */
.featured-transformation {
    background: var(--light);
}

.featured-hero {
    background: var(--gradient-hero);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-hero::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%);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.featured-before-after {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.featured-image {
    width: 180px;
    height: 220px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 3rem;
    transition: transform 0.3s ease;
}

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

.featured-image span {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.featured-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.featured-details p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.featured-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.stat-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-card p {
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

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

.blog-image-placeholder {
    height: 200px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
}

.blog-content {
    padding: 1.75rem;
}

.blog-category {
    display: inline-block;
    background: var(--venus-light);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.3;
}

.blog-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 1rem;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.75rem;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 10px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--white);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s;
    margin-bottom: 2.5rem;
}

.google-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

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

.quote-icon {
    position: absolute;
    top: 15px;
    left: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--muted);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-venus);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.author-info h4 {
    color: var(--dark);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.author-info p {
    color: var(--muted);
    font-size: 0.85rem;
}

.rating {
    color: #FFB800;
    font-size: 1rem;
    margin-top: 0.25rem;
    letter-spacing: 2px;
}

/* ========== LOCATION ========== */
.location-section {
    background: var(--light);
    padding: 6rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.location-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-venus);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
    font-size: 1.5rem;
}

.location-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
}

.location-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-card .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
}

.location-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.location-map iframe {
    display: block;
}

/* ========== BOOKING SECTION ========== */
.booking-section {
    background: linear-gradient(135deg, #3a3a2a 0%, #2d2d1f 100%);
    color: white;
}

.booking-section .section-title,
.booking-section .section-subtitle {
    color: white;
}

.booking-section .section-subtitle {
    opacity: 0.8;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.progress-dot.active {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(140, 150, 104, 0.5);
}

.progress-dot.completed {
    background: #22c55e;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeUp 0.5s ease-out;
}

.booking-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.card-title i {
    color: var(--primary);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.category-tab {
    padding: 10px 20px;
    border-radius: 25px;
    background: var(--light);
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.category-tab.active {
    background: var(--gradient-venus);
    color: white;
    box-shadow: var(--shadow-soft);
}

.category-tab:hover:not(.active) {
    background: var(--venus-light);
    color: var(--primary-dark);
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
    max-height: 400px;
    overflow-y: auto;
}

.service-item {
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.service-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.service-item.selected {
    border-color: var(--primary);
    background: var(--venus-light);
    box-shadow: 0 0 0 3px rgba(140, 150, 104, 0.2);
}

.service-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-duration {
    font-size: 0.75rem;
    color: var(--muted);
    background: var(--light);
    padding: 3px 8px;
    border-radius: 8px;
}

.service-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

/* Calendar */
.calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.calendar,
.time-slots {
    background: var(--light);
    border-radius: 16px;
    padding: 1.25rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.calendar-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.calendar-header button {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-header button:hover {
    background: var(--venus-light);
    border-color: var(--primary-light);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.day-name {
    font-size: 0.7rem;
    color: var(--muted);
    padding: 8px 0;
    font-weight: 600;
    text-transform: uppercase;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.day:hover:not(.disabled):not(.empty) {
    background: var(--venus-light);
}

.day.selected {
    background: var(--gradient-venus);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.day.today {
    border: 2px solid var(--primary);
}

.day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* Time Slots */
.time-slots h3 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-placeholder {
    grid-column: span 3;
    text-align: center;
    color: var(--muted);
    padding: 1.5rem;
    font-size: 0.9rem;
}

.time-slot {
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 12px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.time-slot:hover:not(.disabled) {
    border-color: var(--primary-light);
}

.time-slot.selected {
    background: var(--gradient-venus);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.time-slot.disabled {
    background: #f0f0f0;
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-label .required {
    color: #ef4444;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(140, 150, 104, 0.1);
}

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

/* Summary */
.summary {
    background: var(--venus-light);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.9rem;
}

.summary-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.summary-label {
    color: var(--muted);
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    color: var(--primary);
    font-size: 1.15rem;
}

/* Buttons */
.buttons-row {
    display: flex;
    gap: 14px;
    margin-top: 1.75rem;
}

.btn {
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    transition: all 0.3s;
    flex: 1;
}

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

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

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

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

.btn-outline:hover {
    background: var(--light);
    border-color: var(--primary-light);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    width: 100%;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* Confirmation */
.confirmation {
    text-align: center;
    padding: 1.5rem;
}

.confirmation-icon {
    width: 90px;
    height: 90px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #22c55e;
    font-size: 2.75rem;
}

.confirmation h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.confirmation>p {
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.confirmation-box {
    background: var(--light);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: left;
    margin-bottom: 1.75rem;
}

.confirmation-row {
    display: flex;
    gap: 14px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.confirmation-row i {
    color: var(--primary);
    width: 22px;
}

/* Loading */
.loading {
    text-align: center;
    padding: 2.5rem;
    color: var(--muted);
}

.spinner {
    width: 35px;
    height: 35px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--primary-light);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li i {
    color: var(--primary-light);
    width: 18px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--gradient-venus);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========== ANIMATIONS ========== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Delay classes */
.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: rgba(140, 150, 104, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(140, 150, 104, 0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-card);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 80vh;
    }

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

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

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

    .section-title {
        font-size: 2rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-before-after {
        margin-bottom: 1.5rem;
    }

    .featured-stats {
        grid-template-columns: 1fr;
    }

    .calendar-wrapper {
        grid-template-columns: 1fr;
    }

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

    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo {
        width: 70px;
        height: 70px;
    }

    .featured-image {
        width: 140px;
        height: 180px;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ========== SERVICES SECTION (REDISEÑO 2025) ========== */
.services-section {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, var(--venus-cream) 0%, #f0f2ea 60%, var(--venus-cream) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(140,150,104,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--venus-light);
    color: var(--venus-dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(140,150,104,0.25);
}

/* Filtros de categorías */
.services-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--venus);
    color: var(--venus-dark);
    background: var(--venus-light);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--gradient-venus);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(140,150,104,0.35);
}

/* Grid de cards */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}

/* Card individual */
.service-card-new {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(140,150,104,0.12);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.5s ease both;
}

.service-card-new:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(140,150,104,0.3);
}

/* Franja de acento en la parte superior */
.service-card-accent {
    height: 4px;
    width: 100%;
    flex-shrink: 0;
}

/* Icono de categoría */
.service-card-icon-wrap {
    position: absolute;
    top: 20px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-card-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

/* Cuerpo de la card */
.service-card-body {
    padding: 1.4rem 1.4rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-category {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--venus);
    margin-bottom: 0.5rem;
    display: block;
}

.service-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    padding-right: 2.5rem; /* espacio para el icono */
}

.service-card-description {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

/* Footer de la card */
.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.service-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.service-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--muted);
    background: var(--venus-light);
    padding: 4px 10px;
    border-radius: 50px;
}

.service-meta-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.55rem 1.1rem;
    background: var(--gradient-venus);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.service-card-btn i {
    transition: transform 0.25s ease;
}

.service-card-new:hover .service-card-btn {
    box-shadow: 0 4px 15px rgba(140,150,104,0.4);
}

.service-card-new:hover .service-card-btn i {
    transform: translateX(3px);
}

/* Loading state */
.services-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 2rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.loading-orb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--venus-light);
    border-top-color: var(--venus);
    animation: spin 0.8s linear infinite;
}

/* CTA inferior */
.services-cta-bar {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-cta-bar p {
    font-size: 0.95rem;
    color: var(--muted);
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.services-cta-bar p strong {
    color: var(--dark);
}

/* Animación */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive services ---- */
@media (max-width: 1024px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 5rem 1.25rem;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .services-filters {
        gap: 8px;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .services-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem 1.25rem;
    }

    .services-cta-bar p {
        text-align: center;
        min-width: unset;
    }

    .service-card-name {
        font-size: 1.05rem;
        padding-right: 0;
    }

    .service-card-icon-wrap {
        display: none;
    }
}