/* === ESTILOS GENERALES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    scroll-behavior: smooth; 
}

body {
    background-color: #050505; 
    color: #ffffff;
    overflow: hidden; 
    height: 100vh;
}

/* === NAVBAR MINIMALISTA === */
.navbar {
    position: fixed; 
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background: transparent; 
    z-index: 100;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #777777;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative; 
    padding-bottom: 5px; 
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease; 
}

.nav-link:hover { color: #cccccc; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: #ffffff; font-weight: 700; }
.nav-link.active::after { width: 100%; }

/* === PANTALLA 1: HERO FULLSCREEN (Home) === */
.hero-fullscreen {
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.center-title { text-align: center; }
.small-subtitle { font-size: 10px; color: #c3c3c3; letter-spacing: 6px; margin-bottom: 10px; }
.massive-name { font-size: 9vw; font-weight: 900; letter-spacing: 10px; line-height: 1; margin-bottom: 10px; color: #ffffff; }
.small-role { font-size: 10px; color: #f8f8f8; letter-spacing: 4px; }

.floating-socials { position: absolute; left: 50px; bottom: 50px; display: flex; flex-direction: column; gap: 15px; }
.floating-socials a { color: #555555; text-decoration: none; font-size: 12px; font-weight: bold; transition: color 0.3s; }
.floating-socials a:hover { color: #ffffff; }

/* === PANTALLA 2: SOBRE MÍ === */
.sobre-mi-section {
    height: 100vh; 
    display: flex;
    align-items: center; 
    justify-content: center; 
}

.main-content {
    width: 100%;
    max-width: 1100px; 
    padding: 0 40px;
}

.hero-banner {
    background-color: #0f0f0f;
    border: 1px solid #222;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px; 
    height: 300px; 
    position: relative;
    overflow: hidden;
}

.banner-text { max-width: 55%; z-index: 2; }
.banner-text h1 { font-size: 38px; margin-bottom: 15px; color: #ffffff; }
.banner-text p { font-size: 14px; margin-bottom: 25px; color: #a0a0a0; line-height: 1.6; }

.read-more {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    background-color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.read-more:hover { background-color: #2a2a2a; border-color: #ffffff; }

.banner-image { position: absolute; right: 5%; bottom: -30px; z-index: 1; }
.banner-image img { height: 400px; object-fit: cover; }

.bottom-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    margin-top: 40px; 
}
.dash-title { font-size: 12px; margin-bottom: 20px; color: #888; letter-spacing: 2px; text-transform: uppercase; }

.artwork-grid { display: flex; gap: 15px; margin-bottom: 10px; }
.artwork-card { border-radius: 12px; overflow: hidden; border: 1px solid #333; flex: 1; transition: all 0.3s ease; }
.artwork-card:hover { transform: translateY(-5px); border-color: #555; }
.artwork-card img { width: 100%; height: 120px; object-fit: cover; display: block; }
.view-more-btn { display: block; text-align: center; color: #fff; border-bottom: 1px solid #555; padding-bottom: 5px; text-decoration: none; font-size: 11px; margin-top: 15px; text-transform: uppercase; letter-spacing: 1px; }

.links-list { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.dash-pill { background-color: #1a1a1a; color: #a0a0a0; text-decoration: none; padding: 12px 20px; border-radius: 30px; border: 1px solid #333; font-size: 12px; transition: all 0.3s ease; }
.dash-pill:hover { background-color: #2a2a2a; color: #fff; border-color: #555; transform: translateX(5px); }

.info-list { display: flex; flex-direction: column; gap: 15px; }
.info-card { display: flex; align-items: center; background-color: #111; color: #fff; text-decoration: none; padding: 15px; border-radius: 12px; border: 1px solid #222; width: 100%; transition: transform 0.3s ease; }
.info-card:hover { transform: translateY(-3px); }
.info-icon { font-size: 20px; margin-right: 15px; }
.info-text h4 { font-size: 13px; color: #fff; margin-bottom: 4px; }
.info-text p { font-size: 11px; color: #777; line-height: 1.4; }

/* === PANTALLA CONTADOR MINIMALISTA === */
/* === ESTILOS GENERALES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    scroll-behavior: smooth; /* Hace que el clic en el menú baje suavemente */
}

body {
    background-color: #050505; /* Fondo negro profundo */
    color: #ffffff;
    overflow: hidden; /* Bloquea el scroll en todas las páginas */
    height: 100vh;
}

/* === NAVBAR MINIMALISTA === */
/* === NAVBAR MINIMALISTA (CORREGIDO PARA INCLUIR DIBUJO) === */
.navbar {
    position: fixed; 
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px; /* Ajustado el padding para que sea más estilizado con el dibujo */
    background: transparent;
    z-index: 100;
}

/* Contenedor del logo: alinea dibujo y texto horizontalmente */
.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* Espacio entre el dibujo y el texto "KU." */
}

/* Estilos para el dibujo del personaje en la barra */
.nav-avatar {
    width: 40px; /* Ajusta el tamaño según prefieras */
    height: 40px; /* Mantén el mismo valor para que sea cuadrado/circular */
    object-fit: cover; /* Asegura que la imagen se ajuste sin deformarse */
    border-radius: 50%; /* Hace el dibujo circular (opcional) */
    border: 2px solid #ffffff; /* Añade un borde blanco sutil (opcional) */
}

/* Estilos para el texto "KU." */
.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff; /* Asegura que el texto sea blanco */
}

/* (El resto de estilos de .nav-links y .nav-link se mantienen igual) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #777777;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative; 
    padding-bottom: 5px; 
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease; 
}

.nav-link:hover { color: #cccccc; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: #ffffff; font-weight: 700; }
.nav-link.active::after { width: 100%; }

/* Enlaces con animación de la barrita blanca */
.nav-link {
    text-decoration: none;
    color: #777777; /* Color apagado por defecto */
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative; /* Necesario para la barrita */
    padding-bottom: 5px; /* Da espacio para la barrita */
    transition: color 0.3s ease;
}

/* La barrita blanca oculta por defecto */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0; /* Ancho 0 para que no se vea */
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease; /* Animación suave al crecer */
}

/* Efecto al pasar el mouse (Hover) */
.nav-link:hover {
    color: #cccccc; /* Se ilumina un poco el texto */
}

.nav-link:hover::after {
    width: 100%; /* La barrita crece */
}

/* Efecto cuando estás en esa página (Active) */
.nav-link.active {
    color: #ffffff; /* Texto blanco puro */
    font-weight: 700; /* Texto más resaltado/grueso */
}

.nav-link.active::after {
    width: 100%; /* La barrita se queda fija */
}

/* === PANTALLA 1: HERO FULLSCREEN (Home) === */
.hero-fullscreen {
    height: 100vh; /* Ocupa el 100% del alto de la pantalla */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.center-title {
    text-align: center;
}

.small-subtitle {
    font-size: 10px;
    color: #555555;
    letter-spacing: 6px;
    margin-bottom: 10px;
}

.massive-name {
    font-size: 9vw; /* Se hace gigante dependiendo del monitor */
    font-weight: 900;
    letter-spacing: 10px;
    line-height: 1;
    margin-bottom: 10px;
    color: #ffffff;
}

.small-role {
    font-size: 10px;
    color: #555555;
    letter-spacing: 4px;
}

/* Redes flotantes (Izquierda) - CORREGIDO PARA IMÁGENES */
.floating-socials {
    position: absolute;
    left: 50px;
    bottom: 50px;
    display: flex;
    flex-direction: column; /* Mantiene la disposición vertical */
    gap: 20px; /* Espacio entre los iconos */
    z-index: 10; /* Asegura que esté por encima de otros elementos */
}

.floating-socials a {
    display: block; /* Importante para que el enlace ocupe todo el tamaño de la imagen */
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.2; /* Un poco transparente por defecto para estilo minimalista */
}

.floating-socials a:hover {
    transform: scale(1.1); /* Efecto de aumento al pasar el mouse */
    opacity: 1; /* Totalmente visible al pasar el mouse */
}

/* Estilo específico para las imágenes de los iconos */
.social-icon {
    width: 24px; /* Ajusta el tamaño de los iconos según prefieras */
    height: 24px; /* Mantén el mismo valor para que sean cuadrados */
    display: block;
    object-fit: contain; /* Asegura que la imagen no se deforme */
    /* Si tus iconos no son blancos, puedes usar este filtro para hacerlos blancos (opcional): */
    /* filter: brightness(0) invert(1); */
}

/* Scroll flotante (Derecha) */
.floating-scroll {
    position: absolute;
    right: 50px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.floating-scroll span {
    color: #555555;
    font-size: 10px;
    letter-spacing: 3px;
    transform: rotate(90deg); /* Voltea el texto */
    margin-bottom: 20px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: #555555;
}

/* === PANTALLA CONTADOR MINIMALISTA (Corrección para no scroll y simetría) === */
/* === ESTILOS GENERALES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #050505;
    color: #ffffff;
    overflow: hidden; 
    height: 100vh;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background: transparent;
    z-index: 100;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #777777;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover { color: #cccccc; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: #ffffff; font-weight: 700; }
.nav-link.active::after { width: 100%; }

/* === PANTALLA CONTADOR CORREGIDA === */
/* === ESTILOS GENERALES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #050505;
    color: #ffffff;
    overflow: hidden; 
    height: 100vh;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background: transparent;
    z-index: 100;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #777777;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover { color: #cccccc; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: #ffffff; font-weight: 700; }
.nav-link.active::after { width: 100%; }

/* === PANTALLA CONTADOR CORREGIDA (MENOS BRILLO) === */
.counter-fullscreen {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

/* PRÓXIMAMENTE - Color atenuado para que no resalte tanto */
.counter-fullscreen .small-subtitle {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 15px;
    color: #888888; /* Gris medio para suavizar el impacto visual */
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0.8; /* Un toque de transparencia para mezclarlo con el fondo */
}

/* CONTADORES - Horizontal y simétrico */
.minimal-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

/* NÚMEROS - Se mantienen blancos para ser el foco principal */
.count-num {
    font-size: 5.5rem; 
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 2px;
}

/* ETIQUETAS - Un poco más sutiles */
.count-label {
    font-size: 12px;
    font-weight: 700;
    color: #f4f4f4; /* Gris más oscuro que el título */
    letter-spacing: 4px;
    margin-top: 10px;
    text-transform: uppercase;
}

/* TEXTO INFERIOR */
.ethereal-text {
    max-width: 650px;
    font-size: 12px;
    color: #adadad; /* Texto ambiental muy sutil */
    letter-spacing: 3px;
    line-height: 2;
    text-transform: uppercase;
    border-top: 1px solid #1a1a1a;
    padding-top: 40px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .minimal-countdown {
        gap: 20px;
    }
    .count-num {
        font-size: 3rem;
    }
    .counter-fullscreen .small-subtitle {
        font-size: 24px;
        letter-spacing: 8px;
    }
}

/* ... Tus estilos de Navbar y Generales se mantienen igual ... */

/* === PANTALLA REDES SOCIALES === */
.redes-fullscreen {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    padding-top: 60px; 
    overflow-y: auto; 
}

.redes-fullscreen .small-subtitle {
    margin-bottom: 35px;
    font-size: 12px;
    letter-spacing: 8px;
    color: #888;
    text-transform: uppercase;
}

.redes-grid {
    display: grid;
    /* Aumentamos a 380px para que cada panel sea más ancho */
    grid-template-columns: repeat(3, 380px); 
    gap: 20px; 
    width: 100%;
    max-width: 1250px; /* Aumentamos el máximo permitido */
    justify-content: center; 
}

/* Base del Panel */
.redes-panel {
    display: flex;
    align-items: center;
    padding: 22px 30px; /* Más gorditos */
    border-radius: 18px; /* Bordes un poco más curvos para el nuevo tamaño */
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05); 
    
    background-color: var(--bg-color, #1a1a1a);
    color: var(--text-color, #ffffff);
}

.redes-panel:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.panel-icon img {
    width: 35px; /* Icono más grande */
    height: 35px;
    object-fit: contain; 
    display: block;
}

.panel-divider {
    width: 1px;
    height: 45px; /* Divisor más alto */
    margin: 0 25px;
    background-color: var(--div-color, rgba(255, 255, 255, 0.2));
}

.panel-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.panel-name {
    font-size: 16px; /* Nombre más grande */
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.panel-handle {
    font-size: 12px; /* Usuario más grande */
    letter-spacing: 1px;
    margin-top: 3px;
    color: var(--sub-color, #aaaaaa);
}

/* Instagram */
.panel-instagram { --bg-color: #E4405F; --text-color: #fff; --sub-color: rgba(255,255,255,0.7); --div-color: rgba(255,255,255,0.2); }

/* X (Twitter) - Mantenemos el borde para que no se pierda en el fondo */
.panel-x { --bg-color: #000000; --text-color: #fff; --sub-color: #888; --div-color: #333; border: 1px solid #2F3336; }

/* Bluesky */
.panel-bluesky { --bg-color: #0085FF; --text-color: #fff; --sub-color: rgba(255,255,255,0.7); --div-color: rgba(255,255,255,0.2); }

/* VGen */
.panel-vgen { --bg-color: #FF2E7E; --text-color: #fff; --sub-color: rgba(255,255,255,0.7); --div-color: rgba(255,255,255,0.2); }

/* YouTube */
.panel-youtube { --bg-color: #FF0000; --text-color: #fff; --sub-color: rgba(255,255,255,0.7); --div-color: rgba(255,255,255,0.2); }

/* TikTok */
.panel-tiktok { --bg-color: #010101; --text-color: #fff; --sub-color: #888; --div-color: #333; border: 1px solid #222; }

/* Discord */
.panel-discord { --bg-color: #5865F2; --text-color: #fff; --sub-color: rgba(255,255,255,0.7); --div-color: rgba(255,255,255,0.2); }

/* Facebook */
.panel-facebook { --bg-color: #1877F2; --text-color: #fff; --sub-color: rgba(255,255,255,0.7); --div-color: rgba(255,255,255,0.2); }

/* Pinterest */
.panel-pinterest { --bg-color: #E60023; --text-color: #fff; --sub-color: rgba(255,255,255,0.7); --div-color: rgba(255,255,255,0.2); }

/* WhatsApp */
.panel-whatsapp { --bg-color: #25D366; --text-color: #fff; --sub-color: rgba(255,255,255,0.7); --div-color: rgba(255,255,255,0.2); }

/* Steam */
.panel-steam { --bg-color: #171A21; --text-color: #fff; --sub-color: #888; --div-color: #333; border: 1px solid #2a475e; }

/* Kick */
.panel-kick { --bg-color: #53FC18; --text-color: #000; --sub-color: #222; --div-color: rgba(0,0,0,0.1); }

/* Spotify */
.panel-spotify { --bg-color: #1DB954; --text-color: #fff; --sub-color: rgba(255,255,255,0.7); --div-color: rgba(255,255,255,0.2); }

/* Ko-fi */
.panel-kofi { --bg-color: #29ABE0; --text-color: #fff; --sub-color: rgba(255,255,255,0.7); --div-color: rgba(255,255,255,0.2); }

/* Patreon */
.panel-patreon { --bg-color: #FF424D; --text-color: #fff; --sub-color: rgba(255,255,255,0.7); --div-color: rgba(255,255,255,0.2); }

/* ========================================================= */
/* === RESPONSIVE: CONFIGURACIÓN PARA ANDROID / IPHONE === */
/* ========================================================= */

@media (max-width: 850px) {
    /* 1. Reset de scroll y altura para que fluya en móvil */
    body {
        overflow-y: auto !important; /* Forzamos el scroll vertical */
        height: auto;
        min-height: 100vh;
        background-color: #050505;
    }

    /* 2. Navbar: Logo arriba y menú abajo */
    .navbar {
        padding: 20px 10px;
        flex-direction: column; 
        gap: 15px;
        position: relative; /* Cambiado a relative para que no flote sobre el contenido */
        background: #050505;
    }

    .logo {
        justify-content: center;
        width: 100%;
    }

    .logo-text {
        font-size: 22px;
    }

    .nav-links {
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .nav-link {
        font-size: 9px;
        letter-spacing: 1px;
    }

    /* 3. Home (KENTO): Tamaño masivo */
    .hero-fullscreen {
        height: 80vh; /* Un poco menos para que no empuje todo abajo */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .massive-name {
        font-size: 22vw; 
        letter-spacing: 5px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .small-role {
        font-size: 12px;
        letter-spacing: 4px;
        color: #888;
    }

    /* 4. Sobre Mí: Ajuste de proporciones */
    .sobre-mi-section {
        height: auto;
        padding-top: 20px;
        padding-bottom: 50px;
        display: block;
    }

    .main-content {
        padding: 0 15px;
    }

    .hero-banner {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
        text-align: center;
        border-radius: 25px;
        gap: 20px;
    }

    .banner-text {
        max-width: 100%;
        order: 1; /* Texto primero */
    }

    .banner-text h1 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .banner-text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .banner-image {
        position: relative;
        right: 0;
        bottom: 0;
        order: 2; /* Imagen después */
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .banner-image img {
        height: 280px; /* Imagen más grande en móvil */
        width: auto;
        object-fit: contain;
    }

    /* Dashboard: Una sola columna bien ancha */
    .bottom-dashboard {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .dash-title {
        font-size: 14px;
        text-align: center;
        letter-spacing: 4px;
    }

    /* 5. Redes Sociales: Paneles grandes */
    .redes-fullscreen {
        padding-top: 50px;
    }

    .redes-grid {
        grid-template-columns: 1fr; 
        width: 100%;
        padding: 0 10px;
        gap: 15px;
    }

    .redes-panel {
        height: 85px; 
        padding: 0 25px;
        width: 100%;
    }

    .panel-name {
        font-size: 16px;
    }
}
