* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --accent-blue: #0066cc;
    --accent-blue-light: #0080ff;
    --accent-blue-dark: #004499;
    --accent-red: #cc0000;
    --border-gray: #1a1a1a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-left: 1px solid var(--border-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    border-radius: 6px;
    border: 2px solid var(--bg-darker);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-blue-light) 0%, var(--accent-blue) 100%);
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
}

/* Para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue) var(--bg-darker);
}

/* Canvas para partículas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gray);
    z-index: 100;
    padding: 20px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
}

.logo-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link.active {
    color: var(--accent-blue-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-blue-light);
}

/* Profile Card */
.header-profile {
    margin-left: auto;
    position: relative;
}

.profile-card {
    position: relative;
    cursor: pointer;
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    transition: all 0.3s;
}

.profile-card:hover .profile-content {
    border-color: var(--accent-blue-light);
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.3);
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.8);
    flex-shrink: 0;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    border-radius: 50%;
}

.profile-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-white);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.profile-name {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-role {
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 15px;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 102, 204, 0.2);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.profile-card.active .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-divider {
    height: 1px;
    background: var(--border-gray);
    margin: 10px 0;
}

.profile-action {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: transparent;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    margin-bottom: 8px;
}

.profile-action:hover {
    background: rgba(0, 102, 204, 0.1);
    border-color: var(--accent-blue-light);
    color: var(--accent-blue-light);
    transform: translateX(5px);
}

.action-icon {
    font-size: 16px;
}

.profile-logout {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: transparent;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.profile-logout:hover {
    background: rgba(204, 0, 0, 0.1);
    border-color: var(--accent-red);
    color: var(--accent-red);
    transform: translateX(5px);
}

.logout-icon {
    font-size: 16px;
}

/* Modal de Perfil */
.profile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.profile-modal.active {
    opacity: 1;
    visibility: visible;
}

.profile-modal-content {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 40px 50px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 102, 204, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.profile-modal.active .profile-modal-content {
    transform: scale(1);
}

.profile-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 28px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    line-height: 1;
}

.profile-modal-close:hover {
    background: rgba(204, 0, 0, 0.1);
    color: var(--accent-red);
    transform: rotate(90deg);
}

.profile-modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.profile-modal-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.profile-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-modal-icon {
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-white);
}

.profile-modal-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-modal-name {
    color: var(--text-white);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-modal-role {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login,
.btn-discord {
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-login {
    border: 1px solid var(--border-gray);
}

.btn-login:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateX(3px);
}

.btn-discord {
    background-color: transparent;
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-discord svg {
    width: 24px;
    height: 24px;
    color: var(--accent-blue-light);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-discord:hover {
    background-color: transparent;
    transform: translateY(-2px) scale(1.05);
}

.btn-discord:hover svg {
    color: var(--accent-blue);
}

.arrow {
    font-size: 18px;
}

/* Main Hero Section */
.main {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* Calculadora Section */
.calculadora-container {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    min-height: calc(100vh - 200px);
    width: 100%;
    max-width: 100%;
}

.calculadora-left {
    padding: 40px;
    position: relative;
    border-right: 1px solid var(--border-gray);
}

.calculadora-right {
    padding: 40px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-content: start;
}

.info-box {
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 68, 153, 0.5) 100%);
    border: 1px solid rgba(0, 102, 204, 0.5);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    min-height: 100px;
}

.info-box:hover {
    border-color: var(--accent-blue-light);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.info-box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.info-box-title {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.info-box-input {
    background-color: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    padding: 10px 15px;
    color: var(--text-white);
    font-size: 16px;
    width: 100%;
    max-width: 200px;
    text-align: center;
    transition: all 0.3s;
}

.info-box-input:focus {
    outline: none;
    border-color: var(--accent-blue-light);
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
}

.info-box-input::placeholder {
    color: var(--text-gray);
}

.info-box-value {
    color: var(--accent-blue-light);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.chat-container {
    grid-column: span 2;
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 68, 153, 0.5) 100%);
    border: 1px solid rgba(0, 102, 204, 0.5);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 600px;
    min-height: 600px;
    transition: all 0.3s;
}

.chat-container:hover {
    border-color: var(--accent-blue-light);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    background-color: rgba(26, 26, 26, 0.6);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-input-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-copy-btn {
    background-color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    border-radius: 6px;
    padding: 12px 30px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 200px;
}

.chat-copy-btn:hover {
    background-color: var(--accent-blue-light);
    border-color: var(--accent-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.4);
}

.chat-copy-btn.copied {
    background-color: #00cc00;
    border-color: #00cc00;
}

.chat-copy-btn.copied:hover {
    background-color: #00ff00;
    border-color: #00ff00;
}

.copy-text,
.copied-text {
    display: inline-block;
}

/* Scrollbar para chat */
.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.3);
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue-light);
}

/* Mensagem de utilizador no chat */
.chat-message {
    background-color: rgba(0, 102, 204, 0.2);
    border: 1px solid rgba(0, 102, 204, 0.3);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.chat-message-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background-color: transparent;
    border: 1px solid rgba(0, 102, 204, 0.5);
}

.chat-message-content {
    flex: 1;
    min-width: 0;
}

.chat-message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.chat-message-name {
    color: var(--accent-blue-light);
    font-weight: 600;
    font-size: 16px;
}

.chat-message-text {
    color: var(--text-white);
    font-size: 15px;
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.categoria-item {
    margin-bottom: 40px;
}

.categoria-item:last-child {
    margin-bottom: 0;
}

.categoria-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 15px 0;
    text-align: center;
}

.categoria-divider {
    width: 100%;
    height: 1px;
    background-color: var(--text-white);
    margin: 0 0 30px 0;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.items-grid-single {
    grid-template-columns: 1fr;
}

.mediacao-items-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.mediacao-items-grid .item-card {
    overflow: visible;
    min-width: 0;
}

.item-card {
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 68, 153, 0.5) 100%);
    border: 1px solid rgba(0, 102, 204, 0.5);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.item-card:hover {
    border-color: var(--accent-blue-light);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.item-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.item-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px;
}

.item-name {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
}

.item-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.item-quantity {
    background-color: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    padding: 10px 15px;
    color: var(--text-white);
    font-size: 16px;
    width: 160px;
    text-align: center;
    transition: all 0.3s;
}

.item-quantity:focus {
    outline: none;
    border-color: var(--accent-blue-light);
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
}

.item-quantity::placeholder {
    color: var(--text-gray);
}

.item-warning {
    color: #ffaa00;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 6px 10px;
    background-color: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 4px;
    width: 100%;
    max-width: 160px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--accent-blue-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(0, 102, 204, 0.3);
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: var(--accent-blue-light);
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 500px;
}

.hero-tagline {
    font-size: 20px;
    color: var(--text-white);
    font-family: "Ink Free", cursive;
    font-style: italic;
    font-weight: 400;
    margin-top: 10px;
}

.stats {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-blue-light);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-image {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-quote {
    margin-top: 30px;
    font-size: 18px;
    color: var(--text-gray);
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.features {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.momentos-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-blue-light);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.momentos-card {
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
}

.momentos-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue-light);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.momentos-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        height: auto;
        order: -1;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        gap: 25px;
    }

    .stats {
        gap: 30px;
    }

    /* Calculadora & Mediação Responsividade */
    .calculadora-container,
    .mediacao-container {
        grid-template-columns: 1fr;
    }

    .calculadora-left,
    .mediacao-left {
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
        padding: 30px 20px;
    }

    .calculadora-right,
    .mediacao-right {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header .container {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px 0;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .header-profile {
        order: 2;
        margin-left: 0;
    }

    .profile-content {
        padding: 6px 12px;
        gap: 10px;
    }

    .profile-avatar {
        width: 35px;
        height: 35px;
    }

    .profile-name {
        font-size: 12px;
    }

    .profile-role {
        font-size: 10px;
    }

    .profile-dropdown {
        right: 0;
        min-width: 180px;
    }

    .header-buttons {
        gap: 10px;
    }

    .btn-login,
    .btn-discord {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 15px;
    }

    .stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 32px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .calculadora-right {
        grid-template-columns: 1fr;
    }

    .chat-container {
        height: 500px;
        min-height: 400px;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }

    .item-card {
        padding: 12px;
    }

    .item-image {
        width: 50px;
        height: 50px;
    }

    .item-quantity {
        width: 120px;
    }

    .mediacao-items-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 12px;
    }

    .nav-link {
        font-size: 13px;
    }

    .hero-title {
        font-size: 36px;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-gray);
    margin-top: 80px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-subtitle {
    color: var(--text-white);
    font-family: "Ink Free", cursive;
    font-style: italic;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-text {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.footer-highlight {
    color: var(--accent-blue-light);
    font-weight: 600;
}

/* Hierarchy Section */
.hierarchy-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
}

.hierarchy-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-blue-light);
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
    width: 100%;
}

/* Mediação Container Styles */
.mediacao-container {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    min-height: calc(100vh - 200px);
    width: 100%;
    max-width: 100%;
}

.mediacao-left {
    padding: 40px 20px 40px 40px;
    position: relative;
    border-right: 1px solid var(--border-gray);
    overflow-x: visible;
    overflow-y: auto;
}

.mediacao-right {
    padding: 40px;
    position: relative;
}

.mediacao-right .chat-container {
    width: 100%;
    max-width: 100%;
}

/* Mediação Item Card Styles */
.mediacao-item-card {
    display: flex;
    flex-direction: column;
    min-height: 160px;
    justify-content: flex-start;
    padding: 20px;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.mediacao-item-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    justify-content: flex-start;
    overflow: visible;
    min-width: 0;
}

.mediacao-item-content .item-name {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.4;
    min-height: auto;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
}

.mediacao-item-content .item-quantity {
    width: 100%;
    max-width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    min-height: 45px;
    box-sizing: border-box;
}

.mediacao-coima-input {
    pointer-events: none;
    cursor: default;
    user-select: none;
}

/* Mediação Table Styles */
.mediacao-table-container {
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 102, 204, 0.3);
    backdrop-filter: blur(10px);
}

.mediacao-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-white);
}

