/* Estilos específicos para a página RecuperaEsseLead */

.product-hero {
    background-color: var(--preto);
    color: var(--bege);
}

.product-logo {
    height: 60px;
    margin-bottom: 20px;
}

.metrics-card {
    background-color: var(--bege);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--preto);
    max-width: 400px;
    margin: 0 auto;
}

.metrics-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--preto);
}

.metric-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.metric-label {
    flex: 1;
    font-weight: 500;
    margin-right: 10px;
    min-width: 150px;
}

.metric-bar {
    flex: 2;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 15px;
}

.metric-bar-fill {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 5px;
    transition: width 1s ease-in-out;
}

.metric-value {
    flex: 0 0 60px;
    font-weight: 700;
    color: #4CAF50;
    text-align: right;
}

.metrics-note {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
    color: #666;
}

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

.feature-card {
    background-color: var(--bege);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--amarelo);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--preto);
}

.feature-description {
    color: #555;
    line-height: 1.6;
}

.steps-container {
    margin-top: 50px;
}

.step-item {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    background-color: var(--amarelo);
    color: var(--preto);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--preto);
}

.step-description {
    color: #555;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

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

.testimonial-card {
    background-color: var(--bege);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--preto);
}

.testimonial-role {
    font-size: 0.9rem;
    color: #666;
}

.faq-container {
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    background-color: var(--bege);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--preto);
}

.faq-icon {
    color: var(--amarelo);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .metrics-card {
        margin-top: 30px;
    }
    
    .step-item {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
}
