@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #B76E79; /* Rose Gold Base */
    --primary-glow: #FFB7C5;
    --accent: #D4AF37; /* Metallic Gold */
    --bg-deep: #1A0F1A; /* Deep Eggplant */
    --quartz: #F7D9D9;
    --glass: rgba(26, 15, 26, 0.7);
    --glass-border: rgba(183, 110, 121, 0.3);
    --text-main: #FFFFFF;
    --text-muted: #F7D9D9;
    --gold-gradient: linear-gradient(135deg, #B76E79 0%, #D4AF37 50%, #B76E79 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-deep);
    color: var(--text-main);
    overflow-x: hidden;
    cursor: auto;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}



/* ============ CANVAS GENERATIVO ============ */
#generative-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: var(--glass);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 20, 147, 0.2);
    box-shadow: 0 2px 10px rgba(255, 20, 147, 0.1);
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-svg {
    color: var(--primary);
}

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

.nav-link {
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(-50%);
}

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

.nav-cta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ============ HERO SECTION (PREMIUM GLOW) ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    overflow: hidden;
    background: var(--bg-deep);
    z-index: 1;
}

/* Background Title Layer */
.hero-pionera-bg {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12vw;
    font-weight: 900;
    color: var(--quartz);
    opacity: 0.05;
    white-space: nowrap;
    z-index: -1;
    letter-spacing: -0.05em;
    pointer-events: none;
    text-shadow: 0 0 50px rgba(247, 217, 217, 0.2);
    user-select: none;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* Central Hand Visual */
.hero-hand-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: -5vh auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-hand-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(183, 110, 121, 0.4));
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

/* Hotspots */
.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 15px var(--primary-glow);
    animation: hotspotPulse 2s infinite;
}

.hotspot::after {
    content: attr(data-label);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    color: white;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.hotspot:hover::after {
    opacity: 1;
    bottom: 40px;
}

@keyframes hotspotPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 15px rgba(183, 110, 121, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(183, 110, 121, 0); }
}

/* Positioning hotspots relative to the hand image */
.hs-nail { top: 30%; left: 45%; }
.hs-cuticle { top: 45%; left: 35%; }
.hs-skin { top: 60%; left: 55%; }

/* Hero Text Content */
.hero-bottom-content {
    text-align: center;
    max-width: 800px;
    margin-top: 2rem;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--quartz);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    font-weight: 700;
}

/* ============ INTERFACE (BUTTONS & NAV) ============ */
.header-ui {
    position: absolute;
    top: 10rem;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav-capsules {
    display: flex;
    gap: 1rem;
}

.btn-capsule {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--quartz);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-capsule:hover {
    background: rgba(183, 110, 121, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-reserva {
    background: var(--gold-gradient);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    color: #1A0F1A;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.btn-reserva:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

.btn-reserva i {
    font-size: 1rem;
}

/* ============ MAGNETIC BUTTONS ============ */
.magnetic-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    animation: fadeIn 1.4s ease-out 0.8s forwards;
    opacity: 0;
}

.magnetic-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.magnetic-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.6);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon-fa {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    margin-right: 0.5rem;
}

.btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    animation: iconFloat 2s ease-in-out infinite;
}

.btn-icon-svg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    animation: iconFloat 2s ease-in-out infinite;
}

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

.servicios {
    position: relative;
    z-index: 2;
    padding: 8rem 5%;
    background: var(--bg-deep);
}

.section-title {
    font-size: 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: var(--quartz);
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: center;
    opacity: 0.8;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 0 auto;
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }

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

.service-card {
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-item:hover .service-card {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(168, 85, 247, 0.1));
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
}

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

.card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 3rem;
    animation: spin 20s linear infinite;
}

.service-item:hover .service-icon {
    animation: spin 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes spin {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(360deg) scale(1); }
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 0.5rem;
}

.service-card .service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin: 0;
}

.service-desc {
    color: var(--quartz);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.price-range {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 20, 147, 0.2);
}

.price-min, .price-max {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.price-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.6);
}

.price-detail {
    list-style: none;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 20, 147, 0.2);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.service-emoji {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.price-detail li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    color: var(--quartz);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--glass-border);
    align-items: center;
}

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

.price-detail span:first-child {
    flex: 1;
}

.price-detail .price {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    margin-left: 1rem;
}

