 /* Custom Font Setup */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #FAFAF9; /* Stone 50 */
            color: #44403C; /* Stone 700 */
        }
        h1, h2, h3, h4, h5, h6, .serif {
            font-family: 'Cormorant Garamond', serif;
        }
        
        /* Parallax Utilities */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #d6d3d1;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #a8a29e;
        }

        /* Subtle Fade In Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }
        
        /* Custom Input Styles */
        input:focus, textarea:focus, select:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(231, 229, 228, 0.5); /* Stone-200 ring */
            border-color: #a8a29e;
        }

        /* Colores de Castadiva */

    .soloParaLosColores {
        color: #749b6d; /* Verde Salvia */
        color: #f4efeb; /* Ivory */
        color: #d19d9c; /* Rose gold */
    }

    .bg-salvia {
        background-color: #749b6d;
    }

    .bg-ivory {
        background-color: #f4efeb ;
    }

    .bg-rosegold {
        background-color: #d19d9c;
    }

    .back-top-btn {
        position: fixed;
        bottom: 30px;
        right: -36px;
        background-color: #020202;
        color: #f4efeb;
        padding: 10px;
        border-radius: 50%;
        opacity: 0;
        visibility: hidden;
        transition: 0.25s ease;
    }

    .back-top-btn.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-51px);
    }

    .text-ivory {
        color: #f4efeb;
    }

    .text-blanco {
        color: white;
    }

    .text-salvia {
        color: #749b6d;
    }

    .text-rosegold {
        color: #d19d9c;
    }

    .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            left: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000; /* Para que siempre esté encima de todo */
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: pulse-green 2s infinite;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            color: #FFF;
            transform: scale(1.1);
        }

        /* Animación de latido suave */
        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Ajuste para móviles: un poco más pequeño y pegado al borde */
        @media (max-width: 767px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                left: 20px;
                font-size: 25px;
            }
    } 