/* ============================================
   CSS ESPECÍFICO DA PÁGINA TERMOS DE USO
   ============================================ */

/* ---------- HERO TERMOS ---------- */
.hero-termos {
    padding: 60px 0 80px;
    background: radial-gradient(circle at 70% 30%, rgba(212,175,55,0.08) 0%, transparent 50%);
    text-align: center;
    position: relative;
}

.hero-termos__content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-termos__label {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: var(--radius);
    background: rgba(212,175,55,0.05);
}

.hero-termos__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-termos__title .text-gold {
    color: var(--gold);
    font-style: italic;
}

.hero-termos__subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-termos__meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(212,175,55,0.2);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ---------- INTRODUÇÃO ---------- */
.termos-intro {
    padding: 60px 0;
    background: var(--black);
}

.termos-intro__box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--dark-gray);
    border: 1px solid rgba(212,175,55,0.2);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
}

.termos-intro__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.termos-intro__box p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}

.termos-intro__box p:last-child {
    margin-bottom: 0;
}

.termos-intro__box a {
    color: var(--gold);
    text-decoration: underline;
    transition: var(--transition);
}

.termos-intro__box a:hover {
    color: var(--gold-light);
}

/* ---------- SEÇÕES DE TERMOS ---------- */
.termos-section {
    padding: 80px 0;
    background: var(--black);
    border-top: 1px solid rgba(212,175,55,0.1);
}

.termos-section--alt {
    background: var(--dark-gray);
}

.termos-section__header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.termos-section__number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    opacity: 0.4;
    flex-shrink: 0;
}

.termos-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-light);
    margin: 0;
}

.termos-section__content {
    max-width: 900px;
}

.termos-section__content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.termos-section__content p:last-child {
    margin-bottom: 0;
}

/* ---------- LISTA DE TERMOS ---------- */
.termos-list {
    list-style: none;
    margin: 20px 0 24px 0;
    padding: 0;
}

.termos-list li {
    position: relative;
    padding: 14px 0 14px 32px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(212,175,55,0.08);
}

.termos-list li:last-child {
    border-bottom: none;
}

.termos-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.termos-list li strong {
    color: var(--gold);
    font-weight: 600;
}

/* ---------- CAIXA DE CONTATO ---------- */
.termos-contact-box {
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

.termos-contact-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
    text-align: left;
}

.termos-contact-box p:last-child {
    margin-bottom: 0;
}

.termos-contact-box strong {
    color: var(--gold);
}

/* ---------- CTA FINAL ---------- */
.termos-cta {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 70%),
        linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
    text-align: center;
}

.termos-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.termos-cta__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--text-light);
}

.termos-cta__title .text-gold {
    color: var(--gold);
    font-style: italic;
}

.termos-cta__text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.termos-cta__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 768px) {
    .hero-termos {
        padding: 40px 0 60px;
    }
    
    .hero-termos__meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .termos-intro {
        padding: 40px 0;
    }
    
    .termos-intro__box {
        padding: 30px 20px;
    }
    
    .termos-section {
        padding: 50px 0;
    }
    
    .termos-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .termos-section__number {
        font-size: 3rem;
    }
    
    .termos-section__content p {
        text-align: left;
    }
    
    .termos-list li {
        text-align: left;
    }
    
    .termos-cta {
        padding: 60px 0;
    }
    
    .termos-cta__actions {
        flex-direction: column;
    }
    
    .termos-cta__actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-termos__title {
        font-size: 2rem;
    }
    
    .termos-intro__box {
        padding: 24px 18px;
    }
    
    .termos-section__number {
        font-size: 2.5rem;
    }
}

/* ---------- IMPRESSÃO ---------- */
@media print {
    .header, .footer, .termos-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-termos, .termos-intro, .termos-section {
        background: white;
        padding: 20px 0;
    }
    
    .termos-section--alt {
        background: white;
    }
    
    .termos-intro__box {
        background: white;
        border: 2px solid black;
    }
    
    .termos-section__number {
        color: black;
    }
    
    .text-gold {
        color: black;
    }
    
    .termos-list li {
        color: black;
        border-bottom: 1px solid #ccc;
    }
    
    .termos-contact-box {
        background: #f5f5f5;
        border: 1px solid black;
    }
    
    .termos-contact-box p,
    .termos-section__content p,
    .termos-intro__box p {
        color: black;
    }
}/* ============================================
   CSS ESPECÍFICO DA PÁGINA TERMOS DE USO
   Padrão Letush Consultoria
   ============================================ */

/* ---------- HERO TERMOS ---------- */
.hero-termos {
    padding: 80px 0 60px;
    background: radial-gradient(circle at 70% 30%, rgba(212,175,55,0.08) 0%, transparent 50%);
    text-align: center;
    position: relative;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.hero-termos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-termos__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-termos__label {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: var(--radius);
    background: rgba(212,175,55,0.05);
}

.hero-termos__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--text-light);
}

.hero-termos__title .text-gold {
    color: var(--gold);
    font-style: italic;
    display: block;
    margin-top: 8px;
}

.hero-termos__subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-termos__meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.hero-termos__meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-termos__meta-icon {
    font-size: 1.5rem;
}

.hero-termos__meta-item div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-termos__meta-item strong {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.hero-termos__meta-item span {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ---------- INTRODUÇÃO ---------- */
.termos-intro {
    padding: 60px 0;
    background: var(--black);
}

.termos-intro__box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-gray);
    border: 1px solid rgba(212,175,55,0.2);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 40px;
}

.termos-intro__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.termos-intro__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.termos-intro__box p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}

.termos-intro__box p:last-child {
    margin-bottom: 0;
}