/* ============ GESTIÓN & AGENDA INTELIGENTE ============ */
.gestion-section {
    position: relative;
    z-index: 2;
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--bg-mid) 0%, #1e0d1e 100%);
}

.gestion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 3rem auto 0;
}

.gestion-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    backdrop-filter: blur(20px);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.gestion-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(183,110,121,0.18);
}

.gestion-icon {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.gestion-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

.gestion-card p {
    color: var(--quartz);
    opacity: 0.75;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ============ SPA SPACE SECTION ============ */
.spa-space {
    position: relative;
    z-index: 2;
    padding: 8rem 5%;
    background: var(--bg-deep);
}

.feature-card {
    background: var(--glass);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card h3 {
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--quartz);
    opacity: 0.8;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.2);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-icon.spa-emoji {
    font-size: 3.5rem;
}

.feature-card:hover .feature-icon {
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.1) translateY(-10px); }
    100% { transform: scale(1) translateY(0); }
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    color: #666666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============ EMPRENDEDOR STORY SECTION ============ */
.emprendedor-story {
    position: relative;
    z-index: 2;
    padding: 8rem 5%;
    background: var(--bg-deep);
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-title {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-text {
    font-size: 1.4rem;
    color: var(--quartz);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.9;
}

.story-subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 400;
    font-style: italic;
}

/* ============ TESTIMONIOS SECTION ============ */
.testimonios {
    position: relative;
    z-index: 2;
    padding: 8rem 5%;
    background: var(--bg-deep);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio-card {
    background: var(--glass);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.testimonio-card:nth-child(1) { animation-delay: 0.1s; }
.testimonio-card:nth-child(2) { animation-delay: 0.2s; }
.testimonio-card:nth-child(3) { animation-delay: 0.3s; }
.testimonio-card:nth-child(4) { animation-delay: 0.4s; }
.testimonio-card:nth-child(5) { animation-delay: 0.5s; }
.testimonio-card:nth-child(6) { animation-delay: 0.6s; }

.testimonio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.2);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonio-text {
    color: var(--quartz);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    opacity: 0.8;
}

.testimonio-author {
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
}

/* ============ GALERÍA SECTION ============ */
.galeria {
    position: relative;
    z-index: 2;
    padding: 8rem 5%;
    background: var(--bg-deep);
}

.instagram-section {
    background: var(--bg-deep);
}

.instagram-feed-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.elfsight-app {
    width: 100%;
    min-height: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.instagram-direct-link {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.instagram-direct-link p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 20, 147, 0.6);
}

.before-after-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.before-after-item {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: grab;
}

.before-after-slider:active {
    cursor: grabbing;
}

.before-img, .after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-img {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-50%);
    z-index: 10;
}

.slider-handle::before,
.slider-handle::after {
    content: '‹';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    transform: translateY(-50%);
    font-weight: bold;
}

.slider-handle::before {
    left: -35px;
}

.slider-handle::after {
    content: '›';
    right: -35px;
}

.transformation-label {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ============ CTA FINAL ============ */
.cta-final {
    position: relative;
    z-index: 2;
    padding: 8rem 5%;
    background: var(--bg-deep);
    text-align: center;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--quartz);
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.cta-description {
    font-size: 1rem;
    color: var(--quartz);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.8;
}

.cta-info {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.8;
}

/* ============ FOOTER ============ */
.footer {
    position: relative;
    z-index: 2;
    padding: 6rem 5% 3rem;
    background: var(--bg-deep);
}

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

.footer-col h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: var(--quartz);
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--primary);
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-col a:hover {
    color: #FF69B4;
}

.footer-new {
    color: #FF1493;
    font-weight: 600;
    margin-top: 0.5rem;
    font-style: italic;
}

.footer-badge {
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    background: rgba(183, 110, 121, 0.1);
    padding: 0.6rem;
    border-radius: 8px;
    display: inline-block;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--glass-border);
    margin-bottom: 2rem;
}

.footer-credit {
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
}
.footer-powered-link {
    color: #B76E79;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-powered-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ============ FLOATING ACTION ============ */
.floating-action {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideUp 0.6s ease-out;
    font-size: 32px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-action:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .nav-links {
        gap: 1.5rem;
    }

    .before-after-container {
        grid-template-columns: 1fr;
    }

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

    .floating-action {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
}