.mediacao-table thead {
    background-color: rgba(0, 102, 204, 0.2);
}

.mediacao-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    color: var(--accent-blue-light);
    border-bottom: 2px solid rgba(0, 102, 204, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mediacao-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.mediacao-table tbody tr:hover {
    background-color: rgba(0, 102, 204, 0.1);
}

.mediacao-table tbody tr:last-child {
    border-bottom: none;
}

.mediacao-table td {
    padding: 16px 20px;
    font-size: 16px;
    color: var(--text-white);
}

.mediacao-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.mediacao-table-input {
    width: 100%;
    background-color: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    padding: 12px 15px;
    color: var(--text-white);
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.mediacao-table-input:focus {
    outline: none;
    border-color: var(--accent-blue-light);
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
}

.mediacao-table-input::placeholder {
    color: var(--text-gray);
}

.mediacao-table-input[readonly] {
    background-color: rgba(26, 26, 26, 0.5);
    cursor: default;
}

.mediacao-table-label {
    display: block;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent-blue-light);
}

.mediacao-table td {
    padding: 16px 20px;
    font-size: 16px;
    color: var(--text-white);
    vertical-align: top;
}

.hierarchy-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hierarchy-table-container {
    flex: 1;
    min-width: 600px;
    max-width: 900px;
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.director-card {
    width: 280px;
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.director-avatar {
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.director-img {
    width: 100%;
    max-width: 200px;
    max-height: 250px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.director-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.director-rank {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-blue-light);
    margin: 0;
}

.director-insignia {
    margin-top: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.director-insignia-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.director-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    margin-top: 5px;
}


/* Modal Diretor */
.director-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.director-modal.active {
    display: flex;
}

.director-modal-content {
    background-color: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
    animation: directorModalFadeIn 0.3s ease-out;
}

@keyframes directorModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.director-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.director-modal-close:hover {
    color: var(--text-white);
}

.director-modal-avatar {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.director-modal-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.director-modal-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.director-modal-rank {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-blue-light);
    margin-bottom: 20px;
}

.director-modal-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.hierarchy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.hierarchy-table thead {
    border-bottom: 2px solid var(--text-white);
}

.hierarchy-table th {
    padding: 20px;
    text-align: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.th-insignia {
    width: 200px;
    text-align: center;
}

.th-rank {
    width: auto;
    text-align: center;
}

.hierarchy-table tbody tr {
    border-bottom: 1px solid var(--border-gray);
    transition: background-color 0.3s;
}

.hierarchy-table tbody tr:hover {
    background-color: transparent;
}

.hierarchy-table tbody tr:last-child {
    border-bottom: none;
}

.td-insignia {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
}

.td-rank {
    padding: 20px;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    vertical-align: middle;
    text-align: center;
}

.insignia-img {
    width: 120px;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.section-header-row {
    background-color: transparent;
}

.section-header {
    padding: 20px;
    text-align: center;
    color: var(--text-white);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 2px solid var(--text-white);
    border-bottom: 2px solid var(--text-white);
}

.section-header-row:first-child .section-header {
    border-top: none;
}

/* Responsive Hierarchy */
@media (max-width: 1200px) {
    .hierarchy-layout {
        flex-direction: column;
        align-items: center;
    }

    .hierarchy-table-container {
        min-width: 100%;
    }

    .director-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .hierarchy-table-container {
        padding: 20px;
    }

    .hierarchy-table th,
    .td-rank {
        font-size: 16px;
        padding: 15px;
    }

    .insignia-img {
        width: 100px;
    }

    .th-insignia {
        width: 150px;
    }

    .director-card {
        padding: 20px;
    }

    .director-title {
        font-size: 20px;
    }

    .director-modal-content {
        padding: 40px 30px;
    }

    .director-modal-title {
        font-size: 26px;
    }

    .director-modal-description {
        font-size: 16px;
    }
}

/* 404 Error Page */
.error-404-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.error-404-number {
    font-size: 150px;
    font-weight: 900;
    color: var(--accent-blue-light);
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 102, 204, 0.5);
}

.error-404-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
}

.error-404-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-404-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background-color: var(--accent-blue);
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid var(--accent-blue);
}

.btn-404-home:hover {
    background-color: var(--accent-blue-light);
    border-color: var(--accent-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.btn-404-home .arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.btn-404-home:hover .arrow {
    transform: translateX(5px);
}

/* Responsive 404 */
@media (max-width: 768px) {
    .error-404-number {
        font-size: 100px;
    }

    .error-404-title {
        font-size: 32px;
    }

    .error-404-description {
        font-size: 16px;
    }

    .btn-404-home {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Unidades Especiais Section */
.unidades-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

.unidades-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.unidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.unidade-card {
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.unidade-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue-light);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.unidade-logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.unidade-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.unidade-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue-light);
    margin: 0;
}

.unidade-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Unidades */
@media (max-width: 768px) {
    .unidades-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .unidade-card {
        padding: 30px;
    }

    .unidade-logo {
        width: 120px;
        height: 120px;
    }

    .unidade-name {
        font-size: 24px;
    }

    .unidade-description {
        font-size: 15px;
    }
}

/* Portes de Arma Section */
.portes-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
}

.portes-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.portes-table-container {
    margin: 60px auto 0;
    max-width: 900px;
    width: 100%;
    padding: 40px;
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
}

.portes-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.portes-table thead {
    border-bottom: 2px solid var(--text-white);
}

.portes-table th {
    padding: 20px;
    text-align: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.th-dia,
.th-horario,
.th-local {
    width: 33.33%;
}

.portes-table tbody tr {
    border-bottom: 1px solid var(--border-gray);
    transition: background-color 0.3s;
}

.portes-table tbody tr:hover {
    background-color: rgba(0, 102, 204, 0.1);
}

.portes-table tbody tr:last-child {
    border-bottom: none;
}

.td-dia,
.td-horario,
.td-local {
    padding: 20px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
    text-align: center;
}

.requisitos-container {
    margin-top: 60px;
    max-width: 900px;
    width: 100%;
    padding: 40px;
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.requisitos-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-blue-light);
    text-align: center;
    margin-bottom: 30px;
}

.requisitos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requisito-item {
    padding: 15px 20px;
    color: var(--text-white);
    font-size: 18px;
    border-bottom: 1px solid var(--border-gray);
    position: relative;
    padding-left: 40px;
}

.requisito-item:last-child {
    border-bottom: none;
}

.requisito-item::before {
    content: "✓";
    position: absolute;
    left: 10px;
    color: var(--accent-blue-light);
    font-weight: bold;
    font-size: 20px;
}

.informacoes-container {
    margin-top: 60px;
    max-width: 900px;
    width: 100%;
    padding: 40px;
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.info-section {
    margin-bottom: 30px;
}

.info-section:last-of-type {
    margin-bottom: 0;
}

.info-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue-light);
    margin-bottom: 20px;
}

.info-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.info-text strong {
    color: var(--text-white);
    font-weight: 600;
}

.info-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-gray);
    margin: 40px 0;
}

.temas-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.tema-item {
    padding: 12px 0;
    padding-left: 30px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tema-item:last-child {
    border-bottom: none;
}

.tema-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-blue-light);
    font-size: 24px;
    line-height: 1;
}

