/* termos.css - Estilo Mercado Livre */

.terms-page {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.terms-container {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.terms-header {
    background: linear-gradient(135deg, #7e57c2, #5e35b1);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.terms-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.terms-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
}

.terms-body {
    padding: 40px;
    line-height: 1.7;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
}

.terms-summary {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 30px;
}

.terms-summary h3 {
    color: #7e57c2;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-summary p {
    margin-bottom: 15px;
    color: #555;
}

.terms-summary ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-summary li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.terms-section-title {
    color: #7e57c2;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1d8f0;
    font-family: 'Arial', sans-serif;
}

.terms-section-title:first-child {
    margin-top: 0;
}

.terms-text {
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

.terms-list {
    margin: 20px 0 25px 25px;
    padding-left: 15px;
}

.terms-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #444;
    position: relative;
    line-height: 1.6;
}

.terms-list li:before {
    content: "•";
    color: #7e57c2;
    font-weight: bold;
    font-size: 1.3rem;
    position: absolute;
    left: -20px;
    top: -1px;
}

.terms-highlight {
    color: #7e57c2;
    font-weight: 600;
}

.terms-important {
    background-color: #f3e5f5;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #7e57c2;
    margin: 25px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .terms-page {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .terms-body {
        padding: 25px 20px;
    }
    
    .terms-header {
        padding: 20px;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-section-title {
        font-size: 1.3rem;
    }
    
    .terms-body {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .terms-page {
        margin: 15px auto;
        padding: 0 10px;
    }
    
    .terms-body {
        padding: 20px 15px;
    }
    
    .terms-header {
        padding: 15px;
    }
    
    .terms-title {
        font-size: 1.6rem;
    }
    
    .terms-summary {
        padding: 15px;
    }
}