:root {
    /* Cores Principais - Paleta Premium Shearlink */
    --bg-dark: #070b13;
    --bg-card: rgba(255, 255, 255, 0.03);
    --accent-primary: #10b981;
    --accent-secondary: #facc15;
    --accent: var(--accent-primary);
    --accent-hover: #059669;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Scroll Suave */
html {
    scroll-behavior: smooth;
}

/* Container Global */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navigation --- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 24, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.lang-switcher {
    display: flex;
    gap: 0.3rem;
    padding: 0.2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    margin: 0 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn img {
    border-radius: 2px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: rgba(184, 153, 94, 0.15);
    opacity: 1;
}

.lang-btn.active img, .lang-btn:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.lang-btn:hover {
    opacity: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-logo span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links .nav-btn {
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-links .nav-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    color: white;
}

/* --- Seção Narrativa: Problema & Solução --- */
.section-narrative {
    padding: 100px 0 60px;
}

.narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.narrative-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem;
    border-radius: 28px;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.narrative-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.problem-item {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.04) 0%, rgba(5, 8, 15, 0.2) 100%);
}

.problem-item::before {
    background: #ef4444;
}

.solution-item {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.04) 0%, rgba(5, 8, 15, 0.2) 100%);
}

.solution-item::before {
    background: var(--accent-primary);
}

.narrative-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.narrative-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
}

.problem-badge {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

.solution-badge {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-primary);
}

.narrative-item h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.narrative-item p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

@media (max-width: 992px) {
    .narrative-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .narrative-item {
        padding: 2.5rem;
    }
}

/* --- Seção Diferencial Técnico --- */
.section-advantage {
    padding: 100px 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.1);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    background: rgba(16, 185, 129, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #fff;
    font-weight: 700;
}

.advantage-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* --- Hero Section --- */
.hero {
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    padding: 160px 0 100px; /* Adicionado padding para não esconder a badge */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.hero-brand-logo {
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-primary);
    padding: 0.6rem 1.8rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2.5rem;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    animation: fadeInDown 0.8s ease-out, glowPulse 3s infinite;
    letter-spacing: 0.2px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.8rem); /* Reduzi levemente o tamanho máximo */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra para dar profundidade */
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1; /* Um cinza mais claro para contraste */
    max-width: 700px; /* Um pouco mais largo para o texto respirar */
    margin: 0 auto 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
}

/* --- Partners Bar --- */
.partners-bar {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.partners-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partners-bar p {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.partners-logos a {
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.partners-logos a:hover {
    transform: translateY(-4px);
}

.partners-logos img {
    height: 120px;
    width: auto;
    opacity: 0.85;
    transition: var(--transition-smooth);
    filter: grayscale(1) brightness(1.2);
}

.partners-logos img[alt*="Lister"] {
    height: 85px; /* Ajuste proporcional para o logo horizontal não ser ofuscado */
}

.partners-logos img:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1);
    transform: scale(1.05); /* Leve zoom no hover para feedback visual */
}

/* --- Grid de Funcionalidades --- */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
}

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

.ecosystem-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* Força 2 colunas para simetria de 4 itens */
}

@media (max-width: 1024px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .ecosystem-grid {
        grid-template-columns: 1fr !important;
    }
}

#solucao {
    margin-bottom: 8rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Modelo O2O --- */
.o2o-section {
    background: rgba(16, 185, 129, 0.02);
    padding: 8rem 0;
    border-radius: 40px;
    margin: 4rem 0;
}

.o2o-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.o2o-text {
    flex: 1;
    min-width: 300px;
}

.o2o-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.o2o-text .highlight {
    color: var(--accent-primary);
}

.o2o-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}

.o2o-diagram {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* --- Equipe --- */
.team-section {
    padding: 8rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    justify-content: center;
}

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

.member-photo {
    width: 350px;
    height: 520px;
    border-radius: 24px;
    background: var(--bg-card);
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.member-photo img.mateus {
    transform: scale(1.05); /* Sutil zoom para manter a clareza */
    object-position: center 15%; /* Sobe a imagem para mostrar as bandeiras */
}

.photo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(16, 185, 129, 0.9);
    color: #000;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.member-photo img.giovanna {
    object-position: center 10%; /* Ajuste para não cortar a Giovanna */
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.team-member:hover .member-photo img.mateus {
    transform: scale(2.0);
}

.team-member h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.team-member .role {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.team-member .bio {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-transform: none; /* Garante que não fique tudo em maiúsculo */
    font-weight: 400;
}

/* --- Footer --- */
footer {
    padding: 6rem 0;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to bottom, transparent, rgba(16, 185, 129, 0.03));
}

.certification-seal img {
    transition: var(--transition-smooth);
}

.certification-seal img:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent-primary);
    box-shadow: var(--glow-shadow);
}

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

