        :root {
            --primary-color: #f73859; /* Color vibrante para destacar */
            --dark-bg: #1a1a1a;
            --text-color: #f0f0f0;
            --nav-width: 6rem; /* Ancho en escritorio */
            --nav-width-mobile: 4rem; /* Nuevo ancho en móvil */
            --content-padding: 3rem;
        }

        /* 1. Fondo Fijo y General */
        body, html {
            background-color: #b7f7f7;
            height: 100%;
            margin: 0;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden; /* Evitar scroll horizontal */
        }

        /* 2. Navegación Fija (Vertical - Base para Escritorio) */
        .vertical-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: var(--nav-width);
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.7); /* Semitransparente oscuro */
            z-index: 1000;
            padding-top: 2rem;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .nav-link-custom {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1rem 0;
            text-align: center;
            color: var(--text-color);
            position: relative;
            transition: color 0.3s ease;
            text-decoration: none;
            cursor: pointer;
            overflow: hidden;
        }

        /* Efecto Mancha de Pintura (Pseudo-elemento) */
        .nav-link-custom::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--primary-color);
            opacity: 0.7;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease;
            z-index: -1;
        }

        .nav-link-custom:hover::before,
        .nav-link-custom.active-section::before {
            width: 150%;
            height: 150%;
        }

        .nav-link-custom:hover,
        .nav-link-custom.active-section {
            color: var(--dark-bg) !important;
        }

        .nav-link-custom span.material-icons-outlined {
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        /* Efecto Scale */
        .nav-link-custom:hover span.material-icons-outlined,
        .nav-link-custom.active-section span.material-icons-outlined {
            transform: scale(1.15);
        }

        /* 3. Contenido Principal - Base para Escritorio */
        .main-content {
            margin-left: var(--nav-width);
            min-height: 100vh;
            padding: var(--content-padding);
            padding-bottom: 8rem; 
            display: flex;
            align-items: center;
            color: var(--text-color);
        }

        .content-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            background-color: rgba(0, 0, 0, 0.5); 
            backdrop-filter: blur(5px);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
            transition: opacity 0.5s ease;
        }

        .left-panel, .right-panel {
            background-color: transparent !important;
            padding: 0;
        }

        .left-panel img {
            width: 100%;
            max-height: 60vh;
            object-fit: contain;
            border-radius: 0.75rem;
        }

        /* 4. Footer de Técnicas */
        .technique-footer {
            margin-top: 2rem;
        }
        
        /* Centrado de contenido en las columnas de técnicas (SVG y Box) */
        .technique-footer .col-md-4 {
            display: flex;
            flex-direction: column;
            align-items: center; /* Centra horizontalmente el SVG y el technique-box */
            margin-bottom: 1.5rem; /* Espacio entre técnicas en móvil */
        }
        
        /* Espacio y tamaño para el icono SVG */
        .technique-footer svg {
            margin-bottom: 0.75rem;
        }

        .technique-box {
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
            padding: 0;
            background-color: rgba(255, 255, 255, 0.1); /* Fondo ligero para la caja */
            width: 100%; 
            max-width: 220px; /* Limite de ancho para que no se extienda demasiado en desktop */
            min-height: 40px; 
            transition: transform 0.3s ease;
        }
        /* Eliminamos .technique-box img ya que el SVG está fuera */

        .technique-box:hover {
            transform: scale(1.03); /* Efecto hover solo en la caja */
        }

        .technique-text {
            /* Estilo de texto y fondo para el nombre de la técnica */
            position: static; /* No se superpone a nada */
            width: 100%;
            background-color: var(--primary-color); /* Usamos color primario para el fondo del texto */
            color: var(--dark-bg);
            padding: 0.5rem 0;
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
            border-radius: 0.5rem;
        }
        
        /* 5. Footer Global - Base para Escritorio */
        .global-footer {
            background-color: var(--dark-bg);
            color: var(--text-color);
            padding: 1.5rem 0;
            text-align: center;
            position: relative;
            margin-left: var(--nav-width);
            width: calc(100% - var(--nav-width));
        }
        .social-icon {
            font-size: 1.5rem;
            color: var(--text-color);
            transition: color 0.2s ease;
            margin: 0 0.5rem;
        }
        .social-icon:hover {
            color: var(--primary-color);
        }

        /* 6. Botón de WhatsApp Flotante */
        .whatsapp-float {
            text-decoration: none;
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

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

        /* Adaptación a Móviles (Responsive) */
        @media (max-width: 992px) {
            /* * MANTENEMOS la navegación vertical y fija (position: fixed) 
             * pero la hacemos más estrecha para ahorrar espacio en móvil.
             */
            .vertical-nav {
                width: var(--nav-width-mobile); /* 4rem de ancho */
                padding-top: 0.5rem; /* Reducir padding superior */
            }

            /* Hacemos los iconos y texto más pequeños */
            .nav-link-custom {
                padding: 0.5rem 0;
            }
            .nav-link-custom span.material-icons-outlined {
                font-size: 1.5rem;
            }
            .nav-link-custom p {
                font-size: 0.6rem; 
            }
            
            /* 3. Contenido Principal - Ajustar margen para la nav más estrecha */
            .main-content {
                margin-left: var(--nav-width-mobile); 
                padding: 1rem; /* Reducir padding general */
            }

            .content-container {
                padding: 1rem;
            }
            
            /* 5. Footer Global - Ajustar margen */
            .global-footer {
                margin-left: var(--nav-width-mobile); 
                width: calc(100% - var(--nav-width-mobile));
            }
        }