/* Reset e Base */
.lp-familia * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lp-familia {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.lp-familia a {
    text-decoration: none;
}

/* ===== HERO SECTION ===== */
.lp-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

.lp-hero::before { content: none; }

.lp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.lp-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid #c9a227;
    color: #c9a227;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.lp-escritorio {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    font-weight: 500;
}

.lp-headline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.lp-subheadline {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    line-height: 1.5;
}

.lp-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.lp-cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

.lp-cta-whatsapp svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.lp-hero-trust {
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.lp-hero-trust span {
    margin: 0 10px;
}

/* ===== DIFERENCIAIS ===== */
.lp-diferenciais {
    background: #f8f9fa;
    padding: 30px 20px;
}

.lp-diferenciais-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.lp-diferencial-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.lp-diferencial-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.lp-diferencial-texto {
    font-size: 14px;
    color: #1a365d;
    font-weight: 600;
}

/* ===== SERVIÇOS ===== */
.lp-servicos {
    padding: 60px 20px;
    background: white;
}

.lp-section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #806515;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.lp-section-headline {
    text-align: center;
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 700;
}

.lp-section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.lp-servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-servico-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.lp-servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #c9a227;
}

.lp-servico-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.lp-servico-titulo {
    font-size: 18px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
}

.lp-servico-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== SOBRE / AUTORIDADE ===== */
.lp-sobre {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 60px 20px;
}

.lp-sobre-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lp-sobre-logo {
    max-width: 350px;
    margin-bottom: 30px;
}

.lp-sobre-texto {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.lp-sobre-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.lp-stat {
    text-align: center;
}

.lp-stat-numero {
    font-size: 42px;
    font-weight: 700;
    color: #c9a227;
}

.lp-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ESPECIALISTAS ===== */
.lp-especialistas {
    padding: 60px 20px;
    background: #f8f9fa;
}

.lp-especialistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-especialista-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.lp-especialista-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.lp-especialista-foto {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
}

.lp-especialista-info {
    padding: 25px;
}

.lp-especialista-destaque {
    display: inline-block;
    background: #71560a;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.lp-especialista-nome {
    font-size: 22px;
    color: #1a365d;
    font-weight: 700;
    margin-bottom: 5px;
}

.lp-especialista-cargo {
    font-size: 13px;
    color: #806515;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.lp-especialista-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ===== DEPOIMENTOS ===== */
.lp-depoimentos {
    padding: 60px 20px;
    background: white;
}

.lp-depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-depoimento-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    position: relative;
}

.lp-depoimento-card::before {
    content: '"';
    font-size: 60px;
    color: #c9a227;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.lp-depoimento-texto {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.lp-depoimento-autor {
    font-size: 14px;
    font-weight: 600;
    color: #1a365d;
}

/* ===== FORMULÁRIO ===== */
.lp-formulario {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

.lp-formulario-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lp-form-titulo {
    text-align: center;
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 700;
}

.lp-form-subtitulo {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.lp-form-grupo {
    margin-bottom: 20px;
}

.lp-form-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.lp-form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.lp-form-input:focus {
    outline: none;
    border-color: #c9a227;
}

.lp-form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    min-height: 100px;
    resize: vertical;
}

.lp-form-textarea:focus {
    outline: none;
    border-color: #c9a227;
}

.lp-form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #c9a227 0%, #a88a1f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.lp-form-nota {
    text-align: center;
    font-size: 12px;
    color: #595959;
    margin-top: 20px;
}

.lp-form-whatsapp {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.lp-form-whatsapp p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.lp-btn-whatsapp-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #087a37;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.lp-btn-whatsapp-form:hover {
    background: #128C7E;
    color: white;
    text-decoration: none;
}

.lp-btn-whatsapp-form svg {
    width: 22px;
    height: 22px;
    fill: white;
}

/* ===== CONTATO INFO ===== */
.lp-contato-info {
    padding: 40px 20px;
    background: #f8f9fa;
    text-align: center;
}

.lp-contato-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.lp-contato-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lp-contato-icon {
    width: 50px;
    height: 50px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.lp-contato-texto {
    text-align: left;
}

.lp-contato-label {
    font-size: 12px;
    color: #595959;
    text-transform: uppercase;
}

.lp-contato-valor {
    font-size: 16px;
    color: #1a365d;
    font-weight: 600;
}

.lp-contato-valor a {
    color: #1a365d;
    text-decoration: none;
}

/* ===== RODAPÉ ===== */
.lp-rodape {
    background: #1a365d;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.lp-rodape p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.lp-rodape-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.lp-rodape-links a {
    color: #c9a227;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.lp-rodape-links a:hover {
    color: white;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.lp-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.lp-whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.lp-whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.lp-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .lp-headline {
        font-size: 26px;
    }
    
    .lp-subheadline {
        font-size: 16px;
    }
    
    .lp-section-headline {
        font-size: 24px;
    }
    
    .lp-cta-whatsapp {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .lp-hero-trust span {
        display: block;
        margin: 5px 0;
    }
    
    .lp-sobre-stats {
        gap: 30px;
    }
    
    .lp-especialistas-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-rodape-links {
        flex-direction: column;
        gap: 15px;
    }
}
