  /* Estilos personalizados para replicar los colores y fuentes de Tailwind */
        :root {
            --bs-primary: #1A3B5D;
            --bs-secondary: #FFD700;
            --bs-accent: #28A745;
            --bs-light-gray: #F3F4F6;
            --bs-dark-text: #1F2937;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bs-light-gray);
            color: var(--bs-dark-text);
        }

        .font-serif {
            font-family: 'Playfair Display', serif;
        }

        .bg-primary { background-color: var(--bs-primary) !important; }
        .text-primary { color: var(--bs-primary) !important; }
        .bg-secondary { background-color: var(--bs-secondary) !important; }
        .text-secondary { color: var(--bs-secondary) !important; }
        .bg-accent { background-color: var(--bs-accent) !important; }
        .bg-light-gray { background-color: var(--bs-light-gray) !important; }
        .bg-dark-text { color: var(--bs-dark-text) !important; }
        .text-white { color: white !important; }

        .btn-accent {
            background-color: var(--bs-accent);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-weight: 700;
            border-radius: 50px;
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease-in-out;
        }
        .btn-accent:hover {
            background-color: #218838;
            transform: scale(1.05);
            color: white;
        }

        .hero-background-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .product-card-img img {
            transition: transform 0.3s ease-in-out;
        }
        .product-card-img:hover img {
            transform: scale(1.1);
        }

        .brand-logo {
            transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
            /*filter: grayscale(100%);*/
            /*opacity: 0.7;*/
            padding: 1rem;
        }
        .brand-logo:hover {
            transform: scale(1.1);
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Animaciones */
        @keyframes fadeInDown {
            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); }
        }
        .animate-fade-in-down { animation: fadeInDown 1s ease-out; }
        .animate-fade-in-up { animation: fadeInUp 1s ease-out; }

        .gallery-item img {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }
        .gallery-item img:hover {
            transform: scale(1.05);
        }

        /* Estilos específicos para el formulario y el hero section */
        .hero-section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .form-container {
            max-width: 450px;
        }
        .custom-form-control {
            font-size: 1rem;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
        }
        .phone-group .form-check-inline {
            margin-right: 0.5rem;
        }
        .form-check-input:checked {
            background-color: var(--bs-accent);
            border-color: var(--bs-accent);
        }
        .form-check-label {
            color: var(--bs-dark-text) !important;
        }

        /* Ajustes para el menú de navegación */
        .navbar-nav .nav-link:hover {
            color: var(--bs-secondary) !important;
        }
        .navbar-toggler {
            border: 0;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }