/* HOME.CSS — estilos exclusivos da index.php */

/* Remove o gradiente do body na home */
body.home-page {
    background: #fff;
}

/* HERO */
.home-hero {
    background: #faf8f3;
    padding: 72px 0 64px;
    border-bottom: 1px solid #ede8dc;
    overflow: hidden;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 48px;
    align-items: center;
}

/* Badge */
.home-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0e8d4;
    color: #9a7020;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.home-badge-dot {
    width: 7px;
    height: 7px;
    background: #c8a24a;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Título hero */
.home-h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.05;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.home-h1 em {
    color: #c8a24a;
    font-style: normal;
}

/* Descrição */
.home-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 32px;
}

/* Botões hero */
.home-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.home-btn-gold {
    background: #c8a24a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    transition: background .15s;
}

.home-btn-gold:hover {
    background: #b08030;
    color: #fff;
}

.home-btn-dark {
    background: #111;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    border: 1.5px solid #111;
    transition: background .15s;
}

.home-btn-dark:hover {
    background: #333;
    color: #fff;
}

/* Stats */
.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e5ddd0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.home-stat-item {
    padding: 18px 12px;
    text-align: center;
    border-right: 1px solid #e5ddd0;
}

.home-stat-item:last-child {
    border-right: none;
}

.home-stat-item strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: #111;
    margin-bottom: 4px;
    line-height: 1;
}

.home-stat-item span {
    font-size: 11px;
    color: #888;
    line-height: 1.3;
}

/* LADO DIREITO — visual jurídico */
.home-visual-wrap {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed #ddd4be;
    pointer-events: none;
}

.home-ring-1 {
    width: 260px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-ring-2 {
    width: 390px;
    height: 390px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .45;
}

/* Símbolos jurídicos */
.home-sym {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.home-sym-balanca {
    width: 46px;
    height: 46px;
    background: #111;
    color: #c8a24a;
    border-radius: 12px;
    font-size: 22px;
    top: 12px;
    right: 20px;
}

.home-sym-paragrafo {
    width: 38px;
    height: 38px;
    background: #f5f5f5;
    color: #555;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 900;
    font-family: Georgia, serif;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
}

.home-sym-livro {
    width: 40px;
    height: 40px;
    background: #f0e8d4;
    color: #9a7020;
    border-radius: 10px;
    font-size: 18px;
    bottom: 12px;
    left: 20px;
}

/* Cards visuais */
.home-vcard {
    background: #fff;
    border: 1px solid #e0d8c8;
    border-radius: 16px;
    padding: 16px 18px;
    position: absolute;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.home-vcard-center {
    width: 235px;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    padding: 20px;
}

.home-vcard-center h3 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    color: #111;
    margin-bottom: 12px;
}

.home-vcard-center ul {
    list-style: none;
}

.home-vcard-center li {
    font-size: 12px;
    color: #555;
    padding: 5px 0 5px 16px;
    position: relative;
    border-top: 1px solid #f5f0e8;
    line-height: 1.4;
}

.home-vcard-center li:first-child {
    border-top: none;
}

.home-vcard-center li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c8a24a;
    font-size: 11px;
    font-weight: 700;
}

.home-vtag {
    display: inline-block;
    background: #f0e8d4;
    color: #9a7020;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.home-vcard-sm {
    width: 178px;
    z-index: 4;
}

.home-vcard-tl { top: 16px; left: -10px; }
.home-vcard-br { bottom: 16px; right: -10px; }

.home-vlabel {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #c8a24a;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.home-vcard-sm strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px;
}

.home-vcard-sm p {
    font-size: 11px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* FEATURES */
.home-features {
    padding: 80px 0;
    background: #faf8f4;
    border-top: 1px solid #ede8dc;
}

.home-features-head {
    text-align: center;
    margin-bottom: 48px;
}

.home-features-eyebrow {
    display: inline-block;
    background: #f0e8d4;
    color: #9a7020;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 14px;
}

.home-features-head h2 {
    font-size: 34px;
    font-weight: 900;
    color: #111;
    letter-spacing: -.5px;
}

.home-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.home-feat-card {
    background: #fff;
    border: 1px solid #e8e0ce;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow .2s, transform .2s;
}

.home-feat-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,.09);
    transform: translateY(-3px);
}

.home-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #111;
    color: #c8a24a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.home-feat-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

.home-feat-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.home-feat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #c8a24a;
    text-decoration: none;
    margin-top: 4px;
    transition: gap .15s;
}

.home-feat-link:hover {
    gap: 10px;
    color: #c8a24a;
}

/* RESPONSIVO */
@media (max-width: 960px) {
    .home-hero-grid { grid-template-columns: 1fr; }
    .home-visual-wrap { display: none; }
    .home-feat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .home-h1 { font-size: 38px; }
    .home-btns { flex-direction: column; align-items: flex-start; }
    .home-stats-grid { grid-template-columns: repeat(2,1fr); }
    .home-stat-item:nth-child(2) { border-right: none; }
    .home-stat-item:nth-child(3) { border-top: 1px solid #e5ddd0; }
}
