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

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

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

.chatbot-demo {
    background-color: var(--bege);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.chatbot-header {
    background-color: #f5f5f5;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.chatbot-dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background-color: #ff5f57;
}

.dot.yellow {
    background-color: #ffbd2e;
}

.dot.green {
    background-color: #28ca41;
}

.chatbot-body {
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
}

.chat-message p {
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 80%;
    margin: 0;
}

.chat-message.bot p {
    background-color: #f0f0f0;
    color: #333;
    border-top-left-radius: 0;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message.user p {
    background-color: var(--amarelo);
    color: var(--preto);
    border-top-right-radius: 0;
}

.chatbot-footer {
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

.lead-badge {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.systems-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--preto);
    text-align: center;
}

.systems-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.6;
}

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

.system-card {
    background-color: var(--bege);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.system-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background-color: var(--amarelo);
    color: var(--preto);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

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

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

.features-container {
    margin-top: 80px;
}

.features-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--preto);
    text-align: center;
}

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

.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.3rem;
    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;
    margin-bottom: 15px;
}

.step-example {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

.chat-bubble {
    padding: 10px 15px;
    border-radius: 18px;
    margin-bottom: 10px;
    max-width: 80%;
}

.chat-bubble.bot {
    background-color: #f0f0f0;
    color: #333;
    border-top-left-radius: 0;
}

.chat-bubble.user {
    background-color: var(--amarelo);
    color: var(--preto);
    border-top-right-radius: 0;
    margin-left: auto;
}

.lead-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
}

.lead-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.lead-id {
    font-weight: 700;
    color: #333;
}

.lead-status {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.lead-status.hot {
    background-color: #ff4d4d;
    color: white;
}

.lead-status.warm {
    background-color: #ffaa33;
    color: white;
}

.lead-status.cold {
    background-color: #33aaff;
    color: white;
}

.lead-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lead-detail {
    font-size: 0.9rem;
    color: #555;
}

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

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

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

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

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

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

.testimonials-title {
    font-size: 1.5rem;
    margin: 60px 0 30px;
    text-align: center;
    color: var(--preto);
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.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;
}

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

.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) {
    .step-item {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .lead-details {
        grid-template-columns: 1fr;
    }
}
