:root {
        --primary-blue: #1e3a8a;
            --secondary-blue: #3b82f6;
            --light-blue: #60a5fa;
            --accent-blue: #0ea5e9;
            --gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--light-blue) 100%);
            --dark-color: #1f2937;
            --light-bg: #f8fafc;
            --card-shadow: 0 10px 40px rgba(0,0,0,0.1);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #60a5fa 0%, #0ea5e9 100%);
            --medical-green: #10b981;
            --medical-purple: #8b5cf6;
            --warm-orange: #f59e0b;
            --workshop-gradient: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
        }
    @font-face {
    font-family: 'montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    }

    @font-face {
    font-family: 'bignoodle';
    src: url('../fonts/big_noodle_titling.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Background con textura médica */
        .hero-bg {
            background: var(--gradient);
            position: relative;
            overflow: hidden;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-opacity='0.03'%3E%3Cpath d='M50 5c24.85 0 45 20.15 45 45S74.85 95 50 95 5 74.85 5 50 25.15 5 50 5zm0 10c-19.33 0-35 15.67-35 35s15.67 35 35 35 35-15.67 35-35-15.67-35-35-35z'/%3E%3C/g%3E%3C/svg%3E"),
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill-opacity='0.05'%3E%3Cpath d='M30 10l5 10h10l-8 6 3 10-10-7-10 7 3-10-8-6h10z'/%3E%3C/g%3E%3C/svg%3E");
            background-position: 0 0, 30px 30px;
            background-size: 100px 100px, 60px 60px;
        }

        /* Navbar */
        .navbar-custom {
            background: rgba(30, 58, 138, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(59, 130, 246, 0.3);
        }

        .navbar-brand img {
            height: 30px;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.1);
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--light-blue) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--light-blue);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero-section {
            height: 100%;
            display: flex;
            align-items: center;
            position: relative;
            color: white;
            padding-top: 50px;
            text-align: center;
        }

        .hero-logo {
            max-width: 300px;
            margin: 20px auto;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-title {
            font-family: 'bignoodle', sans-serif;
            font-size: 5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero-date {
            font-family: 'montserrat', sans-serif;
            font-size: 2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

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

        .social-links a {
            color: white;
            font-size: 2rem;
            margin: 0 15px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--light-blue);
            transform: translateY(-5px);
        }

        /* Botones de registro o accion action*/
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 1s both;
        }
        .btn-primary {
            background: var(--primary-blue);
            color: white;
            padding: 18px 35px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 18px 35px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px var(--secondary-blue);
            color: white;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-blue);
            color: rgb(255, 145, 0);
        }

        /* Countdown Container */
        .countdown-container {
            background: linear-gradient(145deg, rgba(37, 99, 235, 0.15), rgba(59, 130, 246, 0.1));
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 40px 30px;
            margin: 30px auto;
            max-width: 900px;
            border: 2px solid rgba(96, 165, 250, 0.3);
            box-shadow: 
                0 25px 50px rgba(37, 99, 235, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .countdown-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .countdown-container h3 {
            color: #ffffff;
            text-align: center;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            margin-bottom: 35px;
            font-size: 2rem;
            position: relative;
            z-index: 2;
        }

        /* Grid responsivo mejorado */
        .countdown-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        /* Responsive breakpoints */
        @media (max-width: 768px) {
            .countdown-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 15px;
            }
            
            .countdown-container {
                padding: 30px 20px;
                margin: 20px 15px;
            }
        }

        @media (max-width: 576px) {
            .countdown-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .countdown-container h3 {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }
        }

        @media (max-width: 400px) {
            .countdown-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
            }
            
            .countdown-container {
                padding: 25px 15px;
            }
        }

        /* Countdown Items */
        .countdown-item {
            background: linear-gradient(145deg, rgba(29, 78, 216, 0.3), rgba(37, 99, 235, 0.2));
            border-radius: 20px;
            padding: 25px 15px;
            text-align: center;
            border: 1px solid rgba(96, 165, 250, 0.4);
            box-shadow: 
                0 10px 30px rgba(37, 99, 235, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .countdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .countdown-item:hover::before {
            left: 100%;
        }

        .countdown-item:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 15px 40px rgba(37, 99, 235, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(96, 165, 250, 0.6);
        }

        .countdown-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffffff;
            display: block;
            line-height: 1;
            margin-bottom: 8px;
            background: linear-gradient(45deg, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .countdown-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* Responsive font sizes */
        @media (max-width: 768px) {
            .countdown-number {
                font-size: 2rem;
            }
            
            .countdown-label {
                font-size: 0.7rem;
                letter-spacing: 1px;
            }
            
            .countdown-item {
                padding: 20px 10px;
            }
        }

        @media (max-width: 576px) {
            .countdown-number {
                font-size: 1.8rem;
            }
            
            .countdown-label {
                font-size: 0.65rem;
            }
            
            .countdown-item {
                padding: 15px 8px;
            }
        }

        @media (max-width: 400px) {
            .countdown-number {
                font-size: 1.4rem;
            }
            
            .countdown-label {
                font-size: 0.6rem;
                letter-spacing: 0.5px;
            }
            
            .countdown-item {
                padding: 12px 5px;
            }
        }

        /* Animación de pulso para los números */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.20); }
            100% { transform: scale(1); }
        }

        .countdown-number.animate {
            animation: pulse 0.3s ease-in-out;
        }

        /* Mensaje final */
        .final-message {
            text-align: center;
            padding: 40px;
            background: linear-gradient(145deg, rgba(29, 78, 216, 0.2), rgba(37, 99, 235, 0.1));
            border-radius: 20px;
            border: 2px solid var(--light-blue);
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        /* Sections */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            
        }
        .section-title-white {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: var(--light-bg);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        /* Cards */
        .custom-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
            transition: all 0.3s ease;
            border: none;
            overflow: hidden;
        }

        .custom-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
        }

        /*Sección de About Acerca de Nosotros Section*/

        /* About Section with Bone Textures */
        /* About Section with Bone Textures - MANTENIDO INTACTO */
        #fisio-about-section {
            position: relative;
            padding: 120px 0;
            background: 
                linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.95) 50%, rgba(203, 213, 225, 0.95) 100%),
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.1'%3E%3Cpath d='M50 5c13.8 0 25 11.2 25 25s-11.2 25-25 25S25 43.8 25 30 36.2 5 50 5zm0 10c-8.3 0-15 6.7-15 15s6.7 15 15 15 15-6.7 15-15-6.7-15-15-15zm0 5c5.5 0 10 4.5 10 10s-4.5 10-10 10-10-4.5-10-10 4.5-10 10-10z'/%3E%3C/g%3E%3C/svg%3E");
            overflow: hidden;
        }

        /* Bone Pattern Overlay - MANTENIDO INTACTO */
        #fisio-about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 25%, rgba(30, 58, 138, 0.08) 0%, transparent 45%),
                radial-gradient(circle at 85% 75%, rgba(16, 185, 129, 0.06) 0%, transparent 45%),
                radial-gradient(circle at 45% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 45%),
                url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233b82f6' fill-opacity='0.02'%3E%3Cpath d='M40 20c11 0 20 9 20 20s-9 20-20 20-20-9-20-20 9-20 20-20zm0 6c-7.7 0-14 6.3-14 14s6.3 14 14 14 14-6.3 14-14-6.3-14-14-14z'/%3E%3C/g%3E%3C/svg%3E");
            animation: pulse-bone-bg 12s ease-in-out infinite alternate;
        }

        /* Anatomical Structure Pattern - MANTENIDO INTACTO */
        #fisio-about-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2360a5fa' stroke-opacity='0.03' stroke-width='1'%3E%3Cpath d='M60 10 L60 110 M10 60 L110 60 M25 25 L95 95 M95 25 L25 95'/%3E%3Ccircle cx='60' cy='60' r='30'/%3E%3Ccircle cx='60' cy='60' r='20'/%3E%3Ccircle cx='60' cy='60' r='10'/%3E%3C/g%3E%3C/svg%3E");
            animation: rotate-anatomy 30s linear infinite;
            opacity: 0.4;
        }

        @keyframes pulse-bone-bg {
            0% { opacity: 0.6; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.02); }
        }

        @keyframes rotate-anatomy {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* NUEVO DISEÑO - Título Principal Mejorado */
        .fisio-section-title {
            position: relative;
            z-index: 3;
            text-align: center;
            margin-bottom: 4rem;
        }

        .fisio-section-title h2 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            position: relative;
            display: inline-block;
        }

        .fisio-section-title h2::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -20px;
            width: calc(100% + 40px);
            height: calc(100% + 30px);
            background: var(--workshop-gradient);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.1;
            animation: glow-pulse 3s ease-in-out infinite alternate;
        }

        .fisio-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 5px;
            background: var(--gradient-3);
            border-radius: 3px;
            animation: expand-line 1.5s ease-out;
        }

        .fisio-section-title .lead {
            font-size: 1.3rem;
            color: var(--dark-color);
            font-weight: 500;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }

        @keyframes glow-pulse {
            0% { opacity: 0.1; transform: scale(0.98); }
            100% { opacity: 0.2; transform: scale(1.02); }
        }

        @keyframes expand-line {
            0% { width: 0; }
            100% { width: 150px; }
        }

        /* NUEVO DISEÑO - Cards Modernas con Efectos 3D */
        .fisio-modern-card {
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 28px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(15px);
            overflow: hidden;
            cursor: pointer;
            height: 100%;
            transform-style: preserve-3d;
        }

        .fisio-modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-3);
            transform: scaleX(0);
            transition: transform 0.5s ease;
            z-index: 1;
        }

        .fisio-modern-card:hover::before {
            transform: scaleX(1);
        }

        .fisio-modern-card:hover {
            transform: translateY(-15px) rotateX(5deg);
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.4);
        }

        /* Card Headers con Gradientes */
        .fisio-card-header {
            padding: 2rem;
            text-align: center;
            border-bottom: 1px solid rgba(59, 130, 246, 0.1);
            position: relative;
        }

        .fisio-card-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            opacity: 0.05;
            border-radius: 28px 28px 0 0;
        }

        /* Iconos Principales de Cards */
        .fisio-main-icon {
            width: 90px;
            height: 90px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin: 0 auto 1.5rem;
            position: relative;
            transition: all 0.5s ease;
        }

        .fisio-main-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 28px;
            padding: 3px;
            background: var(--gradient-3);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            animation: rotate-border 3s linear infinite;
        }

        .descripcion-card .fisio-main-icon {
            background: var(--gradient);
        }

        .valores-card .fisio-main-icon {
            background: linear-gradient(135deg, var(--medical-green), #34d399);
        }

        .mision-card .fisio-main-icon {
            background: linear-gradient(135deg, var(--medical-purple), #a78bfa);
        }

        .vision-card .fisio-main-icon {
            background: linear-gradient(135deg, var(--warm-orange), #fbbf24);
        }

        .fisio-modern-card:hover .fisio-main-icon {
            transform: scale(1.1) rotate(360deg);
        }

        @keyframes rotate-border {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Títulos de Cards */
        .fisio-card-title-modern {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark-color);
            margin: 0;
        }

        /* Card Body */
        .fisio-card-body-modern {
            padding: 2rem;
        }

        .fisio-card-body-modern p {
            color: var(--dark-color);
            opacity: 0.8;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* NUEVO - Lista de Valores con Íconos Coloridos */
        .fisio-values-grid {
            display: grid;
            gap: 1.5rem;
        }

        .fisio-value-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            transition: all 0.4s ease;
            border: 1px solid rgba(59, 130, 246, 0.1);
            position: relative;
            overflow: hidden;
        }

        .fisio-value-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--workshop-gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .fisio-value-item:hover::before {
            opacity: 1;
        }

        .fisio-value-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-color: var(--accent-blue);
        }

        .fisio-value-icon {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .fisio-value-item:hover .fisio-value-icon {
            transform: scale(1.15) rotate(5deg);
        }

        .fisio-value-icon.excelencia {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
        }

        .fisio-value-icon.innovacion {
            background: linear-gradient(135deg, var(--medical-green), #34d399);
        }

        .fisio-value-icon.colaboracion {
            background: linear-gradient(135deg, var(--medical-purple), #a78bfa);
        }

        .fisio-value-icon.etica {
            background: linear-gradient(135deg, var(--warm-orange), #fbbf24);
        }

        .fisio-value-content {
            position: relative;
            z-index: 1;
        }

        .fisio-value-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .fisio-value-desc {
            color: var(--dark-color);
            opacity: 0.8;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Floating Medical Elements - MANTENIDO INTACTO */
        .fisio-floating-element {
            position: absolute;
            pointer-events: none;
            animation: float-medical 8s ease-in-out infinite;
            z-index: 10;
        }

        .fisio-floating-element:nth-child(1) {
            top: 15%;
            left: 8%;
            animation-delay: 0s;
        }

        .fisio-floating-element:nth-child(2) {
            top: 25%;
            right: 12%;
            animation-delay: 3s;
        }

        .fisio-floating-element:nth-child(3) {
            bottom: 30%;
            left: 15%;
            animation-delay: 4s;
        }

        .fisio-floating-element:nth-child(4) {
            bottom: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .fisio-floating-element:nth-child(5) {
            top: 40%;
            left: 5%;
            animation-delay: 1s;
        }

        .fisio-floating-element:nth-child(6) {
            top: 60%;
            right: 5%;
            animation-delay: 4s;
        }

        .fisio-floating-element:nth-child(7) {
            top: 80%;
            left: 50%;
            animation-delay: 4s;
        }

        .fisio-floating-element:nth-child(8) {
            top: 10%;
            right: 40%;
            animation-delay: 3s;
        }

        @keyframes float-medical {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg) scale(1); 
                opacity: 0.08; 
            }
            25% { 
                transform: translateY(-15px) rotate(90deg) scale(1.1); 
                opacity: 0.12; 
            }
            50% { 
                transform: translateY(-25px) rotate(180deg) scale(1.2); 
                opacity: 0.15; 
            }
            75% { 
                transform: translateY(-15px) rotate(270deg) scale(1.1); 
                opacity: 0.12; 
            }
        }

        /* Animaciones de Entrada */
        .fisio-fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .fisio-fade-in.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            #fisio-about-section {
                padding: 80px 0;
            }

            .fisio-card-header {
                padding: 1.5rem;
            }

            .fisio-card-body-modern {
                padding: 1.5rem;
            }

            .fisio-main-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            .fisio-value-item {
                padding: 1rem;
            }

            .fisio-value-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .fisio-floating-element {
                font-size: 3rem !important;
            }
        }

        @media (max-width: 576px) {
            .fisio-section-title h2 {
                font-size: 2.5rem;
            }

            .fisio-value-item {
                flex-direction: column;
                text-align: center;
            }

            .fisio-value-icon {
                align-self: center;
            }
        }

        /* Speaker Cards */
        .speaker-card {
            cursor: pointer;
            position: relative;
        }

        .speaker-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
        }

        .speaker-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 15px 15px 0 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .speaker-card:hover .speaker-overlay {
            opacity: 0.9;
        }

        /*Sección Section schedule Programa*/

        /* Enhanced Program Section with Medical Textures */
        #program-section {
            min-height: 100vh;
            position: relative;
            padding: 120px 0;
            background: var(--gradient);
            overflow: hidden;
            padding: 60px 20px;
        }

        /* Fondo con texturas */
        .tours-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px),
                linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
            background-size: 40px 40px, 60px 60px, 100px 100px;
            animation: textureMove 20s linear infinite;
        }

        /* Medical Equipment Pattern */
        #program-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px),
                linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
            background-size: 40px 40px, 60px 60px, 100px 100px;
            animation: textureMove 20s linear infinite;
        }

        @keyframes medical-pulse {
            0% { opacity: 0.7; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.02); }
        }

        @keyframes grid-shift {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-200px) translateY(-200px); }
        }

        /* Enhanced Section Title */
        .program-section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 3;
        }

        .program-section-title h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: var(--light-bg);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            position: relative;
            display: inline-block;
        }

        .program-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: var(--gradient-3);
            border-radius: 2px;
            animation: expand-title-line 1.5s ease-out;
        }

        @keyframes expand-title-line {
            0% { width: 0; }
            100% { width: 150px; }
        }

        /* Enhanced Floating Medical Elements */
        .program-floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .program-shape {
            position: absolute;
            opacity: 0.12;
            animation: float-medical-enhanced 20s infinite ease-in-out;
        }

        .program-shape:nth-child(1) {
            top: 15%;
            left: 8%;
            font-size: 4rem;
            color: var(--medical-green);
            animation-delay: 0s;
        }

        .program-shape:nth-child(2) {
            top: 25%;
            right: 12%;
            font-size: 3.5rem;
            color: var(--secondary-blue);
            animation-delay: 5s;
        }

        .program-shape:nth-child(3) {
            bottom: 30%;
            left: 15%;
            font-size: 3.8rem;
            color: var(--medical-purple);
            animation-delay: 10s;
        }

        .program-shape:nth-child(4) {
            bottom: 20%;
            right: 10%;
            font-size: 4.2rem;
            color: var(--warm-orange);
            animation-delay: 15s;
        }

        .program-shape:nth-child(5) {
            top: 50%;
            left: 50%;
            font-size: 3rem;
            color: var(--accent-blue);
            animation-delay: 7s;
        }

        @keyframes float-medical-enhanced {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg) scale(1);
                opacity: 0.12;
            }
            25% { 
                transform: translateY(-25px) rotate(90deg) scale(1.15);
                opacity: 0.18;
            }
            50% { 
                transform: translateY(-40px) rotate(180deg) scale(1.3);
                opacity: 0.25;
            }
            75% { 
                transform: translateY(-25px) rotate(270deg) scale(1.15);
                opacity: 0.18;
            }
        }

        /* Enhanced Tabs Container */
        .program-tabs-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 28px;
            padding: 12px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.2);
            margin-bottom: 50px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 2;
        }

        .program-tabs-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient);
            border-radius: 30px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .program-tabs-container:hover::before {
            opacity: 0.1;
        }

        .program-nav-tabs {
            border: none;
            display: flex;
            justify-content: space-around;
            gap: 8px;
        }

        .program-nav-tabs .nav-link {
            border: none;
            border-radius: 20px;
            padding: 25px 35px;
            font-weight: 700;
            font-size: 1.1rem;
            color: #64748b;
            background: transparent;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-align: center;
            min-width: 180px;
            transform-style: preserve-3d;
        }

        .program-nav-tabs .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient);
            opacity: 0;
            transition: all 0.4s ease;
            border-radius: 20px;
            transform: scale(0.8);
        }

        .program-nav-tabs .nav-link:hover {
            transform: translateY(-3px) scale(1.02);
            color: var(--primary-blue);
        }

        .program-nav-tabs .nav-link:hover::before {
            opacity: 0.1;
            transform: scale(1);
        }

        .program-nav-tabs .nav-link.active {
            background: var(--gradient);
            color: white;
            box-shadow: 
                0 15px 35px rgba(30, 58, 138, 0.4),
                0 5px 15px rgba(30, 58, 138, 0.2);
            transform: translateY(-5px) scale(1.05);
        }

        .program-nav-tabs .nav-link.active::before {
            opacity: 0;
        }

        /* Enhanced Tab Content */
        .program-tab-content {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 28px;
            padding: 50px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 2;
        }

        /* Enhanced Day Header */
        .program-day-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            position: relative;
        }

        .program-day-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
            animation: pulse-line 2s ease-in-out infinite;
        }

        @keyframes pulse-line {
            0%, 100% { opacity: 1; transform: translateX(-50%) scaleX(1); }
            50% { opacity: 0.7; transform: translateX(-50%) scaleX(1.1); }
        }

        .program-day-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .program-day-date {
            font-size: 1.3rem;
            color: #64748b;
            font-weight: 600;
        }

        /* Enhanced Schedule Items */
        .program-schedule-item {
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 25px;
            border: 2px solid transparent;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transform-style: preserve-3d;
        }

        .program-schedule-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: var(--gradient);
            transition: all 0.4s ease;
            border-radius: 0 3px 3px 0;
        }

        .program-schedule-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 20px;
        }

        .program-schedule-item:hover {
            transform: translateY(-8px) rotateY(2deg);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 10px 20px rgba(30, 58, 138, 0.1);
            border-color: rgba(30, 58, 138, 0.3);
        }

        .program-schedule-item:hover::before {
            width: 12px;
        }

        .program-schedule-item:hover::after {
            opacity: 0.02;
        }

        /* Enhanced Time Badge */
        .program-time-badge {
            background: var(--gradient);
            color: white;
            padding: 12px 20px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            box-shadow: 
                0 8px 20px rgba(30, 58, 138, 0.3),
                0 3px 6px rgba(30, 58, 138, 0.2);
            position: relative;
            z-index: 2;
            animation: badge-glow 3s ease-in-out infinite;
        }

        @keyframes badge-glow {
            0%, 100% { box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3), 0 3px 6px rgba(30, 58, 138, 0.2); }
            50% { box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4), 0 5px 10px rgba(30, 58, 138, 0.3); }
        }

        /* Enhanced Event Title */
        .program-event-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 12px;
            line-height: 1.5;
            position: relative;
            z-index: 2;
        }

        .program-speaker-name {
            color: var(--secondary-blue);
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            z-index: 2;
        }

        /* Enhanced Break Item */
        .program-break-item {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            color: #92400e;
            text-align: center;
            font-weight: 700;
            border: 2px solid #f59e0b;
        }

        .program-break-item .program-time-badge {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            animation: break-pulse 2s ease-in-out infinite;
        }

        @keyframes break-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Enhanced Workshop Section */
        .program-workshop-section {
            background: linear-gradient(135deg, rgba(219, 234, 254, 0.8) 0%, rgba(191, 219, 254, 0.9) 100%);
            border-radius: 20px;
            padding: 35px;
            margin: 30px 0;
            border: 2px solid rgba(59, 130, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

        .program-workshop-section::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-3);
            border-radius: 22px;
            z-index: -1;
            opacity: 0.1;
        }

        .program-workshop-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 25px;
            text-align: center;
            position: relative;
        }

        .program-workshop-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-3);
            border-radius: 2px;
        }

        .program-workshop-item {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .program-workshop-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 1);
        }

        /* Animation Classes */
        .program-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .program-fade-in.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Tab Animation */
        .program-tab-pane {
            opacity: 0;
            transform: translateY(30px) scale(0.98);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .program-tab-pane.show.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #program-section {
                padding: 80px 0;
            }
            
            .program-nav-tabs .nav-link {
                padding: 20px 25px;
                font-size: 1rem;
                min-width: 140px;
            }
            
            .program-day-title {
                font-size: 2.2rem;
            }
            
            .program-tab-content {
                padding: 30px 25px;
            }
            
            .program-schedule-item {
                padding: 25px 20px;
            }

            .program-shape {
                font-size: 2.5rem !important;
            }
        }

        @media (max-width: 576px) {
            .program-nav-tabs {
                flex-direction: column;
                gap: 10px;
            }

            .program-nav-tabs .nav-link {
                min-width: auto;
                width: 100%;
            }
        }
        /* Package Cards */
        .package-card {
            border: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .package-card.premium {
            background: linear-gradient(white, white) padding-box,
                        var(--gradient) border-box;
            border: 3px solid transparent;
        }

        .package-header {
            background: var(--gradient);
            color: white;
            text-align: center;
            padding: 20px;
            border-radius: 17px 17px 0 0;
        }

        .price-option {
            padding: 15px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            margin: 10px 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .price-option:hover,
        .price-option.selected {
            border-color: var(--secondary-blue);
            background: rgba(59, 130, 246, 0.1);
        }

        .congress-promo-section {
            position: relative;
            min-height: 100vh;
            background: var(--gradient);
            overflow: hidden;
            padding: 80px 0;
            display: flex;
            align-items: center;
        }

        .congress-promo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
            animation: backgroundShift 15s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { opacity: 1; transform: translateX(0); }
            50% { opacity: 0.8; transform: translateX(20px); }
        }

        .congress-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .congress-floating-element {
            position: absolute;
            color: rgba(255, 255, 255, 0.1);
            font-size: 2rem;
            animation: float 6s ease-in-out infinite;
        }

        .congress-floating-element:nth-child(1) {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
            font-size: 3rem;
        }

        .congress-floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
            font-size: 2.5rem;
        }

        .congress-floating-element:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
            font-size: 2.2rem;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
                opacity: 0.6;
            }
        }

        .congress-container {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 60px 40px;
            box-shadow: var(--card-shadow), 0 0 0 1px rgba(255,255,255,0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: slideUp 1s ease-out;
        }

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

        .congress-badge {
            display: inline-block;
            background: var(--gradient-2);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 5px 15px rgba(240, 147, 251, 0.3);
            animation: pulse 2s infinite;
            position: relative;
            overflow: hidden;
        }

        .congress-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 5px 15px rgba(240, 147, 251, 0.3); }
            50% { box-shadow: 0 8px 25px rgba(240, 147, 251, 0.5); }
            100% { box-shadow: 0 5px 15px rgba(240, 147, 251, 0.3); }
        }

        .congress-title {
            color: var(--primary-blue);
            font-weight: 800;
            margin: 30px 0;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .congress-subtitle {
            color: var(--dark-color);
            margin-bottom: 40px;
            font-weight: 500;
            opacity: 0.8;
        }

        .price-highlight-section {
            background: var(--gradient-3);
            border-radius: 20px;
            padding: 40px 30px;
            margin: 40px 0;
            color: white;
            position: relative;
            overflow: hidden;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3); }
            to { box-shadow: 0 15px 40px rgba(96, 165, 250, 0.5); }
        }

        .price-highlight-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .price-label {
            margin-bottom: 15px;
            font-weight: 600;
        }

        .price-amount {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .price-currency {
            font-size: 2rem;
            opacity: 0.8;
            margin-left: 10px;
        }

        .deadline-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.2);
            padding: 15px 25px;
            border-radius: 15px;
            backdrop-filter: blur(5px);
            position: relative;
            z-index: 2;
        }

        .deadline-icon {
            animation: tick 1s infinite;
        }

        @keyframes tick {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .congress-features {
            margin: 50px 0;
            background: rgba(96, 165, 250, 0.05);
            border-radius: 20px;
            padding: 40px 30px;
            border: 2px solid rgba(96, 165, 250, 0.1);
        }

        .congress-features h4 {
            color: var(--primary-blue);
            margin-bottom: 30px;
            font-weight: 700;
        }

        .feature-item-congress {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .feature-item-congress:hover {
            transform: translateX(10px);
            background: rgba(96, 165, 250, 0.1);
            border-radius: 10px;
            padding-left: 15px;
        }

        .feature-icon-congress {
            color: var(--accent-blue);
            margin-right: 15px;
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-5px); }
            60% { transform: translateY(-3px); }
        }

        .feature-text-congress {
            color: var(--dark-color);
            font-weight: 500;
            flex: 1;
        }

        .urgency-item {
            background: var(--workshop-gradient);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(96, 165, 250, 0.2);
            position: relative;
            overflow: hidden;
        }

        .urgency-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: sweep 3s infinite;
        }

        @keyframes sweep {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .urgency-number {
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary-blue);
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
            animation: countPulse 2s infinite;
        }

        @keyframes countPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .urgency-label {
            color: var(--secondary-blue);
            font-weight: 600;
            font-size: 1.2rem;
            position: relative;
            z-index: 2;
        }

        .congress-cta-button {
            display: inline-block;
            background: var(--gradient-2);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
            position: relative;
            overflow: hidden;
        }

        .congress-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .congress-cta-button:hover::before {
            left: 100%;
        }

        .congress-cta-button:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(240, 147, 251, 0.5);
        }

        .congress-cta-button:active {
            transform: translateY(-1px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .congress-promo-section {
                padding: 40px 0;
            }
            
            .congress-container {
                padding: 40px 20px;
                border-radius: 20px;
            }
            
            .price-amount {
                font-size: 3rem;
            }
            
            .urgency-number {
                font-size: 3rem;
            }
            
            .congress-cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .congress-floating-element {
                display: none;
            }
            
            .price-amount {
                font-size: 2.5rem;
            }
            
            .feature-item-congress {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
        /* --- NUEVOS ESTILOS PARA FASE 2 y PROMOCIÓN --- */

/* Estilos específicos para la sección de precio de la Fase 2 */
.price-highlight-section-phase2 {
    background-color: #f0f8ff; /* Azul claro muy sutil */
    border: 2px solid #b3e0ff; /* Borde azul claro */
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fadeInScaleUp 0.8s ease-out forwards;
}

/* Título de la Fase 2 */
.price-highlight-section-phase2 .price-label {
    color: #007bff; /* Un azul primario para destacar */
    font-weight: 700;
}

/* Monto del precio de la Fase 2 */
.price-highlight-section-phase2 .price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0056b3; /* Un azul más oscuro */
    line-height: 1;
    margin-top: 0.5rem;
}

/* Contenedor de la promoción 10+1 */
.promo-group-card {
    background-color: #e6f7ff; /* Un azul más claro para la tarjeta */
    border: 1px solid #cceeff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Icono de la promoción */
.promo-group-card .promo-icon {
    font-size: 3rem;
    color: #007bff;
    min-width: 60px; /* Asegura un tamaño mínimo y consistencia */
}

/* Título de la promoción */
.promo-group-card .promo-title {
    color: #004085;
    font-size: 1.5rem;
}

/* Descripción de la promoción */
.promo-group-card .promo-description {
    color: #333;
}

/* Botón de acción (CTA) de la promoción */
.promo-group-card .promo-cta {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.promo-group-card .promo-cta:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: scale(1.05);
}

/* Animación para que las nuevas secciones aparezcan con un efecto sutil */
@keyframes fadeInScaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

        /* Gallery Carousel */
         .gallery-section {
            padding: 80px 0;
            background: var(--light-bg);
            position: relative;
        }

        .gallery-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #6b7280;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 20px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--card-shadow);
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.6));
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay-content {
            text-align: center;
            color: white;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay-content {
            transform: translateY(0);
        }

        .gallery-overlay h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .gallery-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            backdrop-filter: blur(10px);
        }

        .gallery-icon i {
            font-size: 1.2rem;
            color: white;
        }

        /* Masonry Grid Heights */
        .gallery-tall {
            height: 400px;
        }

        .gallery-medium {
            height: 280px;
        }

        .gallery-short {
            height: 200px;
        }

        @media (max-width: 768px) {
            .gallery-tall,
            .gallery-medium,
            .gallery-short {
                height: 250px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .gallery-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .gallery-tall,
            .gallery-medium,
            .gallery-short {
                height: 200px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }
        }

        /* Animation on scroll */
        .gallery-item {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
        }

        .gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .gallery-item:nth-child(2) { animation-delay: 0.2s; }
        .gallery-item:nth-child(3) { animation-delay: 0.3s; }
        .gallery-item:nth-child(4) { animation-delay: 0.4s; }
        .gallery-item:nth-child(5) { animation-delay: 0.5s; }
        .gallery-item:nth-child(6) { animation-delay: 0.6s; }
        .gallery-item:nth-child(7) { animation-delay: 0.7s; }
        .gallery-item:nth-child(8) { animation-delay: 0.8s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Map Section */
        .map-container {
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Contact Section */
        .contact-section {
            background: var(--gradient);
            color: white;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Animations */
        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
           
            
            .hero-logo {
                max-width: 200px;
            }
        }

        /* Medical icons floating */
        .floating-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .floating-icon {
            position: absolute;
            color: rgba(59, 130, 246, 0.1);
            font-size: 2rem;
            animation: float-around 20s linear infinite;
        }

        @keyframes float-around {
            from {
                transform: translateY(100vh) rotate(0deg);
            }
            to {
                transform: translateY(-100px) rotate(360deg);
            }
        }

        .floating-icon:nth-child(1) { left: 10%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { left: 20%; animation-delay: 2s; font-size: 1.5rem; }
        .floating-icon:nth-child(3) { left: 30%; animation-delay: 4s; }
        .floating-icon:nth-child(4) { left: 40%; animation-delay: 6s; font-size: 2.5rem; }
        .floating-icon:nth-child(5) { left: 50%; animation-delay: 8s; }
        .floating-icon:nth-child(6) { left: 60%; animation-delay: 10s; font-size: 1.8rem; }
        .floating-icon:nth-child(7) { left: 70%; animation-delay: 12s; }
        .floating-icon:nth-child(8) { left: 80%; animation-delay: 14s; font-size: 2.2rem; }
        .floating-icon:nth-child(9) { left: 90%; animation-delay: 16s; }


        /*Sección de Hotel Sede Venue */

.venue-section {
    background-color: #f8f9fa; /* Un color base muy claro */
    padding: 80px 0;
    position: relative;
    overflow: hidden; /* Asegura que la textura no se desborde */
}

/* Fondo con Textura */
/* Estilos Específicos para la Sección del Hotel (Venue) */

.venue-section {
    /* Mantenemos un color base muy claro, pero la textura azul lo cubrirá */
    background-color: #e0f2f7; 
    padding: 80px 0;
    position: relative;
    overflow: hidden; /* Asegura que la textura no se desborde */
}

/* Fondo con Textura Azul */
.venue-background-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* TEXTURA AZUL EN BASE64 - Patrón sutil de puntos/líneas */
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VBZjZGRiIgZD0iTTAgMGg2MHY2MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik0wIDBoMzB2MzBIMHoiIGZpbGw9IiM3Mzk1RkYiIG9wYWNpdHk9Ii4xIi8+CiAgICAgICAgPHBhdGggZD0iTTMwIDMwaDMwdjMwSDB6IiBmaWxsPSIjOUNBRkRFIiBvcGFjaXR5PSIuMDgiLz4KICAgICAgICA8cGF0aCBkPSJNMCAzMGgzMHYzMEgweiIgZmlsbD0iIzY4OEVFQiIgb3BhY2l0eT0iLjA2Ii8+CiAgICAgICAgPHBhdGggZD0iTTMwIDBoMzB2MzBIMzAiIGZpbGw9IiM1QTk0RkEiIG9wYWNpdHk9Ii4wNSIvPgogICAgPC9nPgogPC9zdmc+');
    background-repeat: repeat; /* Para que la textura se repita y cubra todo el fondo */
    background-color: #d1ecf1; /* Un color de fondo azul claro para la textura */
    opacity: 0.7; /* Ajusta la opacidad para que sea un detalle sutil pero visible */
    z-index: 0;
}

.venue-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #212529; /* Un azul muy oscuro o casi negro para el contraste */
    position: relative;
    padding-bottom: 15px;
}

.venue-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007bff; /* Un azul de Bootstrap como primario */
    border-radius: 2px;
}

.venue-map-container {
    border: 5px solid #007bff; /* Borde azul */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.venue-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.venue-info-card {
    background-color: rgba(255, 255, 255, 0.9); /* Un poco de transparencia para dejar ver la textura */
    border: none;
    transition: all 0.3s ease-in-out;
}

.venue-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15) !important;
}