.termos-intro__box strong {
    color: var(--gold);
    font-weight: 600;
}

.termos-intro__box a {
    color: var(--gold);
    text-decoration: underline;
    transition: var(--transition);
}

.termos-intro__box a:hover {
    color: var(--gold-light);
}

/* ---------- SEÇÕES DE CONTEÚDO ---------- */
.termos-section {
    padding: 80px 0;
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.termos-section:nth-child(even) {
    background: var(--dark-gray);
}

.termos-section__header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.termos-section__number-wrapper {
    flex-shrink: 0;
}

.termos-section__number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    opacity: 0.4;
}

.termos-section__header-content {
    flex: 1;
}

.termos-section__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.termos-section__subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.termos-section__content {
    max-width: 900px;
}

.termos-section__content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: justify;
}

.termos-section__content p:last-child {
    margin-bottom: 0;
}

.termos-section__content strong {
    color: var(--gold);
    font-weight: 600;
}

/* ---------- LISTAS ---------- */
.termos-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.termos-list li {
    position: relative;
    padding: 16px 0 16px 36px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.termos-list li:last-child {
    border-bottom: none;
}

.termos-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 16px;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.3rem;
}

.termos-list li strong {
    color: var(--gold);
    font-weight: 600;
}

/* ---------- CAIXA DE DESTAQUE ---------- */
.termos-highlight-box {
    display: flex;
    gap: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.termos-highlight-box__icon {
    flex-shrink: 0;
    font-size: 2rem;
}

.termos-highlight-box__content {
    flex: 1;
}

.termos-highlight-box__title {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.termos-highlight-box__content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.termos-highlight-box__content p:last-child {
    margin-bottom: 0;
}

/* ---------- CAIXA DE ALERTA ---------- */
.termos-alert-box {
    display: flex;
    gap: 20px;
    background: rgba(255, 68, 68, 0.05);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-left: 4px solid #ff4444;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.termos-alert-box__icon {
    flex-shrink: 0;
    font-size: 2rem;
}

.termos-alert-box__content {
    flex: 1;
}

.termos-alert-box__title {
    font-size: 1.3rem;
    color: #ff4444;
    margin-bottom: 16px;
    font-weight: 600;
}

.termos-alert-box__content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.termos-alert-box__content p:last-child {
    margin-bottom: 0;
}

.termos-alert-box__content strong {
    color: var(--gold);
    font-weight: 600;
}

/* ---------- CAIXA DE INFORMAÇÃO ---------- */
.termos-info-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.termos-info-box__title {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.termos-info-box .termos-list {
    margin: 16px 0 0 0;
}

/* ---------- CAIXA DE CONTATO ---------- */
.termos-contact-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.termos-contact-box__title {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 600;
}

.termos-contact-box__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.termos-contact-box__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.termos-contact-box__item strong {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.termos-contact-box__item span,
.termos-contact-box__item a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.termos-contact-box__item a {
    text-decoration: none;
    transition: var(--transition);
}

.termos-contact-box__item a:hover {
    color: var(--gold);
}

/* ---------- LINKS ---------- */
.termos-section__content a {
    color: var(--gold);
    text-decoration: underline;
    transition: var(--transition);
    font-weight: 500;
}

.termos-section__content a:hover {
    color: var(--gold-light);
    text-decoration: none;
}

/* ---------- CTA FINAL ---------- */
.termos-cta {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 70%),
        linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
    text-align: center;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.termos-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.termos-cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    color: var(--text-light);
    font-weight: 700;
}

.termos-cta__title .text-gold {
    color: var(--gold);
    font-style: italic;
}

.termos-cta__text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.termos-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 992px) {
    .hero-termos {
        padding: 60px 0 40px;
    }
    
    .termos-section {
        padding: 60px 0;
    }
    
    .termos-section__header {
        flex-direction: column;
        gap: 16px;
    }
    
    .termos-section__number {
        font-size: 3rem;
    }
    
    .termos-contact-box__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-termos {
        padding: 50px 0 30px;
    }
    
    .hero-termos__meta {
        flex-direction: column;
        gap: 16px;
    }
    
    .termos-section {
        padding: 50px 0;
    }
    
    .termos-section__number {
        font-size: 2.5rem;
    }
    
    .termos-section__title {
        font-size: 1.5rem;
    }
    
    .termos-list li {
        padding: 14px 0 14px 32px;
        font-size: 0.95rem;
    }
    
    .termos-highlight-box,
    .termos-alert-box {
        flex-direction: column;
        padding: 24px;
    }
    
    .termos-cta {
        padding: 60px 0;
    }
    
    .termos-cta__actions {
        flex-direction: column;
    }
    
    .termos-cta__actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-termos__title {
        font-size: 2rem;
    }
    
    .termos-section__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .termos-section__number {
        font-size: 2rem;
    }
    
    .termos-intro__box {
        padding: 24px;
    }
}

/* ---------- IMPRESSÃO ---------- */
@media print {
    .header, .footer, .termos-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-termos, .termos-section, .termos-intro {
        background: white;
        padding: 20px 0;
        border: none;
    }
    
    .termos-section:nth-child(even) {
        background: white;
    }
    
    .termos-highlight-box, .termos-alert-box, .termos-info-box, .termos-contact-box {
        background: #f5f5f5;
        border: 1px solid #ccc;
    }
    
    .text-gold {
        color: black;
    }
    
    .termos-section__number {
        color: black;
    }
    
    .termos-list li {
        color: black;
        border-bottom: 1px solid #ddd;
    }
    
    .termos-contact-box__item a {
        color: black;
    }
}