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

body {
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo h1 {
    font-family: 'Figtree', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 200px;
    line-height: 1.3;
}

.logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 0.25rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 2rem;
}

.mobile-menu-content a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: #22c55e;
}

.main {
    margin-top: 80px;
    padding-top: 2rem;
}

.forecast-section,
.notifications-section,
.agents-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.img-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.section-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section-title {
    max-width: 500px;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
}

.dashboard-section .section-title {
    text-align: center;
    margin: 0 auto 1.5rem auto;
    display: block;
}

.section-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 280px;
    justify-content: center;
}

.whatsapp-button {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
}

.data4life-button {
    background: linear-gradient(135deg, #2522c5 0%, #a31616 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(197, 72, 34, 0.3);
}

.lucas-button,
.learn-more-button {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.learn-more-button {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.lucas-button:hover,
.learn-more-button:hover {
    transform: translateY(-2px);
}

.button-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.button-icon img,
.button-icon svg {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.footer {
    background: rgba(26, 26, 26, 0.95);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-text {
    margin-top: 1rem;
    padding: 0px 20px 0px 20px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    justify-self: center;
}

/* Estilos para páginas de autenticação */
.auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: rgba(26,26,26,0.98);
}
.auth-section {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(34,34,34,0.95);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    padding: 2.5rem 2rem 2rem 2rem;
}
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.auth-form label {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
    text-align: left;
}
.auth-form input {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid #333;
    background: #232323;
    color: #fff;
    font-size: 1rem;
    outline: none;
    margin-bottom: 0.5rem;
}
.auth-form input:focus {
    border-color: #22c55e;
}
.auth-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
}
.auth-link a {
    color: #22c55e;
    text-decoration: underline;
}

/* Estilos para dashboard de autoridade */
.dashboard-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 80vh;
    background: rgba(26,26,26,0.98);
}
.dashboard-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(34,34,34,0.95);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    padding: 2.5rem 2rem 2rem 2rem;
}
.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: #232323;
    border-radius: 8px;
    overflow: hidden;
}
.dashboard-table th, .dashboard-table td {
    padding: 1rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid #333;
}
.dashboard-table th {
    background: #181818;
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.dashboard-table th:hover {
    background: #232323;
    color: #fff;
}
.dashboard-table td {
    color: #fff;
    font-size: 1rem;
}
.dashboard-table tr:last-child td {
    border-bottom: none;
}

.urgencia-alta {
    color: #fff;
    background: #ef4444;
    padding: 0.3em 0.8em;
    border-radius: 6px;
    font-weight: bold;
}
.urgencia-media {
    color: #fff;
    background: #f59e42;
    padding: 0.3em 0.8em;
    border-radius: 6px;
    font-weight: bold;
}
.urgencia-baixa {
    color: #fff;
    background: #22c55e;
    padding: 0.3em 0.8em;
    border-radius: 6px;
    font-weight: bold;
}
.dashboard-theme-toggle {
    text-align: right;
    margin-bottom: 1rem;
}
.theme-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: background 0.2s;
    color: #ef4444;
    outline: none;
    box-shadow: none;
}
.theme-icon-btn:hover {
    background: #232323;
}
.theme-icon {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    transition: color 0.2s;
}
.dashboard-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}
.dashboard-section {
    margin: 0 auto;
}
.header-links a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 6px;
    transition: background 0.2s;
    padding: 0.5rem 1rem;
}
.header-links a:hover {
    background: #232323;
    color: #22c55e !important;
}

