:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #c5a059;
    --text-color: #334155;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --success-color: #25d366;
    --header-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Header Branco (Solicitado) */
.lp-header {
    background-color: var(--white);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.lp-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo Aumentada */
.lp-logo img {
    height: 100px;
    width: 100px;
}

.btn-whatsapp-header {
    background-color: var(--success-color);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hero Section - Estilo Landing Page de Alta Conversão */
.lp-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../img/office_bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content-wrapper {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.lp-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.lp-hero h1 span {
    color: var(--accent-color);
}

.lp-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #cbd5e1;
    max-width: 600px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge i {
    color: var(--accent-color);
}

.btn-cta-hero {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 20px 45px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.btn-cta-hero:hover {
    background-color: #d4b06a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
}

/* Seção de Problemas (Dores) */
.lp-problems {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--accent-color);
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.problem-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.problem-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(197, 160, 89, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.problem-card i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.problem-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Seção Autoridade (Advogado) */
.lp-lawyer {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.lawyer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lawyer-img {
    position: relative;
}

.lawyer-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.lawyer-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    z-index: -1;
}

.lawyer-text .tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lawyer-text h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.lawyer-bio {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 20px;
}

.lawyer-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #cbd5e1;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 5px;
}

.stat .label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Faixa */
.cta-strip {
    background-color: var(--accent-color);
    padding: 80px 0;
    text-align: center;
    color: var(--primary-color);
}

.cta-strip h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-strip p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-dark {
    background-color: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cta-dark:hover {
    background-color: #000;
    transform: translateY(-3px);
}

/* Depoimentos */
.lp-testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: #475569;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    min-height: 80px;
    /* Altura mínima para alinhamento */
    opacity: 0.9;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Footer */
.lp-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

/* Logo Footer Aumentada */
.lp-footer img {
    height: 150px;
    width: 150px;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--success-color);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s;
    text-decoration: none !important;
    border: 2px solid #fff;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Responsividade */
@media (max-width: 992px) {
    .lawyer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .lawyer-img {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .lp-hero h1 {
        font-size: 2.5rem;
    }

    .lp-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .lp-header {
        height: auto;
        padding: 15px 0;
    }
}