/* =====================================================
   ESENCIA SPA - LANDING PAGE STYLES
   Modern, elegant design with pink/purple theme
   ===================================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pink/Purple Color Palette */
    --primary-50: #fce4ec;
    --primary-100: #f8bbd0;
    --primary-200: #f48fb1;
    --primary-300: #f06292;
    --primary-400: #ec407a;
    --primary-500: #d81b60;
    --primary-600: #c2185b;
    --primary-700: #ad1457;
    --primary-800: #880e4f;
    --primary-900: #6a0a3b;

    --secondary-500: #8e24aa;
    --secondary-600: #7b1fa2;

    /* Text Colors */
    --text-primary: #2d2d2d;
    --text-secondary: #4a4a4a;
    --text-tertiary: #666666;
    --text-light: #ffffff;

    /* Background (will use image) */
    --bg-overlay: rgba(255, 255, 255, 0.92);
    --bg-glass: rgba(255, 255, 255, 0.85);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background-image: url('../assets/images/backgroundindex.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== PARTICLES BACKGROUND ===== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--primary-300), transparent);
    border-radius: 50%;
    opacity: 0.4;
    animation: float-particle 20s infinite ease-in-out;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 24px rgba(216, 27, 96, 0.1);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-600);
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(216, 27, 96, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
    transition: width 0.3s ease;
}

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

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

.nav-link-siloe {
    color: var(--primary-600);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-600);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 10;
}

.hero-container {
    max-width: var(--container-max);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-800);
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(216, 27, 96, 0.2);
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lotus-emoji {
    font-size: 1.2rem;
    animation: rotate-gentle 4s ease-in-out infinite;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary-700);
    margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(216, 27, 96, 0.15);
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--secondary-600);
    margin-bottom: 16px;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    animation: scale-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 30%, var(--primary-400) 60%, var(--primary-500) 100%);
    background-size: 200% 200%;
    color: var(--text-light);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow:
        0 0 0 1px rgba(216, 27, 96, 0.5),
        0 8px 24px rgba(216, 27, 96, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradient-shift 4s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 0 0 2px rgba(216, 27, 96, 0.8),
        0 12px 32px rgba(216, 27, 96, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-600);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-400);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216, 27, 96, 0.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade-in-rotate 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.floating-lotus {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.lotus-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(216, 27, 96, 0.4));
    z-index: 2;
    position: relative;
}

.glow-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 27, 96, 0.2) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(216, 27, 96, 0.1);
}

.about-image-wrapper {
    position: relative;
}

.about-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-circle-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-200), var(--primary-300));
    opacity: 0.3;
    filter: blur(40px);
}

.about-image {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid var(--primary-300);
    box-shadow: 0 20px 60px rgba(216, 27, 96, 0.3);
    position: relative;
    z-index: 2;
    animation: float 8s ease-in-out infinite;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-800);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-700);
    margin-bottom: 32px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--primary-700);
    font-weight: 600;
}

.highlight-text {
    color: var(--secondary-600);
    font-weight: 500;
    font-style: italic;
}

/* ===== VALORES SECTION ===== */
.valores-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.valor-card {
    text-align: center;
    padding: 48px 32px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.valor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(216, 27, 96, 0.2);
}

.valor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: 20px;
    color: var(--primary-700);
    transition: transform 0.3s ease;
}

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

.valor-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-700);
    margin-bottom: 16px;
}

.valor-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 228, 236, 0.8) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(216, 27, 96, 0.15);
    border-radius: 24px;
    box-shadow:
        0 8px 24px rgba(216, 27, 96, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

/* ===== EXPERIENCIAS SECTION ===== */
.experiencias-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.step-card {
    text-align: center;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 48px 32px;
    border-radius: 24px;
    border: 2px solid var(--primary-200);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-400);
    box-shadow: 0 16px 40px rgba(216, 27, 96, 0.15);
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(216, 27, 96, 0.3);
    border: 4px dashed rgba(255, 255, 255, 0.5);
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-700);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.services-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(252, 228, 236, 0.9));
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(216, 27, 96, 0.15);
}

.services-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-700);
    margin-bottom: 40px;
}

.services-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    border: 2px solid var(--primary-200);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(216, 27, 96, 0.08);
}

.service-cta-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-500);
    box-shadow: 0 12px 32px rgba(216, 27, 96, 0.2);
}

.service-cta-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: 16px;
    flex-shrink: 0;
}

.service-cta-content {
    flex: 1;
    text-align: left;
}

.service-cta-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-700);
    margin-bottom: 4px;
}

