/* input(192,1): run-time error CSS1019: Unexpected token, found '@' */
:root {
    --primary-color: #004a99;
    --secondary-color: #002d5e;
    --accent-color: #00d4ff;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: #fcfcfc;
}

/* Navbar Customizada */
.navbar-public {
    background-color: var(--primary-color);
    padding: 15px 0;
}

.logo-img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}
/* Torna logo branca */

/* Se��o Sobre N�s */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: var(--accent-color);
        margin-top: 10px;
    }

/* Footer Robusto */
.footer-main {
    background: #1a1a1a;
    color: #d1d1d1;
    padding: 60px 0 20px;
}

    .footer-main h5 {
        color: white;
        font-weight: 600;
        margin-bottom: 20px;
    }

.contact-link {
    color: #d1d1d1;
    text-decoration: none;
    transition: 0.3s;
}

    .contact-link:hover {
        color: var(--accent-color);
    }

/* Bot�es de Acesso */
.btn-portal {
    background: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    font-weight: 700;
    transition: 0.3s;
}

    .btn-portal:hover {
        background: #00b8e6;
        transform: translateY(-2px);
    }

.btn-admin-nav {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

    .btn-admin-nav:hover {
        background: rgba(255,255,255,0.1);
        color: white;
    }

/* Ajuste do Main */
main {
    min-height: 70vh;
}



body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Estilo do Topo */
.navbar-public {
    background-color: #003d99;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Tema Hero Azul */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #003d99 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 50px;
}

/* Funcionalidades */
.feature-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.card-feature {
    transition: transform 0.3s;
    border: none;
    shadow: 0 4px 15px rgba(0,0,0,0.05);
}

    .card-feature:hover {
        transform: translateY(-10px);
    }

/* Janela do Chatbot */
#chat-window {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
    z-index: 2000;
    border: 1px solid #e0e0e0;
}

.chat-header {
    background: #0d6efd;
    color: white;
    padding: 15px;
    border-radius: 15px 15px 0 0;
}

#chatContent {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    background: #f8f9fa;
}

.chat-trigger {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.4);
    z-index: 2001;
    transition: scale 0.2s;
}

    .chat-trigger:hover {
        scale: 1.1;
    }

#chatContent div {
    animation: fadeIn 0.3s ease-in-out;
}

@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}