 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Montserrat', sans-serif;
            scroll-behavior: smooth;
        }

        a {
            text-decoration: none !important;
            outline: none !important;
        }

        button {
            text-decoration: none !important;
            outline: none !important;
        }
        
        ::selection {
            background: #800020;
            color: #ffffff;
        }

        .m-l-40 {
            margin-left: 40px;
        }

        .bg-bordo {
            background-color: #800020;
        }
        
        .text-bordo {
            color: #800020;
        }

        .tbi {
            color: #800020 !important;
        }
        
        .border-bordo {
            border-color: #800020;
        }
        
        .cl0{
            color: #dbdbdb;
        }

        .hero-section {
            background: url('/assets/img/head-img.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .testimonial-card {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .nav-link {
            position: relative;
        }

        nav a {
            align-content: center;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #800020;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .mobile-menu.open {
            max-height: 500px;
            transition: max-height 0.5s ease-in;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: #800020;
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
        }
        
        .carousel-container {
            position: relative;
        }
        
        .carousel-arrow {
            position: absolute;
            top: calc(50% - 40px);
            transform: translateY(-50%);
            background: rgba(255,255,255,0.7);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            color: #800020;
            font-size: 1.2rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .carousel-arrow:hover {
            background: rgba(255,255,255,0.9);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-arrow.left {
            left: 10px;
        }
        
        .carousel-arrow.right {
            right: 10px;
        }
        
        .testimonial-carousel {
            overflow: hidden;
            cursor: grab;
            user-select: none;
            padding: 5px;
            padding-bottom: 20px;
        }
        
        .testimonial-slides {
            display: flex;
            transition: transform 0.5s ease;
            will-change: transform;
            width: 100% !important;
        }
        .transition-none {
            transition: none !important;
        }

        .testimonial-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #d1d5db; /* bg-gray-300 */
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .testimonial-dot.active, 
        .testimonial-dot.bg-bordo {
            background-color: #991b1b; /* bg-bordo */
            transform: scale(1.2);
        }

        .testimonial-dot.bg-gray-300 {
            background-color: #d1d5db;
        }
        
        .testimonial-slide {
            flex: 0 0 100%;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .logo {
            width: 150px;
            text-decoration: none !important;
            outline: none !important;
        }

        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100dvw;
            height: 100dvh;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }

        .loading-screen.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loading-logo {
            width: 65px;
            height: 70px;
            animation: pulse 1.5s infinite ease-in-out;
        }

                #testimonios {
            background-color: #f8fafc;
            padding: 4rem 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .faq-item {
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #bfbfbf;
            text-decoration: none !important;
            outline: none !important;
        }
        
        .faq-item:hover {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            padding: 1.25rem 1.5rem;
            font-weight: 600;
            color: #1e293b;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: #991b1b;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #475569;
            line-height: 1.6;
        }
        
        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
            border-top: 1px solid #bfbfbf;
        }
        
        .ar1-1 { 
            aspect-ratio: 1/1;
        }

        .c-about {
            width: 100% !important;
            place-items: center;
        }

        .bg-nosotros {
            background-image: url('/assets/img/bg-nosotros.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            background-attachment: fixed;
        }

        .c-w-i {
            color: white !important;
        }

        .bg-title {
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .t-left {
            text-align: left;
        }

        .p-1rem {
            padding: 1rem;
        }

        .important {
            font-weight: bold;
            color: #bordo; /* Asegúrate de usar tu color exacto */
        }
          /* Animaciones personalizadas */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-overlay {
            animation: fadeIn 0.3s ease-out;
        }
        
        .modal-content {
            animation: slideUp 0.4s ease-out;
        }
        
        /* Scroll personalizado */
        .custom-scroll::-webkit-scrollbar {
            width: 6px;
        }
        
        .custom-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .custom-scroll::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }
        
        .custom-scroll::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .bg-head-modal {
            background-image: linear-gradient(to right, #640000, #800020);
        }

        .b-bordo {
            --tw-border-opacity: 1;
            border-color: #640000;
        }

        .hover\:tb-600:hover {
            --tw-text-opacity: 1;
            color: #640000;
        }
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #800020; /* Rojo bordo como en tu diseño */
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border: none;
            outline: none;
        }

        .floating-btn.active {
            opacity: 1;
            visibility: visible;
        }

        .floating-btn:hover {
            background-color: #610018; /* Rojo más oscuro al hover */
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }


        @media (min-width: 768px) {
            .testimonial-carousel {
                padding: 25px;
            }
            

        .testimonial-slide {
            padding: 0 45px;
        }



        }

        @media (min-width: 1280px) {
            section .container {
                max-width: 1024px !important;
            }
        }


        @media (max-width: 768px) {
            .grid-cols-4 {
                grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
            }
            .m-w-360 {
                max-height: 360px !important;
            }
        }


    /* MODO NOCTURNO */

        .theme-switch-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            padding-left: 0.75rem;
            text-decoration: none !important;
            outline: none !important;
        }

        .theme-switch {
        display: inline-block;
        height: 34px;
        position: relative;
        width: 60px;
        }

        .theme-switch input {
        display: none;
        }
        
        .slider {
        background-color: #ccc;
        bottom: 0;
        cursor: pointer;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        transition: .4s;
        border-radius: 34px;
        }

        .slider:before {
        background-color: #00000061;
        bottom: 4px;
        content: "";
        height: 26px;
        left: 4px;
        position: absolute;
        transition: .4s;
        width: 26px;
        border-radius: 50%;
        }

        input:checked + .slider {
        background-color: #800020; /* Color bordo de tu diseño */
        }

        input:checked + .slider:before {
        transform: translateX(26px);
        }

        .slider .icons {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 11px;
        box-sizing: border-box;
        }

        .slider .icons i {
        color: white;
        font-size: 12px;
        }

        /* Estilos para el modo oscuro */
        .dark-mode {
        --bg-color: #121212;
        --text-color: #f5f5f5;
        --primary-color: #bb86fc;
        }

        .dark-mode body {
        background-color: #121212;
        color: #f5f5f5;
        }

        .dark-mode .bg-white {
        background-color: #1e1e1e !important;
        }

        .dark-mode .bg-gray-50 {
        background-color: #2d2d2d !important;
        }

        .dark-mode .bg-gray-100 {
        background-color: #252525 !important;
        }

        .dark-mode .text-gray-600, 
        .dark-mode .text-gray-700 {
        color: #e0e0e0 !important;
        }

        .dark-mode .text-gray-900 {
        color: #ffffff !important;
        }

        .dark-mode .border-gray-300 {
        border-color: #444 !important;
        }

        .dark-mode .testimonial-card,
        .dark-mode .bg-gray-50 {
        background-color: #2d2d2d !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .dark-mode footer {
        background-color: #000 !important;
        }

        .dark-mode .loading-screen {
        background-color: #1e1e1e;
        }
        .dark-mode .hover\:bg-gray-100:hover {
            --tw-bg-opacity: 1;
            background-color: rgb(39 39 39);
        }

        .dark-mode .faq-question {
            color: #ffffff;
            background-color: #1e1e1e;
        }

        .dark-mode .faq-answer {
            color: #ffffff;
            background: #161616;
        }

        .dark-mode .faq-item {
            border: 1px solid #464646;
        }

        .dark-mode .faq-item.active .faq-answer {
            border-top: 1px solid #464646;
        }

        .dark-mode input, .dark-mode select, .dark-mode textarea {
            color: #ffffff;
            background: #161616;
        }

        .dark-mode .border-b {
            border-bottom-color: #2f2f2f;
        }

        .dark-mode .text-gray-800 {
            color: rgb(255 255 255);
        }

        .dark-mode .cl0{
            color: #3a3a3a;
        }
        