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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000011; /* Azul escuro */
    color: white;
    line-height: 1.6;
}

.LetraColorida {
    color: #00A3FF; /* Azul do tema */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Espaço entre img e texto */
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-img {
    height: 50px; /* Tamanho da img, como você queria */
    width: auto; /* Mantém proporção */
}

.logo-text {
    color: white; /* Cor do texto "ASAPLAB" */
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: #00A3FF;
}

@media (max-width: 768px) {
    .header {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 40px;
    }

    .nav a {
        margin-left: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 0.5rem 0;
    }

    .logo-section {
        font-size: 1rem;
    }

    .logo-img {
        height: 35px;
    }

    .nav a {
        margin-left: 0.7rem;
        font-size: 0.75rem;
    }

    .btn-signup {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }
}

.btn-signup {
    background: #00A3FF;
    color: white;
    text-decoration: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-signup:hover {
    background: #0088CC;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #000011, #001122);
    position: relative;
    padding-top: 80px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    z-index: 10;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-primary {
    background: #00A3FF;
    color: white;
}

.btn-primary:hover {
    background: #0088CC;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #001140;
    color: white;
    border: 1px solid #FFFFFF;
}

.btn-secondary:hover {
    background: #00A3FF;
}

.hero-wave {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%2300A3FF"><path d="M0,0 Q250,100 500,0 T1000,0 V100 H0 Z"/></svg>') no-repeat bottom;
    background-size: cover;
}

/* Features */
.features {
    padding: 5rem 0;
    background: #000011;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* How it Works */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #000011, #001122);
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-icon {
    margin-bottom: 1rem;
}

.step-icon img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
}

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

/* Pricing */
.pricing {
    padding: 5rem 0;
    background: #000011;
}

.pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing p {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.plans {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.plan {
    flex: 1;
    background: #001122;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan:hover {
    transform: translateY(-5px);
}

.featured {
    border: 2px solid #00A3FF;
}

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

.price {
    font-size: 0.9rem;
    color: #00A3FF;
    margin-bottom: 1rem;
}

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

.plan li {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.btn-buy {
    display: inline-block;
    min-width: 180px;
    background: #00A3FF;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #001122, #000011);
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #001122;
    padding: 2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-item:hover {
    background: #002233;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #00A3FF;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0 1.5rem;
    border-top: 1px solid #001122;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
    justify-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    justify-self: start;
}

.footer-logo-img {
    height: 90px;
    width: auto;
}

.login-logo-img {
    height: 150px;
    width: auto;
}

.footer-signature {
    align-self: end;
    justify-self: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.65rem;
}

.footer-signature p {
    margin: 0;
}

.signature-brand {
    color: #00A3FF;
    font-weight: 700;
}

.link-column h4 {
    margin-bottom: 1rem;
    color: #00A3FF;
}

.link-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.link-column a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-self: end;
}

.social-icons a {
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s;
}

.social-icons a img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.social-icons a:hover {
    color: #00A3FF;
}

/* Newsletter/Contact Section */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #000011, #001122);
}

.newsletter h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter p {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #00A3FF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    background: rgba(0, 19, 41, 0.8);
    color: white;
    border: 1.5px solid rgba(0, 163, 255, 0.2);
    border-radius: 10px;
    font-size: 0.975rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(0, 25, 55, 0.95);
    border-color: #00A3FF;
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.25), inset 0 0 10px rgba(0, 163, 255, 0.08);
}

.form-group input:valid {
    border-color: rgba(0, 200, 100, 0.4);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: rgba(255, 80, 80, 0.4);
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000011 0%, #001122 50%, #000b22 100%);
    padding: 2rem;
}

.login-box {
    width: min(100%, 960px);
    background: linear-gradient(135deg, rgba(0, 17, 34, 0.8) 0%, rgba(0, 25, 55, 0.6) 100%);
    border: 1px solid rgba(0, 163, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(0, 163, 255, 0.1);
    backdrop-filter: blur(20px);
}

.login-box h1 {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #00A3FF 0%, #00CCFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-screen {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.login-left {
    background: linear-gradient(145deg, #000011 0%, #001122 40%, #001d33 100%);
    position: relative;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-panel {
    max-width: 420px;
    color: white;
}

.hero-logo {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: #00A3FF;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.85);
}

.login-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(180deg, #020816 0%, #081827 100%);
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #081827;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 163, 255, 0.18);
}

.login-card h2 {
    margin: 0 0 2rem;
    font-size: 2rem;
    color: white;
}

.login-card .form-group {
    margin-bottom: 1.25rem;
}

.login-card .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.login-card .form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(0, 19, 41, 0.85);
    color: white;
}

.login-card .form-group input:focus {
    outline: none;
    border-color: #00A3FF;
    box-shadow: 0 0 0 4px rgba(0, 163, 255, 0.15);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: #00A3FF;
}

.link-secondary {
    color: #00A3FF;
    text-decoration: none;
    font-weight: 600;
}

.login-submit {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    background: #00A3FF;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.caption a {
    color: #00A3FF;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .login-screen {
        grid-template-columns: 1fr;
    }

    .login-left,
    .login-right {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
    }

    .hero .container {
        align-items: center;
        text-align: center;
    }

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

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

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

    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 160px;
        min-height: auto;
    }

    .login-card {
        padding: 2rem;
    }

    .hero-logo {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1rem;
    }
}

.login-forms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.card {
    background: rgba(0, 11, 28, 0.7);
    border: 1.5px solid rgba(0, 163, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.card:hover {
    border-color: rgba(0, 163, 255, 0.35);
    box-shadow: 0 8px 32px rgba(0, 163, 255, 0.1);
    background: rgba(0, 15, 35, 0.85);
}

.card h2 {
    margin-bottom: 1.75rem;
    color: #00A3FF;
    font-weight: 700;
    font-size: 1.35rem;
}

.admin-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.5;
}

.admin-note strong {
    color: #00A3FF;
}


.login-message {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: block;
    width: 100%;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
}

.login-message.success {
    background: rgba(0, 200, 100, 0.15);
    color: #9fffcb;
    border-left-color: rgba(0, 200, 100, 0.5);
}

.login-message.error {
    background: rgba(255, 80, 80, 0.15);
    color: #ffb3b3;
    border-left-color: rgba(255, 80, 80, 0.5);
}

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


.profile-card {
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.12), rgba(0, 163, 255, 0.05));
    border: 1.5px solid rgba(0, 163, 255, 0.25);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 163, 255, 0.08);
    animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card.hidden,
.user-list.hidden {
    display: none;
}

.profile-card h2 {
    margin-bottom: 1rem;
    color: #00A3FF;
    font-size: 1.5rem;
}

.profile-card p {
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

.user-list {
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.user-list h2 {
    margin-bottom: 1.5rem;
    color: #00A3FF;
    font-size: 1.35rem;
}

.user-list ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.user-list li {
    background: rgba(0, 163, 255, 0.08);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 163, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-list li:hover {
    background: rgba(0, 163, 255, 0.15);
    border-color: rgba(0, 163, 255, 0.3);
    transform: translateX(4px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.profile-card .btn-secondary {
    background: linear-gradient(135deg, transparent, rgba(0, 163, 255, 0.05));
    color: #00A3FF;
    border: 1.5px solid #00A3FF;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
}

.profile-card .btn-secondary:hover {
    background: rgba(0, 163, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 163, 255, 0.2);
}

.profile-card .btn-secondary:active {
    transform: translateY(0);
}

.contact-form .btn-primary,
.card .btn-primary {
    margin-top: 1rem;
    width: 100%;
    font-weight: 600;
}

@media (max-width: 900px) {
    .login-forms {
        grid-template-columns: 1fr;
    }
}

.app-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    background: linear-gradient(180deg, #000011 0%, #001122 100%);
}

.sidebar {
    background: #020816;
    border-right: 1px solid rgba(0, 163, 255, 0.12);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00A3FF 0%, #00CCFF 100%);
    color: #020916;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.brand p {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.brand span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-nav {
    display: grid;
    gap: 0.75rem;
    flex: 1;
}

.nav-link {
    background: transparent;
    border: none;
    color: #cbd6ff;
    text-align: left;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nav-link.active,
.nav-link:hover {
    background: rgba(0, 163, 255, 0.14);
    color: white;
}

.sidebar-footer {
    padding-top: 2rem;
}

.app-main {
    padding: 2.5rem;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.welcome-label {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.5rem;
}

#home-title {
    font-size: 2.25rem;
    margin: 0;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 163, 255, 0.12);
    color: #00A3FF;
    border: 1px solid rgba(0, 163, 255, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 700;
}

.module-content {
    display: grid;
    gap: 1.5rem;
}

.module-card,
.report-item,
.setting-card,
.dashboard-item {
    background: rgba(0, 11, 28, 0.72);
    border: 1px solid rgba(0, 163, 255, 0.12);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.dashboard-grid,
.report-list,
.settings-grid {
    display: grid;
    gap: 1.5rem;
}

.dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-list,
.settings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-item h3,
.report-item h3,
.setting-card h3 {
    margin-top: 0;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

thead th {
    text-align: left;
    padding: 1rem 1rem 0.75rem;
    color: #00A3FF;
}

tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

td {
    padding: 1rem 1rem;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 900px) {
    .login-forms {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .login-box {
        padding: 2rem;
    }

    .card {
        padding: 1.5rem;
    }

    .profile-card {
        padding: 1.5rem;
    }
}

@media (max-width: 900px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0, 163, 255, 0.12);
    }

    .app-main {
        padding: 1.5rem;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .logo-section {
        justify-content: center; /* Centraliza no mobile */
    }

    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .feature-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .steps {
        flex-direction: column;
    }

    .plans {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}