.footer-logo img {
    height: 40px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* --- Animações --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); border-color: rgba(16, 185, 129, 0.8); }
    100% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.2); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVIDADE MOBILE — CORREÇÃO COMPLETA
   ========================================== */

@media (max-width: 768px) {

    /* --- NAV: Ocultar links, mostrar só o botão principal --- */
    .nav-links a:not(.nav-btn) {
        display: none;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        white-space: nowrap;
    }

    .nav-logo {
        gap: 0.4rem;
    }

    .nav-logo img {
        height: 22px;
    }

    .nav-logo span {
        display: block;
        font-size: 1.1rem;
    }
    
    .lang-switcher {
        display: flex;
        gap: 0.1rem;
        padding: 0.1rem;
        margin: 0;
    }

    .lang-btn {
        padding: 0.1rem 0.2rem;
    }

    .lang-btn img {
        width: 16px;
    }

    /* --- HERO --- */
    .hero {
        padding: 7rem 0 4rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        white-space: normal;
        line-height: 1.4;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
        gap: 1rem;
    }

    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }

    /* --- PARTNERS BAR --- */
    .partners-bar .container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .partners-logos {
        gap: 2rem;
        justify-content: center;
    }

    .partners-logos img {
        height: 70px;
    }

    .partners-logos img[alt*="Lister"] {
        height: 55px;
    }

    /* --- SEÇÕES --- */
    .container {
        padding: 0 1.25rem;
    }

    #solucao {
        margin-bottom: 4rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    /* --- MVP SECTION (O2O) --- */
    .o2o-content {
        padding: 2rem 1.5rem !important;
        gap: 2rem !important;
    }

    .o2o-text h2 {
        font-size: 2rem;
    }

    /* --- EQUIPE --- */
    .team-section {
        padding: 4rem 0;
    }

    /* --- FOOTER --- */
    footer {
        padding: 3rem 0;
    }

    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

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

    .footer-right {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

    .certification-seal img {
        max-width: 80px !important;
    }
}


/* --- Lister Strategic Suite --- */
.lister-strategic-suite { padding: 8rem 0; background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 70%); border-bottom: 1px solid var(--glass-border); }
.hidden-strategic { display: none !important; }
.ecosystem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 4rem; }
.ecosystem-card { background: var(--bg-card); padding: 2.5rem; border-radius: 20px; border: 1px solid var(--glass-border); transition: var(--transition-smooth); text-align: center; }
.ecosystem-card:hover { border-color: var(--accent-primary); transform: translateY(-10px); box-shadow: var(--glow-shadow); }
.ecosystem-card i { font-size: 2.5rem; color: var(--accent-primary); margin-bottom: 1.5rem; display: block; }
.roadmap-container { margin-top: 6rem; position: relative; padding: 2rem 0; }
.roadmap-line { position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-primary), transparent); z-index: 1; }
.roadmap-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; z-index: 2; }
.roadmap-step { background: var(--bg-card); padding: 2rem; border-radius: 16px; border: 1px solid var(--glass-border); backdrop-filter: blur(10px); }
.step-date { display: inline-block; padding: 4px 12px; background: var(--accent-primary); color: #000; border-radius: 20px; font-size: 0.75rem; font-weight: 700; margin-bottom: 1rem; }
@media (max-width: 768px) { .roadmap-steps { grid-template-columns: 1fr; } .roadmap-line { display: none; } }

/* --- Chatbot Widget Styles --- */
.chatbot-widget {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 9999;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.chatbot-header {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    color: white;
    font-size: 1.1rem;
}

.chatbot-header button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

#chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.chatbot-input {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #0b1121;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px;
    color: white;
    outline: none;
}

.chatbot-input button {
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
}

.chatbot-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(16,185,129,0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9998;
}

@media (max-width: 768px) {
    .chatbot-widget {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
        max-width: 100vw;
    }
    .chatbot-trigger {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
}