.info-note {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    padding: 15px;
    background-color: rgba(0, 102, 204, 0.05);
    border-left: 3px solid var(--accent-blue-light);
    border-radius: 4px;
}

/* Responsive Portes */
@media (max-width: 768px) {
    .portes-table-container {
        padding: 20px;
    }

    .portes-table th,
    .td-dia,
    .td-horario,
    .td-local {
        font-size: 14px;
        padding: 15px;
    }

    .requisitos-container {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .requisitos-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .requisito-item {
        font-size: 16px;
        padding: 12px 15px;
        padding-left: 35px;
    }

    .informacoes-container {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .info-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .info-text,
    .tema-item {
        font-size: 15px;
    }

    .info-divider {
        margin: 30px 0;
    }

    .info-note {
        font-size: 14px;
        padding: 12px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

.faq-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(0, 102, 204, 0.1);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--accent-blue-light);
    transition: transform 0.3s;
    margin-left: 20px;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .faq-icon {
        font-size: 24px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

/* Viaturas Section */
.viaturas-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

.viaturas-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.viaturas-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.patente-group {
    margin-bottom: 60px;
}

.patente-group:last-child {
    margin-bottom: 0;
}

.patente-group-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--text-white);
}

.viaturas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.viatura-item {
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.viatura-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue-light);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.viatura-thumb {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.viatura-model {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Modal para Viaturas */
.viatura-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.viatura-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 1001;
    display: inline-block;
    animation: modalFadeIn 0.3s ease-out;
    padding: 0;
    margin: 0;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--accent-blue-light);
}

.modal-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

.modal-model {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 20px 0 0 0;
    padding: 0;
    background-color: transparent;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* Responsive Viaturas */
@media (max-width: 768px) {
    .patente-group-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .viaturas-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }

    .viatura-item {
        padding: 15px;
    }

    .viatura-thumb {
        max-height: 150px;
    }

    .viatura-model {
        font-size: 16px;
    }

    .modal-image {
        max-width: 95vw;
        max-height: 85vh;
    }

    .modal-model {
        font-size: 20px;
        bottom: -50px;
    }
}

/* Candidaturas Section */
.candidaturas-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.candidaturas-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.candidaturas-container {
    max-width: 900px;
    width: 100%;
    padding: 40px;
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.candidaturas-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.candidaturas-intro-title {
    color: var(--accent-blue-light);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.candidaturas-intro {
    color: var(--text-white);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
    text-align: center;
    font-style: italic;
    width: 100%;
    padding: 30px;
    background-color: rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.3);
    border-radius: 12px;
    margin-bottom: 30px;
}

.candidaturas-subtitle {
    color: var(--accent-blue-light);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    margin-top: 20px;
}

.candidaturas-subtitle:first-of-type {
    margin-top: 0;
}

.candidaturas-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.candidaturas-list li {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--border-gray);
}

.candidaturas-list li:last-child {
    border-bottom: none;
}

.candidaturas-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-blue-light);
    font-size: 24px;
    font-weight: bold;
}

