/* TERMS AND CONDITIONS SECTION */
.terms-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #faf9f7, #f5f2ed);
}

.terms-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.terms-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.terms-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.terms-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.terms-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 1rem;
}

.terms-header h1 span {
    color: #e67e22;
}

.terms-header > p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    color: #7f8c6d;
    line-height: 1.6;
}

/* Grid de términos */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Tarjeta de cada término */
.term-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #f0e6db;
    position: relative;
    overflow: hidden;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e67e22;
}

.term-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(230, 126, 34, 0.08);
    line-height: 1;
}

.term-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 1rem;
    padding-right: 40px;
}

.term-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #7f8c6d;
    margin-bottom: 0;
}

.term-subtext {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed #f0e6db;
    font-style: italic;
}

/* Footer */
.terms-footer {
    margin-top: 3rem;
}

.terms-alert {
    background: rgba(230, 126, 34, 0.08);
    border-left: 4px solid #e67e22;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.terms-alert span {
    font-size: 1.5rem;
}

.terms-alert strong {
    color: #2c3e2f;
}

.terms-alert div {
    color: #7f8c6d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.terms-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-accept {
    background: #e67e22;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-accept:hover {
    background: #cf711f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

.btn-download {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #5a4a3a;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download:hover {
    border-color: #e67e22;
    color: #e67e22;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .terms-grid {
        gap: 1.5rem;
    }
    
    .terms-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .terms-section {
        padding: 3rem 1.5rem;
    }
    
    .terms-header h1 {
        font-size: 1.8rem;
    }
    
    .term-card {
        padding: 1.5rem;
    }
    
    .term-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }
    
    .term-card h3 {
        font-size: 1.2rem;
    }
    
    .terms-alert {
        flex-direction: column;
        text-align: center;
    }
    
    .terms-buttons {
        gap: 1rem;
    }
    
    .btn-accept, .btn-download {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .terms-header h1 {
        font-size: 1.5rem;
    }
    
    .terms-header > p {
        font-size: 0.85rem;
    }
}