/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* Cores baseadas no logo - esquema profissional */
:root {
    --primary-color: #FF1493; /* Rosa neon do logo */
    --secondary-color: #00FFFF; /* Ciano neon do logo */
    --background-color: #0a0a0a; /* Preto profundo */
    --surface-color: #1a1a1a; /* Cinza escuro para cards */
    --surface-light: #2a2a2a; /* Cinza médio para seções */
    --text-primary: #ffffff; /* Branco puro para títulos */
    --text-secondary: #e0e0e0; /* Cinza claro para texto de leitura */
    --text-muted: #b0b0b0; /* Cinza médio para texto secundário */
    --border-color: rgba(255, 20, 147, 0.2);
    --border-secondary: rgba(0, 255, 255, 0.1);
}

/* Utilitários */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.logo {
    height: 103px; /* Aumentado em mais 20% (de 86px para 103px) */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.6));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 12px rgba(255, 20, 147, 0.8));
    transform: scale(1.05);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.btn-primary {
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    font-size: 1.1em; /* Aumentado em 10% */
}

.nav-mobile {
    display: none;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    font-size: 1.1em; /* Aumentado em 10% */
}

.btn-primary:hover {
    background-color: #ff0080;
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(0, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 1.5rem 6rem;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
        url('hero-banner.png') center center / cover;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center, 
        rgba(255, 20, 147, 0.05) 0%, 
        rgba(0, 255, 255, 0.05) 50%, 
        transparent 100%
    );
    opacity: 0.8;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    height: 160px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.7)) drop-shadow(0 0 30px rgba(0, 255, 255, 0.4));
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.9)) drop-shadow(0 0 40px rgba(0, 255, 255, 0.6));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-title.accent {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: var(--surface-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 20, 147, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
}

/* Profile Section */
.profile-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.profile-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--text-secondary);
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-btn.active,
.profile-btn:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.5);
}

.profile-content {
    display: none;
}

.profile-content.active {
    display: block;
}

.profile-card {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.profile-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2.5rem;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.2);
}

.profile-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.profile-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.detail-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.detail-list {
    list-style: none;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
}

.detail-item span:not(.detail-icon) {
    color: var(--text-secondary);
    line-height: 1.6;
}

.detail-icon {
    margin-right: 1rem;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

/* Chart Section */
.chart-section {
    margin: 4rem 0;
}

.chart-container {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.impact-list {
    list-style: none;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.05);
}

.impact-item span:not(.impact-check) {
    color: var(--text-secondary);
    line-height: 1.7;
}

.impact-check {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.support-card {
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.support-card .card-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    opacity: 0.5;
}

.footer-quote {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-primary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

.footer-quote-author {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-copyright {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .logo {
        height: 50px;
    }
    
    .hero-logo-img {
        height: 120px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1.2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 3rem 1rem 5rem;
        min-height: 70vh;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .profile-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero-logo-img {
        height: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}


/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para links ativos na navegação */
.nav-link.active {
    color: #FFFF00; /* Amarelo neon apenas para navegação ativa */
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FFFF00, var(--secondary-color));
}


/* Seção de Mídia Social */
.social-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-secondary);
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.5;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.social-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 20, 147, 0.1);
}

.social-card.youtube {
    border-top: 4px solid #FF0000;
}

.social-card.spotify {
    border-top: 4px solid #1DB954;
}

.social-card.instagram {
    border-top: 4px solid #E1306C;
}

.social-card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    fill: white;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.social-card.youtube .social-icon {
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

.social-card.spotify .social-icon {
    filter: drop-shadow(0 0 5px rgba(29, 185, 84, 0.5));
}

.social-card.instagram .social-icon {
    filter: drop-shadow(0 0 5px rgba(225, 48, 108, 0.5));
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.social-card-body {
    padding: 0 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.social-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.social-preview {
    width: 100%;
    height: 180px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.social-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-card:hover .social-preview img {
    transform: scale(1.05);
}

.social-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    pointer-events: none;
}

.social-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-card.youtube .social-play-button {
    background-color: rgba(255, 0, 0, 0.8);
}

.social-card.spotify .social-play-button {
    background-color: rgba(29, 185, 84, 0.8);
}

.social-card.instagram .social-play-button {
    background-color: rgba(225, 48, 108, 0.8);
}

.social-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid white;
    margin-left: 5px;
}

.social-card:hover .social-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.social-card.youtube:hover .social-play-button {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.social-card.spotify:hover .social-play-button {
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.5);
}

.social-card.instagram:hover .social-play-button {
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
}

.social-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-stat-icon {
    font-size: 1.1rem;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-youtube {
    background-color: #FF0000;
    color: white;
}

.btn-youtube:hover {
    background-color: #cc0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.btn-spotify {
    background-color: #1DB954;
    color: white;
}

.btn-spotify:hover {
    background-color: #169c46;
    box-shadow: 0 0 15px rgba(29, 185, 84, 0.4);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-instagram:hover {
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.4);
    filter: brightness(1.1);
}

/* Responsividade para a seção de mídia social */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .social-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .social-card-body {
        padding: 0 1.5rem 1.5rem;
    }
    
    .social-preview {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .social-preview {
        height: 140px;
    }
    
    .social-play-button {
        width: 50px;
        height: 50px;
    }
    
    .social-play-button::before {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 16px solid white;
    }
}


/* Ícones de redes sociais no header */
.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1.5rem;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon-link.youtube::before {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.8) 0%, rgba(255, 0, 0, 0) 70%);
}

.social-icon-link.spotify::before {
    background: radial-gradient(circle, rgba(29, 185, 84, 0.8) 0%, rgba(29, 185, 84, 0) 70%);
}

.social-icon-link.instagram::before {
    background: radial-gradient(circle, rgba(225, 48, 108, 0.8) 0%, rgba(225, 48, 108, 0) 70%);
}

.social-icon-link:hover::before {
    opacity: 1;
}

.social-icon-small {
    width: 20px;
    height: 20px;
    fill: white;
    transition: all 0.3s ease;
}

.social-icon-link.youtube:hover .social-icon-small {
    fill: #FF0000;
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.7));
    transform: scale(1.2);
}

.social-icon-link.spotify:hover .social-icon-small {
    fill: #1DB954;
    filter: drop-shadow(0 0 3px rgba(29, 185, 84, 0.7));
    transform: scale(1.2);
}

.social-icon-link.instagram:hover .social-icon-small {
    fill: #E1306C;
    filter: drop-shadow(0 0 3px rgba(225, 48, 108, 0.7));
    transform: scale(1.2);
}

/* Responsividade para os ícones sociais */
@media (max-width: 768px) {
    .social-icons {
        display: none;
    }
    
    .nav-mobile .social-icons {
        display: flex;
        margin: 0;
        gap: 0.75rem;
    }
    
    .social-icon-link {
        width: 28px;
        height: 28px;
    }
    
    .social-icon-small {
        width: 16px;
        height: 16px;
    }
}