.candidaturas-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.candidaturas-text {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.candidaturas-text strong {
    color: var(--text-white);
    font-weight: 700;
}

.candidaturas-text em {
    font-style: italic;
    color: var(--text-gray);
}

.btn-candidatura {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background-color: var(--accent-blue);
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid var(--accent-blue);
    margin-top: 20px;
    align-self: center;
}

.btn-candidatura:hover {
    background-color: var(--accent-blue-light);
    border-color: var(--accent-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.btn-candidatura .arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.btn-candidatura:hover .arrow {
    transform: translateX(5px);
}

/* Responsive Candidaturas */
@media (max-width: 768px) {
    .candidaturas-container {
        padding: 30px 20px;
    }

    .candidaturas-text {
        font-size: 16px;
    }

    .btn-candidatura {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Notícias Section */
.noticias-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.noticias-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.noticias-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.alert-box {
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.alert-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.alert-message {
    color: var(--text-white);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Notícias */
@media (max-width: 768px) {
    .alert-box {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }

    .alert-icon {
        font-size: 40px;
    }

    .alert-message {
        font-size: 18px;
    }
}

/* Modal de Manutenção */
.maintenance-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.maintenance-content {
    background-color: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
    animation: maintenanceFadeIn 0.3s ease-out;
}

@keyframes maintenanceFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.maintenance-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.maintenance-title {
    color: var(--text-white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.maintenance-message {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-maintenance-ok {
    padding: 15px 50px;
    background-color: var(--accent-blue);
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-maintenance-ok:hover {
    background-color: var(--accent-blue-light);
    border-color: var(--accent-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.maintenance-modal.hidden {
    display: none;
}

/* Responsive Modal de Manutenção */
@media (max-width: 768px) {
    .maintenance-content {
        padding: 40px 30px;
    }

    .maintenance-icon {
        font-size: 48px;
    }

    .maintenance-title {
        font-size: 26px;
    }

    .maintenance-message {
        font-size: 16px;
    }

    .btn-maintenance-ok {
        padding: 12px 40px;
        font-size: 16px;
    }
}

/* Modal de Login */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.login-modal.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.login-container {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 50px 60px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 102, 204, 0.2);
    animation: slideUp 0.4s ease;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 50%, var(--accent-blue) 100%);
    animation: shimmer 2s infinite;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(0, 102, 204, 0.3));
}

.login-title {
    color: var(--text-white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 400;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.login-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-input-group label {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-input {
    background-color: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--text-white);
    font-size: 16px;
    width: 100%;
    transition: all 0.3s;
    font-family: inherit;
}

.login-input:focus {
    outline: none;
    border-color: var(--accent-blue-light);
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.3);
    background-color: rgba(26, 26, 26, 1);
}

.login-input::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

.login-help-text {
    color: var(--text-gray);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 5px;
    opacity: 0.8;
    text-align: center;
}

.login-discord {
    color: var(--accent-blue-light);
    font-weight: 600;
    font-style: italic;
}

.login-error {
    background-color: rgba(204, 0, 0, 0.1);
    border: 1px solid var(--accent-red);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--accent-red);
    font-size: 14px;
    text-align: center;
    animation: shake 0.3s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

.login-btn {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    border: none;
    border-radius: 8px;
    padding: 16px 30px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, var(--accent-blue-light) 0%, var(--accent-blue) 100%);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Login */
@media (max-width: 768px) {
    .login-container {
        padding: 40px 30px;
        max-width: 90%;
        margin: 20px;
    }

    .login-logo {
        width: 60px;
        height: 60px;
    }

    .login-title {
        font-size: 24px;
    }

    .login-subtitle {
        font-size: 12px;
    }
}

/* Admin Section */
.admin-wrapper {
    display: flex;
    min-height: calc(100vh - 200px);
    width: 100%;
}

.admin-sidebar {
    width: 250px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-right: 1px solid var(--border-gray);
    padding: 30px 0;
    position: sticky;
    top: 90px;
    height: calc(100vh - 90px);
    overflow-y: auto;
    flex-shrink: 0;
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 15px;
}

.admin-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-gray);
    border: 1px solid transparent;
}

.admin-menu-item:hover {
    background: rgba(0, 102, 204, 0.1);
    color: var(--text-white);
    border-color: var(--border-gray);
}

.admin-menu-item.active {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(0, 128, 255, 0.2) 100%);
    border-color: var(--accent-blue-light);
    color: var(--accent-blue-light);
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.2);
}

.admin-menu-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

.admin-menu-text {
    font-size: 15px;
    font-weight: 500;
}

.admin-main-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.admin-content-section {
    display: none;
}

.admin-content-section.active {
    display: block;
}

/* Estilos para Tabela de Contas */
.contas-table-container {
    margin-top: 30px;
    overflow-x: auto;
}

.contas-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 10px;
    overflow: hidden;
}

.contas-table thead {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 51, 102, 0.3) 100%);
}

.contas-table th {
    padding: 15px;
    text-align: left;
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid var(--border-gray);
}

.contas-table td {
    padding: 15px;
    color: var(--text-gray);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contas-table tbody tr:hover {
    background: rgba(0, 102, 204, 0.1);
}

.conta-ativo {
    color: #4CAF50;
    font-weight: 600;
}

.conta-inativo {
    color: var(--accent-red);
    font-weight: 600;
}

.btn-conta-edit,
.btn-conta-delete {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 8px;
}

.btn-conta-edit {
    background-color: var(--accent-blue);
    color: var(--text-white);
}

.btn-conta-edit:hover {
    background-color: var(--accent-blue-light);
    transform: translateY(-1px);
}

.btn-conta-delete {
    background-color: rgba(204, 0, 0, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

.btn-conta-delete:hover {
    background-color: rgba(204, 0, 0, 0.3);
    transform: translateY(-1px);
}

/* Estilos para Formulário de Criar Conta */
.criar-conta-form {
    max-width: 500px;
    margin-top: 30px;
    background: rgba(20, 20, 20, 0.6);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
}

.criar-conta-input-group {
    margin-bottom: 20px;
}

.criar-conta-input-group label {
    display: block;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.criar-conta-input {
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    padding: 12px 15px;
    color: var(--text-white);
    font-size: 15px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.criar-conta-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.criar-conta-input option {
    background: rgba(26, 26, 26, 0.98);
    color: var(--text-white);
}

.criar-conta-error {
    color: var(--accent-red);
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
    min-height: 20px;
    display: none;
}

.criar-conta-error.show {
    display: block;
}

.criar-conta-submit-btn {
    width: 100%;
    background-color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    border-radius: 6px;
    padding: 14px 30px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.criar-conta-submit-btn:hover:not(:disabled) {
    background-color: var(--accent-blue-light);
    border-color: var(--accent-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.4);
}

.criar-conta-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-wrapper {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
        padding: 20px 0;
    }

    .admin-menu {
        flex-direction: row;
        overflow-x: auto;
        padding: 0 15px;
    }

    .admin-menu-item {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .admin-main-content {
        padding: 30px 20px;
    }
}

/* Modal de Edição de Conta */
.edit-conta-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.edit-conta-modal.active {
    opacity: 1;
    visibility: visible;
}

.edit-conta-content {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 40px 50px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 102, 204, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.edit-conta-modal.active .edit-conta-content {
    transform: scale(1);
}

.edit-conta-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 28px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    line-height: 1;
}

.edit-conta-close:hover {
    background: rgba(204, 0, 0, 0.1);
    color: var(--accent-red);
    transform: rotate(90deg);
}

.edit-conta-header {
    text-align: center;
    margin-bottom: 30px;
}

.edit-conta-title {
    color: var(--text-white);
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.edit-conta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edit-conta-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edit-conta-input-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue-light);
}

.edit-conta-input {
    background-color: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-white);
    font-size: 16px;
    width: 100%;
    transition: all 0.3s;
    font-family: inherit;
}

.edit-conta-input:focus {
    outline: none;
    border-color: var(--accent-blue-light);
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.2);
}

.edit-conta-input[readonly] {
    background-color: rgba(26, 26, 26, 0.4);
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.05);
}

.edit-conta-submit-btn {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
    border: 1px solid var(--accent-blue);
    border-radius: 8px;
    padding: 14px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.edit-conta-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--accent-blue-light) 0%, var(--accent-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

.edit-conta-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.edit-conta-error {
    color: var(--accent-red);
    font-size: 14px;
    text-align: center;
    background: rgba(204, 0, 0, 0.1);
    padding: 10px;
    border-radius: 6px;
    display: none;
}