
        :root {
            --bg-dark: #0a0b0d;
            --bg-surface: rgba(18, 20, 26, 0.90);
            --bg-card: rgba(24, 27, 34, 0.88);
            --border-color: #272b36;
            --border-gold: rgba(212, 175, 55, 0.45);
            --gold: #d4af37;
            --gold-light: #f3d47c;
            --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3d47c 50%, #aa821d 100%);
            --text-white: #ffffff;
            --text-muted: #9ca3af;
            --whatsapp-green: #25d366;
            --transition: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            background-color: var(--bg-dark);
            color: #e5e7eb;
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Canvas de Lluvia de Iconos Interactivo */
        #judoCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 1;
        }

        /* Contenido sobre el canvas */
        .page-content-wrapper {
            position: relative;
            z-index: 2;
        }

        h1, h2, h3, h4 { color: var(--text-white); font-family: 'Oswald', sans-serif; letter-spacing: 0.5px; }
        a { color: inherit; text-decoration: none; }
        .container { width: 92%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 3; }

        /* Top Bar */
        .top-bar {
            background-color: rgba(5, 6, 7, 0.95);
            border-bottom: 1px solid #1a1d24;
            font-size: 0.85rem;
            padding: 7px 0;
            color: var(--text-muted);
            position: relative;
            z-index: 1001;
            backdrop-filter: blur(10px);
        }
        .top-bar-content { display: flex; justify-content: space-between; align-items: center; }
        .top-bar i { color: var(--gold); margin-right: 6px; }

        /* Navbar */
        .navbar {
            background-color: rgba(10, 11, 13, 0.94);
            border-bottom: 2px solid var(--gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
        }
        .nav-content { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
        .logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
        .logo-nav-img {
            height: 54px;
            width: auto;
            max-width: 54px;
            object-fit: contain;
            filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.45));
            transition: var(--transition);
        }
        .logo:hover .logo-nav-img { transform: scale(1.05); }
        .brand-title { color: var(--gold); font-size: 1.3rem; font-weight: 800; letter-spacing: 1px; display: block; line-height: 1.1; font-family: 'Oswald', sans-serif; }
        .brand-sub { color: var(--text-muted); font-size: 0.72rem; letter-spacing: 2px; font-weight: 600; }
        
        .nav-links { list-style: none; display: flex; align-items: center; gap: 16px; }
        .nav-links a { font-size: 0.88rem; font-weight: 600; text-transform: uppercase; transition: var(--transition); }
        .nav-links a:hover { color: var(--gold-light); }
        
        /* Botón Login en Navbar */
        .btn-nav-login {
            color: var(--gold) !important;
            border: 1px solid rgba(212, 175, 55, 0.6);
            background: rgba(212, 175, 55, 0.08);
            padding: 8px 14px;
            border-radius: 4px;
            font-weight: 700 !important;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn-nav-login:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: var(--gold);
            transform: translateY(-1px);
        }

        .btn-cta-nav {
            background: var(--gold-gradient);
            color: #000 !important;
            padding: 9px 18px;
            border-radius: 4px;
            font-weight: 800 !important;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        /* Hero */
        .hero {
            position: relative;
            padding: 75px 0 65px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            background: radial-gradient(circle at center, rgba(29, 32, 40, 0.85) 0%, rgba(10, 11, 13, 0.95) 80%);
            overflow: hidden;
        }
        .hero-logo-wrap { margin-bottom: 22px; display: inline-block; }
        .hero-logo-img {
            height: 180px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.38));
        }

        .hero-badge {
            display: inline-block;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-size: 0.82rem;
            font-weight: 700;
            padding: 5px 18px;
            border-radius: 50px;
            margin-bottom: 18px;
            letter-spacing: 1.5px;
            backdrop-filter: blur(8px);
        }
        .hero h1 { font-size: 3.3rem; line-height: 1.15; margin-bottom: 18px; font-weight: 800; text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
        .gold-text {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p { max-width: 680px; margin: 0 auto 30px; color: var(--text-muted); font-size: 1.12rem; }
        .hero-actions { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-gold { background: var(--gold-gradient); color: #000; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
        .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5); }
        .btn-outline { border: 2px solid var(--border-color); color: #fff; background: rgba(10, 11, 13, 0.7); backdrop-filter: blur(8px); }
        .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

        /* Secciones */
        .section { padding: 80px 0; border-bottom: 1px solid rgba(22, 24, 32, 0.9); position: relative; }
        .section-header { text-align: center; margin-bottom: 45px; }
        .section-tag { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 5px; }
        .section-heading { font-size: 2.3rem; margin-bottom: 10px; }
        .gold-line { width: 55px; height: 3px; background: var(--gold-gradient); margin: 0 auto; border-radius: 2px; }

        /* Grids */
        .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

        .card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 30px 22px;
            border-radius: 8px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }
        .card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15); }
        .card-icon { font-size: 2.4rem; color: var(--gold); margin-bottom: 15px; }
        .card h3 { font-size: 1.3rem; margin-bottom: 10px; }
        .card p { color: var(--text-muted); font-size: 0.9rem; }

        /* Tarjetas de Profesionales (Senseis y Especialistas) */
        .specialist-card {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: 10px;
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(12px);
        }
        .specialist-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-gradient);
        }
        .specialist-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 35px rgba(212, 175, 55, 0.25);
            border-color: var(--gold);
        }
        .specialist-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 18px;
        }
        .specialist-avatar {
            width: 74px;
            height: 74px;
            min-width: 74px;
            border-radius: 50%;
            object-fit: cover;
            border: 2.5px solid var(--gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.45);
        }
        .specialist-title h3 {
            font-size: 1.55rem;
            line-height: 1.15;
            margin-bottom: 4px;
        }
        .specialist-badge {
            display: inline-block;
            color: var(--gold);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .specialist-bio {
            color: #d1d5db;
            font-size: 0.92rem;
            margin-bottom: 20px;
            line-height: 1.55;
        }
        .credentials-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-top: 15px;
            border-top: 1px solid #232731;
        }
        .credentials-list li {
            font-size: 0.84rem;
            color: var(--text-muted);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .credentials-list li i {
            color: var(--gold);
            margin-top: 3px;
            font-size: 0.85rem;
        }

        /* Galería con Fotos Reales */
        .gallery-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }
        .gallery-item:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2); }
        .gallery-img-wrap {
            height: 190px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        .gallery-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .gallery-item:hover .gallery-img-wrap img {
            transform: scale(1.08);
        }
        .gallery-desc { padding: 20px; }
        .gallery-desc h4 { font-size: 1.2rem; margin-bottom: 6px; color: var(--gold); }
        .gallery-desc p { color: var(--text-muted); font-size: 0.88rem; }

        /* Formulario */
        .form-box {
            max-width: 620px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            padding: 35px;
            border-radius: 8px;
            backdrop-filter: blur(14px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        }
        .form-group { margin-bottom: 16px; }
        .form-row { display: flex; gap: 15px; }
        .form-col { flex: 1; }
        .form-group label { display: block; margin-bottom: 6px; font-size: 0.85rem; font-weight: 600; color: var(--gold-light); }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(9, 10, 13, 0.85);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: #fff;
            font-family: inherit;
        }
        .btn-whatsapp-submit {
            width: 100%;
            padding: 15px;
            background: var(--whatsapp-green);
            color: #fff;
            font-size: 1.05rem;
            font-weight: 800;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
            transition: var(--transition);
        }
        .btn-whatsapp-submit:hover { background-color: #1ebe5d; transform: translateY(-2px); }

        /* Footer */
        .site-footer {
            background-color: rgba(5, 6, 7, 0.96);
            padding: 50px 0 20px;
            border-top: 2px solid var(--border-color);
            position: relative;
            z-index: 10;
        }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; margin-bottom: 30px; align-items: center; }
        .footer-logo-img { height: 75px; width: auto; object-fit: contain; margin-bottom: 12px; filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.3)); }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(35, 45, 65, 0.6); padding-top: 20px; font-size: 0.85rem; color: var(--text-muted); }
        .admin-link { color: #667085; text-decoration: none; font-size: 0.75rem; margin-top: 8px; display: inline-block; }
        .admin-link:hover { color: var(--gold); }

        /* Botón Flotante */
        .floating-whatsapp {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 58px;
            height: 58px;
            background: var(--whatsapp-green);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            transition: var(--transition);
        }
        .floating-whatsapp:hover { transform: scale(1.1); background: #1ebe5d; }

        @media (max-width: 900px) {
            .nav-links { display: none; }
            .hero h1 { font-size: 2.3rem; }
            .hero-logo-img { height: 140px; }
            .form-row { flex-direction: column; gap: 0; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-logo-img { margin: 0 auto 12px; }
        }
    
.page-banner{padding:65px 0 30px}.page-heading{font-size:38px}.page-lead{color:#abb1bf}.section{padding:45px 0}.blog-grid-full,.team-grid,.dojo-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}.blog-entry,.team-card,.dojo-card,.form-wrapper{padding:24px;background:#161922;border:1px solid #303541;border-radius:8px}.blog-entry p{white-space:pre-line}.logo img,.footer-logo{width:70px}.nav-menu ul{list-style:none;display:flex;gap:20px}.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:30px}.site-footer{padding:40px 0}.floating-whatsapp .tooltip{display:none}.mobile-toggle{display:none}.form-group{margin:14px 0}.form-group label{display:block}.form-group input,.form-group select,.form-group textarea{width:100%;padding:12px;background:#11151c;color:white;border:1px solid #444}.form-row{display:flex;gap:20px}.form-row>*{flex:1}.team-card img,.dojo-card img{max-width:100%;height:auto} @media(max-width:700px){.nav-content,.form-row{flex-direction:column}.nav-menu ul{flex-wrap:wrap}.logo-text{display:none}}
