* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

:root {
    --azul: #070738;
    --vermelho: #FE0000;
    --branco: #FFFFFF;
    --cinza-claro: #F8F9FA;
    --cinza-medio: #E9ECEF;
    --cinza-escuro: #343A40;
    --azul-claro: #1A1A5E;
    --azul-glow: #0A0A8F;
}

body {
    background-color: var(--branco);
    color: var(--cinza-escuro);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(254, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(7, 7, 56, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(10, 10, 143, 0.03) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite alternate;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.98) 100%);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

.navbar {
    background-color: var(--azul);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(254, 0, 0, 0.2); 
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-glow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--azul), var(--azul-claro));
    box-shadow: 0 0 20px rgba(254, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo-glow:hover {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 30px rgba(254, 0, 0, 0.3);
}

.logo-glow img {
    height: 30px;
    width: auto;
    filter: brightness(1.2);
}

.logo-text {
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--azul), var(--azul-claro));
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--vermelho);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--branco);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    width: auto;
    min-width: auto; 
    padding: 0.7rem 1rem; 
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1); 
    transform: translateY(-3px);
}

.nav-link:hover .nav-icon {
    transform: scale(1.2);
    color: var(--vermelho);
}

.nav-link:hover .nav-glow {
    opacity: 1;
    transform: scale(1.1);
}

.nav-icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1); 
    color: var(--branco); 
}

.profile-circle {
    background: linear-gradient(135deg, var(--vermelho), #FF4444);
    color: white !important;
    box-shadow: 0 0 15px rgba(254, 0, 0, 0.2);
}

.nav-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
    color: var(--branco);
    line-height: 1.3;
    white-space: nowrap; 
    max-width: none; 
    word-wrap: normal; 
    hyphens: none; 
}

.nav-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: radial-gradient(circle at center, rgba(254, 0, 0, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.menu-line {
    width: 25px;
    height: 2px;
    background-color: var(--branco);
    transition: all 0.3s ease;
}

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

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

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

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    background-color: var(--branco);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(254, 0, 0, 0.1), rgba(7, 7, 56, 0.05));
    border: 1px solid rgba(254, 0, 0, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    color: var(--vermelho);
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(254, 0, 0, 0.1), transparent);
    animation: slide 3s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--azul);
}

.title-line {
    display: block;
}

.highlight-text {
    position: relative;
    color: var(--vermelho);
}

.highlight-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: var(--vermelho);
    filter: blur(5px);
    opacity: 0.4;
    z-index: -1;
}

.highlight-underline {
    position: relative;
    display: inline-block;
    color: var(--azul);
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(254, 0, 0, 0.3), transparent);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--cinza-escuro);
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--vermelho), #FF4444);
    color: var(--branco);
    box-shadow: 0 4px 15px rgba(254, 0, 0, 0.2);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--branco);
    color: var(--azul);
    border: 2px solid rgba(7, 7, 56, 0.1);
    box-shadow: 0 4px 15px rgba(7, 7, 56, 0.1);
}

.btn-hologram {
    position: relative;
    overflow: hidden;
}

.btn-hologram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(7, 7, 56, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-hologram:hover::before {
    left: 100%;
}

.btn-hologram:hover {
    border-color: var(--vermelho);
    box-shadow: 0 8px 25px rgba(254, 0, 0, 0.15);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cinza-medio);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--vermelho), var(--azul));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cinza-escuro);
    opacity: 0.7;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.floating-logo {
    position: relative;
    width: 300px;
    height: 300px;
}

.logo-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--branco), #F0F0F5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 0 30px rgba(255, 255, 255, 0.8),
        0 20px 40px rgba(7, 7, 56, 0.1),
        0 0 50px rgba(254, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(7, 7, 56, 0.1);
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.logo-orb img {
    width: 100px;
    height: auto;
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid rgba(254, 0, 0, 0.2);
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 20px rgba(254, 0, 0, 0.1);
}

.logo-ring-2 {
    width: 300px;
    height: 300px;
    border-color: rgba(7, 7, 56, 0.1);
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hologram-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(7, 7, 56, 0.1);
    width: 250px;
    box-shadow: 0 10px 30px rgba(7, 7, 56, 0.1);
}

@keyframes hologram-pulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(7, 7, 56, 0.1); }
    50% { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(254, 0, 0, 0.15); }
}

