/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #32475c;
    --primary-dark: #32475c;
    --secondary: #2ecc71;
    --secondary-dark: #27ae60;
    --accent: #e67e22;
    --accent-dark: #d35400;
    --dark: #34495e;
    --light: #ecf0f1;
    --gray: #95a5a6;
    --danger: #e74c3c;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--accent);
    color: var(--white);
}

.btn-large:hover {
    background-color: var(--accent-dark);
    color: var(--white);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Header e Navegação */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary);
}

.tagline {
    font-size: 0.9rem;
    color: var(--gray);
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--dark);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: left;
}

.hero-content h2:after {
    display: none;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.dashboard-preview {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
    width: 100%;
    max-width: 500px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light);
}

.dashboard-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.2rem;
}

.dashboard-date {
    color: var(--gray);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card {
    background-color: var(--light);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-card.highlight {
    background-color: var(--secondary);
    color: var(--white);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: inherit;
    opacity: 0.8;
}

/* Problema e Solução */
.problem-solution {
    background-color: var(--white);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.problem-box,
.solution-box {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.problem-box {
    background-color: var(--light);
    border-left: 5px solid var(--danger);
}

.solution-box {
    background-color: var(--light);
    border-left: 5px solid var(--secondary);
}

.problem-list li,
.solution-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.problem-list li:last-child,
.solution-list li:last-child {
    margin-bottom: 0;
}

.icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.problem-list strong,
.solution-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Funcionalidades */
.features {
    background-color: var(--light);
}

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

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.feature-card.highlight {
    border: 2px solid var(--primary);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--gray);
    flex-grow: 1;
}

/* Destaque WhatsApp */
.whatsapp-highlight {
    background-color: var(--white);
}

.whatsapp-demo {
    display: flex;
    align-items: center;
    gap: 40px;
}

.phone-frame {
    background-color: var(--light);
    border-radius: 30px;
    padding: 15px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 350px;
    border: 8px solid var(--dark);
}

.phone-header {
    background-color: #075E54;
    color: var(--white);
    padding: 10px 15px;
    border-radius: 15px 15px 0 0;
}

.phone-contact {
    font-weight: 600;
}

.chat-container {
    background-color: #E5DDD5;
    padding: 15px;
    border-radius: 0 0 15px 15px;
    height: 500px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 15px;
    max-width: 80%;
    position: relative;
}

.chat-message.system {
    margin-left: auto;
    background-color: #DCF8C6;
    border-radius: 15px 0 15px 15px;
    padding: 10px 15px;
}

.chat-message.client {
    margin-right: auto;
    background-color: var(--white);
    border-radius: 0 15px 15px 15px;
    padding: 10px 15px;
}

.message-content {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.message-time {
    font-size: 0.7rem;
    text-align: right;
    color: var(--gray);
}

.chat-date {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    margin: 20px 0;
}

.whatsapp-benefits {
    flex: 1;
}

.whatsapp-benefits h3 {
    margin-bottom: 20px;
}

.whatsapp-benefits ul {
    margin-bottom: 30px;
}

.whatsapp-benefits li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.whatsapp-benefits li:before {
    content: '✓';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.testimonial-mini {
    background-color: var(--light);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
    font-style: italic;
}

.testimonial-author {
    margin-top: 10px;
    text-align: right;
}

/* Benefícios */
.benefits {
    background-color: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card.highlight {
    border: 2px solid var(--secondary);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit-card.highlight .benefit-value {
    color: var(--secondary);
}

/* Depoimentos */
.testimonials {
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content:before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -15px;
    color: var(--primary);
    opacity: 0.2;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gray);
    margin-right: 15px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Preço e Garantia */
.pricing {
    background-color: var(--light);
}

.pricing-box {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.price {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
}

.period {
    font-size: 1.2rem;
    color: var(--gray);
    margin-left: 5px;
}

.price-features {
    margin-bottom: 30px;
}

.price-features ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.price-features li {
    margin-bottom: 10px;
}

.price-cta {
    margin-top: 30px;
}

.guarantee {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* FAQ */
.faq {
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.faq-item p {
    color: var(--gray);
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-final h2 {
    color: var(--white);
}

.cta-final h2:after {
    background-color: var(--white);
}

.cta-final p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-note {
    font-size: 0.9rem !important;
    margin-top: 15px !important;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer h3,
.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--light);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--light);
    font-size: 0.9rem;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .features-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-demo {
        flex-direction: column;
    }

    .phone-frame {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-content h2 {
        text-align: center;
    }

    .problem-solution-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {

    .features-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .btn-large {
        width: 100%;
    }
}