@import url('https://googleapis.com');

.banner-card {
            width: 100%;
            max-width: 12000px; /* Ancho máximo para que no se estire infinito en monitores 4K */
            min-height: 200px;
            position: relative;
            overflow: hidden;
            
            /* --- BORDES REDONDEADOS --- */
            border-radius: 24px; 
            
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        /* Cuadrícula CSS */
        .banner-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }

        .title {
            font-size: clamp(3.4rem, 6vw, 5rem);
            font-weight: 800;
            margin: 0;
            padding: 0 20px;
            z-index: 2;
            letter-spacing: -0.02em;
        }

        .subtitle {
            margin-top: 15px;
            font-size: clamp(1rem, 3vw, 2.1rem);
            font-weight: 400;
            background: rgba(255, 255, 255, 0.15);
            padding: 6px 20px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 2;
        }

        /* Ajuste para que en móviles muy pequeños sea casi total el ancho */
        @media (max-width: 480px) {
            body { padding: 10px; }
            .banner-card { border-radius: 16px; min-height: 180px; }
        }