 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #4480e7 0%, #3c3b3e 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* Header con efecto glass */
        .header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 0.5rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #4480e7, #3c3b3e);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        } */

        /* .logo-icon::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.9);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
            transform: rotate(90deg);
        } */

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4480e7, #3c3b3e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .header-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-item {
            all: unset;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .nav-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateY(-2px);
        }

        .nav-item.active {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        /* Contenido principal */
        .main-content {
            flex: 1;
            /*padding: 2rem;*/
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .dashboard-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 0rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            min-height: 600px;
            transition: all 0.3s ease;
        }

        .dashboard-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .dashboard-header {
            margin-bottom: 2rem;
            text-align: center;
        }

        .dashboard-title {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4480e7, #3c3b3e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .dashboard-subtitle {
            color: #666;
            font-size: 1.1rem;
            font-weight: 400;
        }

        /* Área del embed de Looker */
        .looker-embed {
            width: 100%;
            min-height: 100%;
            border: none;
            border-radius: 12px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
        }
        
        .looker-embed.full-bleed {
  border-radius: 0;        /* opcional: sin esquinas redondeadas en full width */
  min-height: 100dvh;      /* alto de pantalla; ajústalo si tienes header fijo */
}

        .embed-placeholder {
            text-align: center;
            padding: 3rem;
        }

        .embed-placeholder::before {
            content: '📊';
            font-size: 3rem;
            display: block;
            margin-bottom: 1rem;
        }

        /* Footer con efecto glass */
        .footer {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1.5rem 2rem;
            margin-top: auto;
            box-shadow: 0 -8px 32px rgba(31, 38, 135, 0.37);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: white;
            transform: translateY(-1px);
        }
        
        .full-bleed {
  position: relative;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}


        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 1rem;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .header-nav {
                gap: 1rem;
            }

            .main-content {
                /*padding: 1rem;*/
            }

            .dashboard-container {
                padding: 0rem;
                border-radius: 15px;
            }

            .dashboard-title {
                font-size: 2rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .footer-links {
                justify-content: center;
            }
        }
        
        /* Mejora en móviles modernos (usa d*vw) */
@supports (width: 100dvw) {
  .full-bleed {
    margin-left: calc(50% - 50dvw);
    margin-right: calc(50% - 50dvw);
    width: 100dvw;
  }
}

        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.2rem;
            }

            .dashboard-title {
                font-size: 1.8rem;
            }

            .nav-item {
                padding: 0.4rem 0.8rem;
                font-size: 0.9rem;
            }
        }

        /* Animaciones suaves */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dashboard-container {
            animation: fadeIn 0.6s ease-out;
        }

        /* Estilos para el iframe de Looker cuando se agregue */
        .looker-embed iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 12px;
        }

        .login-container {
            width: 100dvw;
            height: 100dvh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #4480e7, #3c3b3e);
        }