.venue-hotel-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0056b3; /* Un azul un poco más oscuro */
}

.venue-hotel-description {
    line-height: 1.8;
    color: #333; /* Color de texto más oscuro para mejor contraste */
}

.venue-features-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0056b3; /* Un azul un poco más oscuro */
}

.venue-feature-list {
    padding-left: 0;
}

.venue-feature-item {
    font-size: 1.1rem;
    color: #444;
    transition: all 0.2s ease-in-out;
}

.venue-feature-item i {
    font-size: 1.3em;
    width: 30px; /* Alineación de iconos */
    text-align: center;
    color: #007bff; /* Iconos en azul */
}

.venue-feature-item:hover {
    color: #007bff; /* Cambia a azul al pasar el mouse */
    transform: translateX(5px);
}

.venue-gallery-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 50px;
    color: #0056b3; /* Título de galería en azul oscuro */
}

.venue-gallery-item {
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease-in-out;
}

.venue-gallery-item:hover {
    border-color: #007bff; /* Borde azul al pasar el mouse */
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.venue-gallery-img {
    display: block;
    width: 100%;
    height: 220px; /* Altura fija para todas las imágenes */
    object-fit: cover; /* Asegura que la imagen cubra el área sin distorsionarse */
    border-radius: calc(0.3rem - 1px); /* Mantener el border-radius del custom-card */
}

/* Estilos para el Carrusel de Galería */
#venueHotelGallery .carousel-control-prev,
#venueHotelGallery .carousel-control-next {
    width: 5%; /* Más estrecho */
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#venueHotelGallery .carousel-control-prev:hover,
#venueHotelGallery .carousel-control-next:hover {
    opacity: 1;
}