/* FAQ Styles */
.faq-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: rgba(26,26,26,0.98);
}
.faq-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(34,34,34,0.95);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    padding: 2.5rem 2rem 2rem 2rem;
}
.faq-list {
    margin-top: 2rem;
}
.faq-item {
    margin-bottom: 1.2rem;
    border-radius: 8px;
    background: #232323;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: background 0.2s;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    padding: 1rem 1.2rem;
    cursor: pointer;
    outline: none;
    transition: background 0.2s, color 0.2s;
}
.faq-question.active, .faq-question:focus {
    background: #22c55e;
    color: #fff;
}
.faq-answer {
    display: none;
    background: #f4f4f4;
    color: #222;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border-top: 1px solid #e5e5e5;
    transition: background 0.2s, color 0.2s;
}
.dashboard-light .faq-section {
    background: #fff !important;
}
.dashboard-light .faq-item {
    background: #f4f4f4 !important;
}
.dashboard-light .faq-question {
    color: #222 !important;
}
.dashboard-light .faq-question.active, .dashboard-light .faq-question:focus {
    background: #22c55e !important;
    color: #fff !important;
}
.dashboard-light .faq-answer {
    background: #fff !important;
    color: #222 !important;
    border-top: 1px solid #e5e5e5;
}
.global-theme-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 2000;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 50%;
    font-size: 1.6rem;
    color: #ef4444;
    outline: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.global-theme-btn:hover {
    background: #232323;
    color: #22c55e;
}
.global-theme-btn .theme-icon {
    font-size: 1.6rem;
    pointer-events: none;
}
.dashboard-light, .dashboard-light body {
    background: #f4f4f4 !important;
    color: #222 !important;
}
.dashboard-light .auth-section,
.dashboard-light .dashboard-section,
.dashboard-light .faq-section {
    background: #fff !important;
    color: #222 !important;
}
.dashboard-light .dashboard-table {
    background: #f9f9f9 !important;
}
.dashboard-light .dashboard-table th {
    background: #e5e5e5 !important;
    color: #ef4444 !important;
}
.dashboard-light .dashboard-table td {
    color: #222 !important;
}
.dashboard-light .urgencia-alta {
    background: #ef4444;
    color: #fff;
}
.dashboard-light .urgencia-media {
    background: #f59e42;
    color: #fff;
}
.dashboard-light .urgencia-baixa {
    background: #22c55e;
    color: #fff;
}
.dashboard-light .faq-item {
    background: #f4f4f4 !important;
}
.dashboard-light .faq-question {
    color: #222 !important;
}
.dashboard-light .faq-question.active, .dashboard-light .faq-question:focus {
    background: #22c55e !important;
    color: #fff !important;
}
.dashboard-light .faq-answer {
    background: #fff !important;
    color: #222 !important;
    border-top: 1px solid #e5e5e5;
}
.dashboard-filter-bar {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
    background: #232323;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}
.dashboard-filter-bar label {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}
.dashboard-filter-bar select {
    background: #181818;
    color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 0.4rem 1rem;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
}
.dashboard-filter-bar select:focus {
    border-color: #22c55e;
}
.integrantes-list {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}
.integrante-item {
    background: #232323;
    color: #fff;
    border-radius: 8px;
    padding: 1.2rem 2rem;
    min-width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 1rem;
    text-align: center;
}
.integrante-foto {
    border: 3px solid #22c55e;
    box-shadow: 0 2px 8px rgba(34,197,94,0.08);
}
.integrante-links {
    margin-top: 0.5rem;
}
.integrante-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.integrante-link:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 599px) {
    .header-content {
        align-items: center;
    }

    .logo-subtitle {
        max-width: 300px;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        max-width: 300px;
    }

    .logo img {
        width: 110px;
    }
    
    .section-description {
        font-size: 1.1rem;
    }

    .forecast-section,
    .notifications-section,
    .agents-section {
        margin-bottom: 10px;
    }
    
    .footer-nav {
        gap: 3rem;
    }

    .auth-section, .dashboard-section {
        padding: 1.5rem 0.5rem 1rem 0.5rem;
    }
    .dashboard-table th, .dashboard-table td {
        padding: 0.5rem 0.2rem;
        font-size: 0.95rem;
    }
    .logo-subtitle, .header-links {
        display: none;
    }

    .faq-section {
        padding: 1.5rem 0.5rem 1rem 0.5rem;
    }
    .integrantes-list {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .integrante-item {
        min-width: 120px;
        padding: 1rem 1rem;
    }

    .dashboard-filter-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 0.5rem;
    }
}
@media (min-width: 600px) {
    .header-content {
        align-items: center;
    }

    .logo-subtitle {
        max-width: 300px;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        max-width: 500px;
    }

    .logo img {
        width: 130px;
    }
    
    .section-description {
        font-size: 1.3rem;
    }
    
    .header-links {
        display: none;
    }

    .faq-section {
        padding: 2rem;
    }
}
@media (min-width: 1024px) {
    .main {
        margin-top: 85px;
        padding-top: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .section-description {
        font-size: 1.4rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 1.25rem 2.5rem;
    }

    .logo img {
        width: 180px;
    }

    .menu-toggle {
        display: none;
    }
    .mobile-menu {
        display: none;
    }
    .header-links {
        text-decoration: none;
        display: flex;
        color: #ffffff;
        align-items: center;
        font-size: 1rem;
        font-weight: 500;
        gap: 1.5rem;
    }
}
