﻿/* RH JURIDICO PREMIUM STYLES */
.rh-hero {
    background-color: var(--dark-bg, #020B1C);
    padding: 160px 5% 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.rh-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(217, 149, 61, 0.08) 0%, transparent 60%);
    animation: rotateGradient 20s linear infinite;
    z-index: 1;
}
@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.rh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.rh-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--accent-gold, #D9953D);
    color: var(--accent-gold, #D9953D);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 30px;
    background: rgba(217, 149, 61, 0.05);
}
.rh-hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
}
.rh-hero h1 span {
    color: var(--accent-gold, #D9953D);
    font-style: italic;
}
.rh-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}
.rh-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    width: 100%;
    max-width: 800px;
}
.rh-stat {
    text-align: center;
}
.rh-stat h3 {
    font-size: 2.5rem;
    color: var(--accent-gold, #D9953D);
    font-weight: 800;
    margin-bottom: 5px;
}
.rh-stat p {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* SECTION STRUCTURE */
.rh-section {
    padding: 120px 5%;
}
.rh-light { background-color: #f8fafc; }
.rh-dark { background-color: var(--dark-bg, #020B1C); }

.rh-section-header {
    text-align: center;
    margin-bottom: 80px;
}
.rh-section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-bg, #020B1C);
    margin-bottom: 20px;
}
.rh-dark .rh-section-header h2 { color: #fff; }
.rh-section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.rh-dark .rh-section-header p { color: #cbd5e1; }

/* GRID CARDS (PROBLEMAS) */
.rh-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.rh-prob-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border-bottom: 4px solid var(--accent-gold, #D9953D);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.rh-prob-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.rh-prob-card i {
    font-size: 2.5rem;
    color: var(--accent-gold, #D9953D);
    margin-bottom: 25px;
}
.rh-prob-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-bg, #020B1C);
    margin-bottom: 15px;
}
.rh-prob-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* LISTA DE SERVICOS */
.rh-serv-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rh-serv-row {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.rh-serv-row:hover {
    background: rgba(217, 149, 61, 0.05);
    border-color: rgba(217, 149, 61, 0.3);
}
.rh-serv-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    margin-right: 30px;
    line-height: 1;
}
.rh-serv-content {
    flex-grow: 1;
}
.rh-serv-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.rh-serv-content p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* PLANOS */
.rh-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.rh-plan-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
.rh-plan-card.premium {
    background: var(--dark-bg, #020B1C);
    color: #fff;
    transform: scale(1.05);
    border: 1px solid var(--accent-gold, #D9953D);
}
.rh-plan-badge {
    position: absolute;
    top: 20px; right: -30px;
    background: var(--accent-gold, #D9953D);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 40px;
    transform: rotate(45deg);
}
.rh-plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold, #D9953D);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.rh-plan-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-bg, #020B1C);
    margin-bottom: 30px;
}
.premium .rh-plan-title { color: #fff; }
.rh-plan-price {
    font-size: 4rem;
    font-weight: 300;
    color: var(--dark-bg, #020B1C);
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 15px;
    line-height: 1;
}
.premium .rh-plan-price { color: var(--accent-gold, #D9953D); }
.rh-plan-price span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
}
.rh-plan-obs {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border, #e2e8f0);
}
.premium .rh-plan-obs { border-color: rgba(255,255,255,0.1); }
.rh-plan-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}
.rh-plan-ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}
.premium .rh-plan-ul li { color: #cbd5e1; }
.rh-plan-ul li i { color: var(--accent-gold, #D9953D); margin-top: 4px; }

.rh-btn {
    display: block;
    text-align: center;
    padding: 18px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.rh-btn-gold {
    background: var(--accent-gold, #D9953D);
    color: #fff;
}
.rh-btn-gold:hover {
    background: #c78631;
}
.rh-btn-outline {
    background: transparent;
    border: 2px solid var(--border, #e2e8f0);
    color: var(--dark-bg, #020B1C);
}
.rh-btn-outline:hover {
    border-color: var(--accent-gold, #D9953D);
    color: var(--accent-gold, #D9953D);
}

@media (max-width: 1024px) {
    .rh-hero h1 { font-size: 2.8rem; }
    .rh-grid-3 { grid-template-columns: 1fr; }
    .rh-plan-grid { grid-template-columns: 1fr; }
    .rh-plan-card.premium { transform: none; }
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.rh-serv-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 30px;
    transition: all 0.3s ease;
}
.rh-serv-box:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(217, 149, 61, 0.4);
}
.rh-serv-box i {
    font-size: 1.5rem;
    color: #D9953D;
    margin-bottom: 20px;
    display: block;
}
.rh-serv-box h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #020B1C;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.rh-serv-box p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.rh-plan-box {
    transition: all 0.3s ease;
}