.service-cta-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-cta-card svg {
    color: var(--primary-500);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-cta-card:hover svg {
    transform: translateX(5px);
}

/* ===== CONTACTO SECTION ===== */
.contacto-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

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

.contacto-card {
    text-align: center;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.contacto-card:hover {
    transform: translateY(-5px);
}

.contacto-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contacto-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-700);
    margin-bottom: 12px;
}

.contacto-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.contacto-card a {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contacto-card a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 228, 236, 0.95));
    backdrop-filter: blur(20px);
    padding: 60px 20px 30px;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(216, 27, 96, 0.1);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-700);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-600);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(216, 27, 96, 0.1);
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 3px solid #fff;
    animation: whatsappPulse 2.2s ease-in-out infinite;
}

.whatsapp-float:hover {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px) scale(1.04);
}

.whatsapp-float .whatsapp-icon {
    width: 60px;
    height: 60px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-in-rotate {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes float {

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

    25% {
        transform: translateY(-20px) rotate(2deg);
    }

    50% {
        transform: translateY(-10px) rotate(-2deg);
    }

    75% {
        transform: translateY(-30px) rotate(1deg);
    }
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }

    25% {
        transform: translate(100px, -100px);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50px, -200px);
        opacity: 0.6;
    }

    75% {
        transform: translate(-100px, -100px);
        opacity: 0.8;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(216, 27, 96, 0.5),
            0 0 60px rgba(216, 27, 96, 0.3);
    }

    50% {
        box-shadow:
            0 0 0 2px rgba(216, 27, 96, 0.8),
            0 0 80px rgba(216, 27, 96, 0.5);
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 10px 28px rgba(37, 211, 102, 0.36);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
    }
}

@keyframes rotate-gentle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

/* ===== SERVICES PAGE STYLES ===== */
.services-page-container {
    position: relative;
    z-index: 10;
}

/* Services Hero Section */
.services-hero {
    padding: 140px 20px 80px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-700);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
    animation: fade-in-up 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}

.section-title-services {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-700);
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(216, 27, 96, 0.18);
}

.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-700);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-duration {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    color: var(--primary-700);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 14px;
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-600);
    margin-bottom: 20px;
}

.service-btn {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 27, 96, 0.3);
}

.service-btn:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4);
}

.service-btn-secondary {
    background: linear-gradient(135deg, var(--secondary-600), var(--secondary-500));
}

.service-btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-700), var(--secondary-600));
}

/* Additional Services */
.additional-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.additional-card {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(252, 228, 236, 0.4));
    border-radius: 16px;
    border: 1px solid rgba(216, 27, 96, 0.1);
    transition: all 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(252, 228, 236, 0.6));
    box-shadow: 0 12px 30px rgba(216, 27, 96, 0.15);
}

.additional-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.additional-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 8px;
    line-height: 1.3;
}

.additional-duration {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.additional-price {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-600);
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    padding: 8px 20px;
    border-radius: 12px;
}

/* Promo Banner */
.promo-section {
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.promo-banner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.promo-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: rotate-gentle 4s ease-in-out infinite;
}

.promo-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-700);
    margin-bottom: 16px;
}

.promo-banner p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.promo-banner strong {
    color: var(--secondary-600);
    font-weight: 700;
}

/* Location Info */
.location-section {
    padding: 40px 20px 80px;
    position: relative;
    z-index: 10;
}

.location-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
}

.location-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-700);
    margin-bottom: 20px;
}

.location-address {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.location-address a {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-address a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

.location-note {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .floating-lotus {
        width: 350px;
        height: 350px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-buttons {
        grid-template-columns: 1fr;
    }

    .contacto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Services page responsive */
    .page-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }

    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 24px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 24px rgba(216, 27, 96, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        padding: 100px 20px 40px;
    }

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

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

    .hero-description {
        font-size: 1rem;
    }

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

    .floating-lotus {
        width: 250px;
        height: 250px;
    }

    .about-grid {
        padding: 40px 30px;
    }

    .about-image {
        width: 200px;
        height: 200px;
    }

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

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

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

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float .whatsapp-icon {
        width: 48px;
        height: 48px;
    }

    /* Services page mobile */
    .services-hero {
        padding: 100px 20px 60px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .section-title-services {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .additional-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .additional-services {
        padding: 32px 24px;
    }

    .promo-banner {
        padding: 40px 24px;
    }

    .promo-banner h3 {
        font-size: 1.7rem;
    }

    .promo-banner p {
        font-size: 1rem;
    }

    .location-info {
        padding: 40px 24px;
    }

    .location-info h3 {
        font-size: 1.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}