.hologram-content h3 {
    color: var(--vermelho);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.hologram-content p {
    font-size: 0.9rem;
    color: var(--cinza-escuro);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hologram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.hologram-item {
    background: rgba(254, 0, 0, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
    border: 1px solid rgba(254, 0, 0, 0.1);
    color: var(--azul);
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--azul);
}

.title-glow {
    position: relative;
    display: inline-block;
}

.title-glow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--vermelho), transparent);
    border-radius: 2px;
}

.title-highlight {
    color: var(--vermelho);
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(254, 0, 0, 0.1);
    z-index: -1;
    border-radius: 4px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cinza-escuro);
    opacity: 0.7;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.course-card {
    background: var(--branco);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(7, 7, 56, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 7, 56, 0.05);
}

.card-glow:hover {
    transform: translateY(-10px);
    border-color: rgba(254, 0, 0, 0.3);
    box-shadow: 0 20px 50px rgba(254, 0, 0, 0.15);
}

.course-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(254, 0, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-glow:hover .course-glow {
    opacity: 1;
}

.course-header {
    text-align: center;
    margin-bottom: 2rem;
}

.course-icon {
    font-size: 2.5rem;
    color: var(--vermelho);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(254, 0, 0, 0.1), rgba(7, 7, 56, 0.05));
    box-shadow: 0 10px 20px rgba(254, 0, 0, 0.1);
}

.course-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--azul);
}

.course-subtitle {
    color: var(--cinza-escuro);
    font-size: 0.95rem;
    opacity: 0.7;
}

.course-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.course-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: rgba(7, 7, 56, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--azul);
    border: 1px solid transparent;
}

.course-list li:hover {
    background: rgba(254, 0, 0, 0.05);
    transform: translateX(8px);
    border-color: rgba(254, 0, 0, 0.1);
}

.course-list li i {
    color: var(--vermelho);
    font-size: 0.8rem;
}

.course-footer {
    text-align: center;
}

.btn-course {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--vermelho), #FF4444);
    color: var(--branco);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(254, 0, 0, 0.2);
}

.btn-course:hover {
    gap: 15px;
    box-shadow: 0 8px 25px rgba(254, 0, 0, 0.3);
    transform: translateY(-2px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: var(--branco);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(7, 7, 56, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 7, 56, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(254, 0, 0, 0.3);
    box-shadow: 0 20px 50px rgba(254, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--vermelho);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(254, 0, 0, 0.1), rgba(7, 7, 56, 0.05));
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(254, 0, 0, 0.1);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(254, 0, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .icon-glow {
    opacity: 0.6;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--azul);
}

.feature-description {
    color: var(--cinza-escuro);
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.feature-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--vermelho), transparent);
    transition: width 0.4s ease;
}

.feature-card:hover .feature-line {
    width: 80%;
}

