/**
 * userTerms.css
 * Estilos específicos para Termos de Uso
 * Wini.IA - Versão Profissional Corporativa
 */

/* ===================================
   HERO SECTION
   =================================== */
   .terms-hero {
    background: linear-gradient(135deg, #1A1F3A, #2C3E7C);
    padding: 100px 0 60px 0;
    margin-top: 80px; /* Valor fixo em vez de variável CSS */
    color: #FFFFFF;
}

.terms-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.terms-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.terms-subtitle {
    font-size: 1rem;
    color: #E2E8F0;
    margin-bottom: 25px;
    opacity: 0.9;
}

.terms-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #E2E8F0;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   CONTENT SECTION
   =================================== */
.terms-content-section {
    background: #FFFFFF;
    padding: 60px 0;
}

.terms-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

/* ===================================
   SIDEBAR NAVIGATION
   =================================== */
.terms-sidebar {
    position: sticky;
    top: 100px; /* Valor fixo em vez de variável CSS */
    background: #F8FAFB;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #E8F0FE;
}

.terms-nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1F3A;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #6B46C1;
}

.terms-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav-list li {
    margin-bottom: 12px;
}

.terms-nav-list a {
    color: #6B7280;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.terms-nav-list a:hover {
    background: #FFFFFF;
    color: #6B46C1;
    padding-left: 16px;
}

/* ===================================
   MAIN CONTENT
   =================================== */
.terms-main {
    background: #FFFFFF;
}

.terms-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E8F0FE;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A1F3A;
    margin-bottom: 20px;
}

.terms-subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C3E7C;
    margin-top: 25px;
    margin-bottom: 15px;
}

.terms-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

.terms-list {
    list-style-position: outside;
    padding-left: 25px;
    margin: 20px 0;
}

.terms-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 10px;
}

/* ===================================
   NOTICE BOXES
   =================================== */
.terms-notice-box {
    background: #E8F0FE;
    border-left: 4px solid #2C3E7C;
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: #1A1F3A;
}

.terms-notice-box strong {
    font-weight: 700;
}

.terms-highlight-box {
    background: #F8FAFB;
    border-left: 4px solid #6B46C1;
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 8px;
}

.terms-highlight-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.terms-warning-box {
    background: #FEF2F2;
    border: 2px solid #F59E0B;
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
}

.terms-warning-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1A1F3A;
    margin: 0;
    font-weight: 600;
}

/* ===================================
   CONTACT BOX
   =================================== */
.terms-contact-box {
    background: #F8FAFB;
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
}

.terms-contact-box p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 12px;
}

.terms-contact-box p:last-child {
    margin-bottom: 0;
}

.terms-contact-box strong {
    color: #1A1F3A;
    font-weight: 600;
}

/* ===================================
   RESPONSIVIDADE - TABLET
   =================================== */
@media (max-width: 992px) {
    .terms-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .terms-sidebar {
        position: relative;
        top: 0;
    }
    
    .terms-main-title {
        font-size: 2.5rem;
    }
    
    .terms-hero {
        padding: 80px 0 50px 0;
    }
}

/* ===================================
   RESPONSIVIDADE - MOBILE
   =================================== */
@media (max-width: 768px) {
    .terms-hero {
        padding: 60px 0 40px 0;
    }
    
    .terms-main-title {
        font-size: 2rem;
    }
    
    .terms-intro {
        font-size: 1rem;
    }
    
    .terms-content-section {
        padding: 40px 0;
    }
    
    .terms-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .terms-section-title {
        font-size: 1.5rem;
    }
    
    .terms-subsection-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .terms-main-title {
        font-size: 1.75rem;
    }
    
    .terms-sidebar {
        padding: 20px;
    }
    
    .terms-notice-box,
    .terms-highlight-box,
    .terms-warning-box,
    .terms-contact-box {
        padding: 20px;
    }
}