/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Description: Tema hijo personalizado para Nails Beauty Art
Version: 1.0.0
*/

/* /* ==========================================
           1. ESTILOS GLOBALES
           ========================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #ffffff;
            color: #333333;
            overflow-x: hidden;
            scroll-behavior: smooth;
			margin: 0 !important;
    		padding: 0 !important;
    		overflow-x: hidden; /* Evita scroll horizontal innecesario */
        }

        /* ==========================================
           2. CABECERA (3 SECCIONES) con Animación
           ========================================== */
        .site-header {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            align-items: center;
            padding: 20px 5%;
            background-color: #efa4b7;
            border-bottom: 1px solid #f1f5f952;
            position: relative;
            z-index: 100;
            opacity: 0;
            animation: slideDown 0.8s ease forwards;
			max-width: 100% !important;
        }

        /* Izquierda: Logo original */
        .header-logo {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .header-logo img {
            max-height: 95px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
        }

        /* Centro: Menú */
        .header-nav {
            text-align: center;
        }

        .header-nav ul {
            display: inline-flex;
            list-style: none;
            gap: 30px;
        }

        .header-nav ul li a {
            text-decoration: none;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .header-nav ul li a:hover,
        .header-nav ul li a.active {
            color: #c63d6f;
        }

        /* Derecha: Redes Sociales */
        .header-social {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }

        .social-icon {
            color: #ffffff;
            font-size: 26px;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }

        .social-icon:hover {
            color: #c63d6f;
            transform: translateY(-2px);
        }

        /* Botón de Menú Hamburguesa (Oculto por defecto en escritorio) */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1100;
        }

        .mobile-menu-btn .bar {
            width: 100%;
            height: 3px;
            background-color: #ffffff;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Transformación del menú hamburguesa a "X" */
        .mobile-menu-btn.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-menu-btn.active .bar:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .mobile-menu-btn.active .bar:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* ==========================================
           3. MENÚ LATERAL DESPLEGABLE (DRAWER)
           ========================================== */
        .mobile-drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-drawer-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: 320px;
            max-width: 85%;
            height: 100%;
            background: linear-gradient(135deg, #efa4b7 0%, #c63d6f 100%);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
            z-index: 1050;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-drawer.active {
            transform: translateX(0);
        }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding-bottom: 15px;
        }

        .drawer-logo img {
            max-height: 50px;
            width: auto;
        }

        .drawer-menu {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .drawer-menu li {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Animación escalonada (Staggered) para los elementos del menú */
        .mobile-drawer.active .drawer-menu li {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-drawer.active .drawer-menu li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-drawer.active .drawer-menu li:nth-child(2) { transition-delay: 0.15s; }
        .mobile-drawer.active .drawer-menu li:nth-child(3) { transition-delay: 0.2s; }
        .mobile-drawer.active .drawer-menu li:nth-child(4) { transition-delay: 0.25s; }
        .mobile-drawer.active .drawer-menu li:nth-child(5) { transition-delay: 0.3s; }

        .drawer-menu li a {
            text-decoration: none;
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: inline-block;
            position: relative;
        }

        .drawer-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffffff;
            transition: width 0.3s ease;
        }

        .drawer-menu li a:hover::after,
        .drawer-menu li a.active::after {
            width: 100%;
        }

        .drawer-socials {
            margin-top: auto;
            display: flex;
            gap: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.35s;
        }

        .mobile-drawer.active .drawer-socials {
            opacity: 1;
            transform: translateY(0);
        }

        .drawer-socials a {
            color: #ffffff;
            font-size: 24px;
            transition: transform 0.2s ease;
        }

        .drawer-socials a:hover {
            transform: scale(1.1);
        }

        /* ==========================================
           4. SECCIÓN HERO (TROPICAL PINK)
           ========================================== */
        .hero-section {
            background-color: transparent; /* El fondo se pasa al pseudo-elemento */
            min-height: 550px;
            position: relative;
            padding: 80px 8% 220px 8%;
            display: flex;
            align-items: center;
            overflow: visible; /* CRITICAL: Permite que el translate sobresalga del contenedor */
        }

        /* Reemplazo del clip-path directo por un pseudo-elemento para permitir desborde */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #efa4b7;
            clip-path: ellipse(104% 78% at 50% 0%);
            z-index: 1;
        }

        .hero-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 2; /* Sienta el contenido encima del fondo de curva */
        }

        /* Columna Izquierda: Mensajes y Botones */
        .hero-content {
            text-align: left;
            color: #ffffff;
            z-index: 10;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 68px;
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 15px;
            letter-spacing: -1px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.3s;
        }

        .hero-content p {
            max-width: 455px;
            font-size: 18px;
            font-weight: 400;
            margin-bottom:15px;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.5px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.5s;
        }

        /* Grupo de botones */
        .btn-group {
            display: flex;
            margin-top: 40px;
            gap: 15px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.7s;
        }

        .btn-hero {
            display: inline-block;
            text-decoration: none;
            padding: 14px 28px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 3px;
            transition: all 0.3s ease;
            text-align: center;
        }

        /* Botón primario (Fucsia/Magenta) */
        .btn-primary {
            background-color: #c63d6f;
            color: #ffffff;
            border: 2px solid #c63d6f;
        }

        .btn-primary:hover {
            background-color: #a82e5b;
            border-color: #a82e5b;
            transform: translateY(-2px);
        }

        /* Botón secundario (Líneas blancas) */
        .btn-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .btn-secondary:hover {
            background-color: #ffffff;
            color: #c63d6f;
            transform: translateY(-2px);
        }

        /* Columna Derecha: Imagen de Esmaltes con efecto desborde */
        .hero-image-wrapper {
            position: relative;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            /* translate de 70px sutilmente hacia abajo y escala de 1.3 para sobresalir del fondo curvo */
            transform: translateY(70px) scale(1.2); 
            transform-origin: center bottom;
            z-index: 5;
            animation: popIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.4s;
        }

        /* Imagen en posición adaptada */
        .hero-image {
            width: 110%;
            max-width: 500px;
            filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12));
            pointer-events: none;
        }

        /* Espacio de separación para simular la continuación de la página */
        .content-spacer {
            height: 150px;
            background-color: #ffffff;
        }

        /* ==========================================================
           5. TIMELINES DE LAS ANIMACIONES
           ========================================================== */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes popIn {
            from {
                opacity: 0;
                transform: translateY(70px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(70px) scale(1.25);
            }
        }

        /* ==========================================
           6. RESPONSIVIDAD (HERO Y CABECERA)
           ========================================== */
        @media (max-width: 992px) {
            .site-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 15px 5%;
            }

            /* Esconde el menú y las redes normales en tablet/móvil */
            .header-nav, .header-social {
                display: none;
            }

            /* Muestra el botón hamburguesa */
            .mobile-menu-btn {
                display: flex;
            }

            .hero-section {
                padding: 60px 5% 100px 5%;
            }

            .hero-section::before {
                clip-path: ellipse(180% 100% at 50% 0%);
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 60px;
            }

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

            .hero-content h1 {
                font-size: 48px;
            }

            .btn-group {
                justify-content: center;
            }

            .hero-image-wrapper {
                height: 350px;
                transform: translateY(50px) scale(1.1);
            }

            @keyframes popIn {
                from {
                    opacity: 0;
                    transform: translateY(50px) scale(0.85);
                }
                to {
                    opacity: 1;
                    transform: translateY(50px) scale(1.1);
                }
            }

            .hero-image {
                position: relative;
                width: 100%;
                max-width: 380px;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 38px;
            }
            .btn-group {
                flex-direction: column;
                gap: 10px;
            }
            .btn-hero {
                width: 100%;
            }
            .hero-image-wrapper {
                height: 280px;
                transform: translateY(40px) scale(1.05);
            }
            @keyframes popIn {
                from {
                    opacity: 0;
                    transform: translateY(40px) scale(0.8);
                }
                to {
                    opacity: 1;
                    transform: translateY(40px) scale(1.05);
                }
            }
        }

        /* ==========================================
           7. SECCIÓN: SKILLED NAIL ART (CON EFECTO PARALLAX)
           ========================================== */
        .features-section {
            background-color: #ffffff;
            padding: 80px 8%;
            position: relative;
            z-index: 10;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* Columna Izquierda: Información */
        .features-info-column {
            padding: 20px 0;
            text-align: left;
        }

        .features-tag {
            font-size: 13px;
            font-weight: 700;
            color: #888888;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .features-title {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 600;
            line-height: 1.2;
            color: #1a1a1a;
            margin-bottom: 25px;
        }

        .features-desc {
            font-size: 16px;
            line-height: 1.8;
            color: #666666;
            margin-bottom: 45px;
        }

        /* Lista de características */
        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 35px;
            margin-bottom: 50px;
        }

        .feature-item {
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }

        .feature-num {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 600;
            color: #c63d6f;
            background-color: #fdf8f9;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
            border: 1px solid rgba(239, 164, 183, 0.3);
        }

        .feature-text-block h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .feature-text-block p {
            font-size: 14px;
            line-height: 1.6;
            color: #777777;
        }

        /* Botón de tratamientos */
        .btn-view-treatments {
            display: inline-block;
            text-decoration: none;
            background-color: #c63d6f;
            color: #ffffff;
            padding: 16px 35px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 4px;
            box-shadow: 0 10px 25px rgba(198, 61, 111, 0.25);
            transition: all 0.3s ease;
        }

        .btn-view-treatments:hover {
            background-color: #a82e5b;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(198, 61, 111, 0.35);
        }

        /* Columna Derecha: Contenedor Parallax */
        .features-image-column {
            position: relative;
            height: 550px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Imagen de fondo que se mueve en scroll */
        .features-parallax-bg {
            width: 100%;
            height: 140%; /* Más alto para dar espacio de desplazamiento */
            background-image: url('assets/img/home/IMG-20250813-WA0052.jpg');
            background-size: cover;
            background-position: center;
            position: absolute;
            top: -14%;
            left: 0;
            transition: transform 0.1s ease-out;
        }

        @media (max-width: 992px) {
            .features-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .features-image-column {
                order: -1; /* Pone la imagen arriba en móviles */
                height: 400px;
            }
        }
         .services-section { padding: 100px 5%; text-align: center; }
        .services-title2 { font-family: 'Playfair Display', serif; font-size: 42px; color: #1a1a1a; margin-bottom: 10px; }
        .services-title { font-family: 'Playfair Display', serif; font-size: 62px; color: #1a1a1a; margin-bottom: 100px; }

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

        .service-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            text-decoration: none;
            display: block;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(198, 61, 111, 0.15);
        }

        .service-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-info { padding: 20px; }
        .service-info h3 { 
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: #c63d6f;
            margin-bottom: 5px;
        }

        @media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
       /* Wave superior */
        .booking-section {
            padding: 120px 5% 80px 5%;
            background-color: rgb(198 61 111 / 6%);
            position: relative;
            clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
            margin-top: -50px;
        }

        .booking-container {
            max-width: 1250px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 160px;
            align-items: center;
        }

        /* Título en la mitad izquierda con Playfair Display */
        .booking-guide h2 {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            color: #2c3e50;
            margin-bottom: 72px;
            line-height: 1.2;
        }

        /* Estilos mejorados para el paso a paso */
        .steps-list { list-style: none; }
        .step-item { display: flex; align-items: flex-start; margin-bottom: 30px; }
        .step-number {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            color: #efa4b7;
            border: 2px solid #efa4b7;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .step-text h4 { font-size: 18px; color: #333; margin-bottom: 5px; }
        .step-text p { color: #7f8c8d; font-size: 14px; line-height: 1.5; }

        /* Widget Container */
        .widget-container {
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            border: 1px solid #f0f0f0;
        }

        @media (max-width: 900px) {
            .booking-container { grid-template-columns: 1fr; }
            .booking-section { clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%); }
        }

                /* === 1. SECCIÓN BENEFICIOS (4 DIVS CON ICONOS) === */
        .benefits-section { padding: 100px 5%; background: #ffffff; text-align: center; }
        .section-title { font-family: 'Playfair Display', serif; font-size: 40px; color: #5a4a4f; margin-bottom: 60px; }
        
        .benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
        .benefit-card { padding: 30px; border: 1px solid #f0f0f0; border-radius: 20px; transition: 0.3s; }
        .benefit-card:hover { border-color: #efa4b7; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
        .benefit-icon { font-size: 30px; color: #efa4b7; margin-bottom: 20px; }
        .benefit-card h4 { font-family: 'Montserrat', sans-serif; margin-bottom: 10px; }
        .benefit-card p { font-size: 14px; color: #888; }

        /* === 2. GALERÍA GRID (TAMAÑOS DEFINIDOS) === */
        .gallery-section { padding: 50px 5% 100px 5%; background: #fafafa; }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 300px;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .gallery-item { border-radius: 15px; overflow: hidden; background: #eee; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
        
        /* Layout tipo "Masonry" forzado con tamaños */
        .item-tall { grid-row: span 3; }
        .item-wide { grid-column: span 2; }

        @media (max-width: 768px) {
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid { grid-template-columns: 1fr; }
        }

           /* Sección Estilo Banner con Fondo */
        .feature-banner {
            padding: 100px 5%;
            background-color: #fdf5f7; /* Tono suave de fondo */
            background-image: url('assets/img/bg3.jpg'); /* Aquí iría tu imagen de fondo */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .feature-content {
            background: rgba(255, 255, 255, 0.9);
            padding: 60px;
            max-width: 700px;
            border-radius: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        }

        .feature-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: #5a4a4f;
            margin-bottom: 20px;
        }

        .feature-content p {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .feature-content { padding: 40px 20px; }
            .feature-content h2 { font-size: 32px; }
        }

 /* Footer Estética Rosa */
        .site-footer {
            background-color: #fdf2f5; /* Un rosa muy suave y elegante */
            color: #8c7379;
            padding: 80px 5% 40px;
            border-top: 1px solid #f9dbe3;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 50px;
            max-width: 1250px;
            margin: 0 auto;
        }

        .logo-placeholder {
            width: 140px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f9dbe3;
            color: #d67a93;
            font-weight: bold;
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
            border-radius: 8px;
        }

        .footer-col h4 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: #d67a93;
            margin-bottom: 25px;
        }

        .footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; font-size: 14px; }
        .footer-col ul li a { color: #8c7379; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: #d67a93; padding-left: 5px; }

        .social-links { display: flex; gap: 15px; }
        .social-links a { 
            display: flex; align-items: center; justify-content: center;
            width: 40px; height: 40px; background: #fff; color: #d67a93;
            border: 1px solid #f9dbe3; border-radius: 50%; 
            transition: 0.4s; font-size: 16px;
        }
        .social-links a:hover { background: #d67a93; color: white; transform: translateY(-5px); }

        /* Botón Scroll Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: #d67a93;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(214, 122, 147, 0.3);
            transition: 0.3s;
            z-index: 1000;
        }
        .scroll-top:hover { background: #c2657f; transform: scale(1.1); }
          /* Franja de Copyright */
        .footer-bottom {
            background-color: #fce8ee; /* Un tono ligeramente más saturado para diferenciar */
            padding: 20px;
            text-align: center;
            font-size: 13px;
            color: #a88d94;
            border-top: 1px solid #f9dbe3;
        }
    .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
        background: #d67a93;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(214, 122, 147, 0.3);
        z-index: 9999; /* ¡Esto garantiza que siempre esté arriba! */
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .scroll-top:hover {
        background: #c2657f;
        transform: scale(1.1);
    } 
/* (Aquí va desde el asterisco inicial hasta el final de tu CSS) */