footer {
    background: linear-gradient(135deg, var(--azul), var(--azul-claro));
    color: var(--branco);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(254, 0, 0, 0.2);
    width: 100%; 
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--branco), #E0E0FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--vermelho);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--branco);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--vermelho);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(254, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        height: 400px;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hologram-card {
        right: 50%;
        transform: translateX(50%);
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        width: 90px; 
        padding: 0.6rem 0.6rem; 
    }
    
    .nav-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--azul); /* Alterado de rgba(255, 255, 255, 0.98) */
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 1.5rem;
        transition: left 0.3s ease;
        gap: 0.5rem;
        z-index: 999;
        border-top: 1px solid rgba(254, 0, 0, 0.2); /* Alterado de var(--cinza-medio) */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Escurecido o shadow */
    }
    
    .nav-link {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        gap: 15px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1); /* Alterado de var(--cinza-medio) */
    }
    
    .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-label {
        font-size: 1rem;
        margin-top: 0;
        max-width: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-logo {
        width: 250px;
        height: 250px;
    }
    
    .logo-orb {
        width: 150px;
        height: 150px;
    }
    
    .logo-orb img {
        width: 70px;
    }
    
    .logo-ring {
        width: 200px;
        height: 200px;
    }
    
    .logo-ring-2 {
        width: 240px;
        height: 240px;
    }
    
    .nav-logo span {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container, main, .footer-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-link {
        width: 80px;
        padding: 0.5rem 0.4rem; 
    }
    
    .nav-label {
        font-size: 0.7rem; 
        line-height: 1.2;
    }
    
    .nav-icon {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

/* Estilos para páginas de autenticação */
.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
    align-items: center;
}

.auth-card {
    background: var(--branco);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(7, 7, 56, 0.1);
    box-shadow: 0 20px 60px rgba(7, 7, 56, 0.1);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--vermelho), var(--azul));
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-icon {
    font-size: 3rem;
    color: var(--vermelho);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(254, 0, 0, 0.1), rgba(7, 7, 56, 0.05));
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(254, 0, 0, 0.15);
}

.auth-title {
    font-size: 2rem;
    color: var(--azul);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--cinza-escuro);
    opacity: 0.8;
    font-size: 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--azul);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-label i {
    color: var(--vermelho);
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(7, 7, 56, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--azul);
    background: var(--branco);
    transition: all 0.3s ease;
    position: relative;
}

.form-input:focus {
    outline: none;
    border-color: var(--vermelho);
    box-shadow: 0 0 0 3px rgba(254, 0, 0, 0.1);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: radial-gradient(circle at center, rgba(254, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.form-input:focus + .input-glow {
    opacity: 1;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 2.5rem;
    background: none;
    border: none;
    color: var(--cinza-escuro);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--vermelho);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--cinza-escuro);
    user-select: none;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(7, 7, 56, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background: var(--vermelho);
    border-color: var(--vermelho);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
}

.forgot-link {
    color: var(--vermelho);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-btn {
    background: linear-gradient(135deg, var(--vermelho), #FF4444);
    color: var(--branco);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(254, 0, 0, 0.2);
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(254, 0, 0, 0.3);
    gap: 15px;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--cinza-escuro);
    opacity: 0.7;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(7, 7, 56, 0.1);
}

.auth-divider span {
    padding: 0 1rem;
}

.auth-redirect {
    text-align: center;
    color: var(--cinza-escuro);
    font-size: 0.95rem;
}

.auth-redirect a {
    color: var(--vermelho);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-redirect a:hover {
    text-decoration: underline;
}

.auth-notification {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.auth-notification.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid #4caf50;
    opacity: 1;
    transform: translateY(0);
}

.auth-notification.error {
    background: rgba(244, 67, 54, 0.1);
    color: #d32f2f;
    border: 1px solid #f44336;
    opacity: 1;
    transform: translateY(0);
}

.auth-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.info-card {
    background: var(--branco);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(7, 7, 56, 0.1);
    box-shadow: 0 15px 40px rgba(7, 7, 56, 0.1);
    width: 100%;
    max-width: 400px;
}

.info-card h3 {
    color: var(--azul);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(7, 7, 56, 0.02);
    border-radius: 10px;
    color: var(--azul);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(254, 0, 0, 0.05);
    transform: translateX(5px);
}

.benefits-list li i {
    color: var(--vermelho);
    font-size: 1.1rem;
}

.floating-logo {
    position: relative;
    width: 250px;
    height: 250px;
}

.logo-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--branco), #F0F0F5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 0 30px rgba(255, 255, 255, 0.8),
        0 20px 40px rgba(7, 7, 56, 0.1),
        0 0 50px rgba(254, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(7, 7, 56, 0.1);
}

.logo-orb img {
    width: 70px;
    height: auto;
}

@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
    }
    
    .auth-info {
        order: -1;
    }
    
    .floating-logo {
        width: 200px;
        height: 200px;
    }
    
    .logo-orb {
        width: 120px;
        height: 120px;
    }
    
    .logo-orb img {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .auth-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .auth-title {
        font-size: 1.7rem;
    }
}