#venueHotelGallery .carousel-control-prev-icon,
#venueHotelGallery .carousel-control-next-icon {
    background-color: rgba(0, 123, 255, 0.7); /* Iconos de carrusel en azul semi-transparente */
    border-radius: 50%;
    padding: 15px;
}

/*Sección de Tours*/

        .tours-section {
            min-height: 100vh;
            background: var(--gradient);
            position: relative;
            padding: 60px 20px;
            overflow: hidden;
        }

        /* Fondo con texturas */
        .tours-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px),
                linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
            background-size: 40px 40px, 60px 60px, 100px 100px;
            animation: textureMove 20s linear infinite;
        }

        @keyframes textureMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(40px, 40px); }
        }

        /* Elementos decorativos flotantes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            font-size: 80px;
            color: var(--light-bg);
            /*background: rgba(255,255,255,0.1);*/
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 10%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .header-tour {
            text-align: center;
            margin-bottom: 60px;
        }

        .title-tour {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
        }

        .subtitle-tour {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

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

        .tours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .tour-card {
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            cursor: pointer;
        }

        .tour-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        }

        .tour-image {
            width: 100%;
            height: 250px;
            background: var(--gradient-3);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .tour-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 1px, transparent 1px),
                radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 30px 30px, 50px 50px;
        }

        .tour-content {
            padding: 30px;
        }

        .tour-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .tour-description {
            color: var(--dark-color);
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .tour-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .tour-duration {
            background: var(--gradient-3);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .tour-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        .tour-btn {
            width: 100%;
            padding: 15px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tour-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
        }

        .tour-btn:active {
            transform: translateY(0);
        }

        /* Efecto de brillo en las tarjetas */
        .tour-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
            z-index: 1;
        }

        .tour-card:hover::before {
            left: 100%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .tours-section {
                padding: 40px 15px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .tours-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .tour-content {
                padding: 20px;
            }
        }

        /* Animaciones de entrada */
        .tour-card {
            animation: slideInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .tour-card:nth-child(1) { animation-delay: 0.1s; }
        .tour-card:nth-child(2) { animation-delay: 0.3s; }
        .tour-card:nth-child(3) { animation-delay: 0.5s; }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* Lightbox (si usas uno como Lightbox2) */
.lightbox .lb-dataContainer {
    font-family: 'Montserrat', sans-serif; /* O la fuente que estés usando */
}
        /*Sección de comentarios*/

        .comments-section {
            padding: 80px 0;
            background: var(--light-bg);
            position: relative;
        }

        .comments-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient);
        }

        .comments-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--card-shadow);
            margin-bottom: 40px;
            border: 1px solid #e5e7eb;
        }

        .comments-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f3f4f6;
        }

        .comments-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }

        .comments-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .comments-header-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .comments-header-content p {
            color: #6b7280;
            margin: 0;
            font-size: 1rem;
        }

        .facebook-comments-wrapper {
            background: #f8fafc;
            border-radius: 15px;
            padding: 20px;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .facebook-comments-wrapper:hover {
            border-color: var(--light-blue);
            box-shadow: 0 5px 20px rgba(96, 165, 250, 0.1);
        }

        .loading-placeholder {
            text-align: center;
            padding: 60px 20px;
            color: #6b7280;
        }

        .loading-placeholder i {
            font-size: 3rem;
            color: var(--light-blue);
            margin-bottom: 20px;
        }

        .comment-guidelines {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 5px solid var(--accent-blue);
        }

        .comment-guidelines h4 {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .comment-guidelines h4 i {
            margin-right: 10px;
            color: var(--accent-blue);
        }

        .guidelines-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .guidelines-list li {
            padding: 8px 0;
            color: #374151;
            display: flex;
            align-items: flex-start;
        }

        .guidelines-list li i {
            color: var(--accent-blue);
            margin-right: 10px;
            margin-top: 2px;
            font-size: 0.8rem;
        }

        .stats-row {
            display: flex;
            justify-content: space-around;
            margin-top: 40px;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: var(--card-shadow);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }

        .stat-label {
            color: #6b7280;
            font-size: 0.9rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .comments-container {
                padding: 25px;
            }
            
            
            .comments-header {
                flex-direction: column;
                text-align: center;
            }
            
            .comments-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .stats-row {
                flex-direction: column;
                gap: 20px;
            }
            
            .comment-guidelines {
                padding: 20px;
            }
        }

        /* Custom Facebook Comments Styling */
        .fb-comments, .fb-comments iframe[style] {
            width: 100% !important;
        }

        .fb-comments span, .fb-comments iframe {
            width: 100% !important;
        }