/* Estilos Gerais */
:root {
    --primary-color: #ff9100;
    --secondary-color: #123d70;
    --accent-color: #ff9100;
    --dark-color: #123d70;
    --light-color: #f8fafc;
    --gray-color: #94a3b8;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0; /* Padding padrão para todas as seções */
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8; /* Cor alterada para um tone de azul para diferenciar */
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #059669; /* Cor alterada para um tone de verde para diferenciar */
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.small-text {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.highlight-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 3rem 0;
    color: var(--primary-color);
}

/* WAVE DIVIDER CSS REMOVIDO AQUI */
/* .wave-divider { ... } */


/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 150px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.cta-header {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px; /* Ajustado padding superior para dar espaço ao header fixo */
    background: linear-gradient(135deg, #123d70 0%, #ff9100 100%);
    color: white;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero .subheadline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-cta {
    margin-top: 2rem;
}

/* Problem Section */
.problem {
    background-color: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.problem-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.problem-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.transition-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 3rem;
    color: var(--secondary-color);
}

/* Solution Section */
.solution {
    background-color: var(--light-color);
}

.solution-demo {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 3rem;
}

.solution-image {
    flex: 1;
}

.solution-steps {
    flex: 1;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Benefits Section */
.benefits {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    background-color: var(--light-color);
}

.features-tabs {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 20px;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.tab-btn i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-btn.active i {
    color: white;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.tab-text {
    flex: 1;
}

.tab-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.tab-text li {
    margin-bottom: 0.5rem;
    position: relative;
}

.tab-text li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.tab-image {
    flex: 1;
    text-align: center;
}

/* Competitive Section */
.competitive {
    background-color: white;
}

.comparison-table {
    max-width: 900px;
    margin: 3rem auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-header {
    display: flex;
}

.header-cell {
    background-color: var(--dark-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.header-cell h3 {
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.secondary {
    background-color: var(--gray-color);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.comparison-cell:first-child {
    background-color: #f8fafc;
}

.comparison-cell i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.comparison-cell:nth-child(2) i {
    color: var(--gray-color);
}

/* Seção Contato / Captura de Lead */
.coming-soon { /* Esta classe agora se aplica à seção #contato no HTML */
    background-color: white;
    text-align: center;
    padding: 80px 0; /* Restaurado padding padrão */
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.coming-soon-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 2rem 0;
}

/* Estilos para o iframe do Google Forms dentro da seção de contato */
#contato iframe {
    width: 100%;
    min-height: 600px; /* Altura mínima para o formulário ser visível, ajuste conforme necessário */
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}


/* FAQ Section */
.faq {
    background-color: var(--light-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px; /* Ajuste conforme o tamanho do conteúdo */
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #123d70 0%, #ff9100 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: white;
}

.final-cta .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    margin-top: 3rem;
}

.cta-buttons .small-text {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 140px 0 80px; /* Mantido ajuste para header fixo */
    }

    .hero .container {
        flex-direction: column;
    }

    .solution-demo {
        flex-direction: column;
    }

    .tab-content {
        flex-direction: column;
    }

    /* Removido padding-bottom extra para as waves */
    /* .hero, .solution, .features, .coming-soon {
        padding-bottom: 80px;
    } */
}

@media (max-width: 768px) {
    .main-nav, .cta-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .pricing-card.popular {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .comparison-header, .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-bottom: 1px solid #e2e8f0;
    }

    .comparison-row:last-child .comparison-cell:last-child {
        border-bottom: none;
    }
}

/* Atualização da cor do Final CTA */
.final-cta {
    background: linear-gradient(135deg, #123d70 0%, #ff9100 100%);
}