        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
        }

        :root {
            --bs-primary: #ff0000; 
            --bs-secondary: #f4b400; 
            --bs-light-gray: #f8f9fa;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            white-space: normal;
            word-break: break-word;
            /*max-width: calc(100% - 70px);*/
            text-align: center;
        }

        .navbar {
            transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
        }

        .navbar-scrolled {
            background-color: #ffffff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-hidden {
            transform: translateY(-100%);
        }
        .carousel-item {
            height: 80dvh;
        }
        .carousel-item img {
            object-fit: cover;
            object-position: center;
            height: 100%;
            width: 100%;
            filter: brightness(1); 
        }

        .carousel-caption {
            bottom: 20%;
        }

        .carousel-caption h5 {
            font-size: 3rem;
            font-weight: 700;
        }

        .section-padding {
            padding: 30px 0;
        } 

        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .card-img-top {
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            height: 250px;
            object-fit: cover;
        }

        .level-icon {
            font-size: 4rem;
            color: var(--bs-primary);
        }

        .quick-access .card {
            background: linear-gradient(135deg, var(--bs-primary), #b02a37); /* Gradiente rojo */
            color: white;
            text-align: center;
        }

        .quick-access .card-body {
            padding: 2rem;
        }

        .quick-access-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* Pie de página (Footer) */
        .footer {
            background-color: #212529;
            color: #adb5bd;
        }

        .footer .footer-title {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer .social-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            color: #ffffff;
            transition: color 0.3s ease;
        }

        .footer .social-icon:hover {
            color: var(--bs-secondary);
        }

        .footer .footer-link {
            text-decoration: none;
            color: #adb5bd;
            transition: color 0.3s ease;
        }

        .footer .footer-link:hover {
            color: #ffffff;
        }

        .btn-primary {
            background-color: var(--bs-primary) !important;
            border-color: var(--bs-primary) !important;
        }

        .btn-primary:hover, .btn-primary:focus {
            background-color: #ff0000 !important;
            border-color: #ff0000 !important;
        }

        .btn-outline-primary {
            color: var(--bs-primary) !important;
            border-color: var(--bs-primary) !important;
        }

        .btn-outline-primary:hover, .btn-outline-primary:focus {
            background-color: var(--bs-primary) !important;
            color: white !important;
        }

        .badge.bg-primary-subtle {
            background-color: rgba(220, 53, 69, 0.15) !important;
            color: var(--bs-primary) !important;
        }

        .btn-link.text-primary {
            color: var(--bs-primary) !important;
        }

        .btn-link.text-primary:hover {
            color: #b02a37 !important;
        }

        .text-primary {
            color: var(--bs-primary) !important;
        }
        .fb-card {
        background: rgba(255, 255, 255, 0);
        text-align: center;
        }

        .fb-responsive-wrapper {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
        }

        .fb-responsive-wrapper iframe,
        .fb-responsive-wrapper .fb-post,
        .fb-responsive-wrapper .fb-video {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        }

        /*.fb-responsive-wrapper iframe {
        height: auto !important;
        aspect-ratio: 9 / 16; /* Ajusta si quieres 
        }*/
        workshop-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .workshop-card .card-img {
            height: 350px;
            object-fit: cover;
            filter: brightness(0.4); 
            transition: filter 0.3s ease;
        }

        .workshop-card:hover .card-img {
            filter: brightness(0.3);
            transform: scale(1.05); 
        }

        .workshop-overlay {
            background: rgba(0, 0, 0, 0.2); 
            z-index: 2;
        }

        /* WhatsApp */
        .whatsapp-container {
            position: fixed;
            bottom: 30px;
            left: 30px; 
            z-index: 9999;
            font-family: 'Poppins', sans-serif;
        }

        .whatsapp-btn {
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative; 
            z-index: 1002;
        }

        .whatsapp-btn:hover {
            background-color: #128c7e;
            transform: scale(1.1);
        }

        .whatsapp-tooltip {
            position: absolute;
            bottom: 15px; 
            left: 70px;
            background-color: white;
            color: #333;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            transform: translateX(-10px);
            z-index: 1001;
        }

        .whatsapp-tooltip::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 50%;
            transform: translateY(-50%);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-right: 6px solid white;
        }

        .whatsapp-container:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .whatsapp-container.chat-open .whatsapp-tooltip {
            display: none !important;
        }

        .whatsapp-chat-window {
            position: absolute;
            bottom: 80px;
            left: 0;
            width: 300px;
            background-color: #e5ddd5;
            border-radius: 15px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.9);
            transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
            transform-origin: bottom left;
            z-index: 1001;
        }

        .whatsapp-chat-window.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .whatsapp-header {
            background-color: #128c7e;
        }

        .whatsapp-body {
            background-image: url(fondo-wapp.webp);
            background-repeat: repeat;
            background-size: 300px;
            min-height: 200px;
        }

        .chat-bubble {
            background-color: white;
            border-radius: 0 15px 15px 15px; 
            position: relative;
            animation: fadeIn 0.5s ease forwards;
        }

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