:root {
    --primary: #0a2540;
    --secondary: #0066cc;
    --accent: #00a896;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --gradient-start: #0066cc;
    --gradient-end: #00a896;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary);
}

.header-actions {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    margin-right: 15px;
}


.btn-outline:hover {
    background-color: var(--secondary);
    color: white;
}

.btn-explore {
    border: 1px solid var(--light);
    color: var(--light);
    
    margin-right: 15px;
}
.btn-explore:hover {
    background-color: var(--secondary);
    color: white;
}


.btn-primary {
    background-color: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(0, 166, 150, 0.8) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.text-gradient {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-large {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.solutions-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--gray);
}

.tab-btn.active {
    color: var(--secondary);
    border-bottom: 3px solid var(--secondary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.solution-card-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.solution-card-body {
    padding: 25px;
}

.solution-card-body ul {
    list-style: none;
    margin-top: 15px;
}

.solution-card-body ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.solution-card-body ul li i {
    color: var(--accent);
    margin-right: 10px;
    margin-top: 4px;
}

/* Enterprise Section */
.enterprise {
    padding: 100px 0;
    background-color: white;
}

.enterprise-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.enterprise-text {
    flex: 1;
    min-width: 300px;
}

.enterprise-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.enterprise-features {
    flex: 1;
    min-width: 300px;
}

.enterprise-feature {
    display: flex;
    margin-bottom: 25px;
}

.enterprise-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.enterprise-feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.enterprise-feature-content p {
    color: var(--gray);
}

/* X Suite Section */
.x-suite {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.suite-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.suite-content {
    flex: 1;
    min-width: 300px;
}

.suite-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.suite-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray);
}

.suite-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
}

.suite-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.suite-card:hover {
    transform: translateX(5px);
}

.suite-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.2rem;
}

.suite-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.suite-card-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--gray);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-modal {
    color:black;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    border: #212529;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        text-align: center;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        margin: 0;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .enterprise-content, .suite-container {
        flex-direction: column;
    }
    
    .tab-btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .features, .solutions, .enterprise, .x-suite, .cta {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}


/* Adicionar estilos da documentação */
.docs-container {
    display: flex;
    margin-top: 100px;
    min-height: calc(100vh - 180px);
}

.docs-sidebar {
    width: 280px;
    background: white;
    padding: 30px 20px;
    position: fixed;
    height: calc(100vh - 100px);
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.docs-content {
    flex: 1;
    margin-left: 280px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.docs-sidebar h3 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.docs-nav ul {
    list-style: none;
}

.docs-nav li {
    margin-bottom: 10px;
}

.docs-nav a.active {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 168, 150, 0.15) 100%);
    color: var(--secondary);
    font-weight: 600;
    border-left: 3px solid var(--secondary);
}

.docs-nav a {
    transition: all 0.3s ease;
}

.doc-section {
    scroll-margin-top: 120px; /* Para compensar o header fixo */
}

.docs-nav a:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    color: var(--secondary);
}

/* Navegação horizontal da documentação - CORRIGIDA */
.docs-horizontal-nav {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    position: sticky;
    top: 100px;
    z-index: 99;
    width: 100%;
}

.docs-horizontal-nav .container {
    display: flex;
    justify-content: center;
}

.docs-horizontal-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.docs-horizontal-nav li {
    margin: 0;
}

.docs-horizontal-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
}

.docs-horizontal-nav a:hover {
    color: var(--secondary);
    background: rgba(0, 102, 204, 0.1);
}

.docs-horizontal-nav a.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

/* Ajuste do container da documentação */
.docs-container {
    margin-top: 0;
}

.docs-content {
    margin-left: 0;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

/* Responsivo */
@media (max-width: 768px) {
    .docs-horizontal-nav ul {
        gap: 10px;
    }
    
    .docs-horizontal-nav a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .docs-horizontal-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .docs-horizontal-nav a {
        width: 100%;
        text-align: center;
    }
}

/* Esconder a documentação inicialmente */
#documentation {
    display: none;
}

/* Estilo para o header da documentação */
.doc-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

/* Quando a documentação está visível */
body.show-docs .hero,
body.show-docs .features,
body.show-docs .solutions,
body.show-docs .enterprise:not(#documentation),
body.show-docs .x-suite,
body.show-docs .stats,
body.show-docs .cta {
    display: none;
}

body.show-docs #documentation {
    display: block;
}

body.show-docs {
    padding-top: 100px;
}
/* Estilos para cards de documentação */
.doc-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.doc-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.doc-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.api-endpoint {
    background-color: #f8f9fa;
    border-left: 4px solid var(--secondary);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

.api-method {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--secondary);
    color: white;
    border-radius: 3px;
    font-weight: 500;
    margin-right: 10px;
}

.api-url {
    font-family: monospace;
    color: var(--dark);
}

.case-study {
    display: flex;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-study-img {
    flex: 0 0 40%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.case-study-content {
    flex: 1;
    padding: 25px;
    background: white;
}

.white-paper {
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.white-paper-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.white-paper-content {
    flex: 1;
}

.white-paper-content h3 {
    margin-bottom: 5px;
    color: var(--primary);
}

.white-paper-content p {
    color: var(--gray);
    margin-bottom: 10px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.download-btn i {
    margin-right: 5px;
}

/* Responsive para documentação */
@media (max-width: 992px) {
    .docs-sidebar {
        width: 220px;
    }
    
    .docs-content {
        margin-left: 220px;
    }
}

@media (max-width: 768px) {
    .docs-container {
        flex-direction: column;
        margin-top: 80px;
    }
    
    .docs-sidebar {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    
    .docs-content {
        margin-left: 0;
    }
    
    .case-study {
        flex-direction: column;
    }
    
    .case-study-img {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para o modal de login */
.login-modal {
    max-width: 450px;
    padding: 0;
    overflow: hidden;
}

.login-modal .modal-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    color: white;
    padding: 25px 30px;
    margin: 0;
    position: relative;
}

.login-logo {
    text-align: center;
}

.login-logo img {
    height: 50px;
    margin-bottom: 10px;
}

.login-logo h2 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.login-body {
    padding: 30px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.input-with-icon input {
    padding-left: 45px;
    padding-right: 15px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-with-icon input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.forgot-password {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: var(--primary);
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    height: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-text, .btn-loading {
    transition: opacity 0.3s;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.login-btn.loading .btn-text {
    opacity: 0;
}

.login-btn.loading .btn-loading {
    opacity: 1;
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.login-divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e9ecef;
}

.login-divider span {
    background-color: white;
    position: relative;
    padding: 0 15px;
    color: var(--gray);
    font-size: 0.9rem;
}

.sso-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sso-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.sso-btn:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

.google-btn {
    color: #DB4437;
}

.microsoft-btn {
    color: #0078D7;
}

.login-footer {
    padding: 20px 30px;
    background-color: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.login-footer p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.login-footer a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Animações para o modal */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

/* Responsividade */
@media (max-width: 576px) {
    .login-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .login-body {
        padding: 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .forgot-password {
        margin-left: 26px;
    }
}

.login-error {
    background-color: #ffeeee;
    border: 1px solid #ffcccc;
    color: #cc0000;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.login-error i {
    font-size: 1.1rem;
}
