 /* 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: #749b6d;
        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;
    }