/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #006AFF;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #0051cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 106, 255, 0.3);
}

.btn-link {
    color: #333333;
    background: transparent;
}

.btn-link:hover {
    color: #006AFF;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    color: #006AFF;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #006AFF;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333333;
}

.hero-subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 30px;
}

.hero-cta {
    margin-bottom: 30px;
}

.cta-note {
    font-size: 14px;
    color: #666666;
    margin-top: 15px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

/* Sections comuns */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333333;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666666;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Problema Section */
.problema {
    background-color: #f8f9fa;
}

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

.problema-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.problema-item:hover {
    transform: translateY(-5px);
}

.problema-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e6f0ff;
    color: #006AFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.problema-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333333;
}

.problema-item p {
    color: #666666;
}

/* Solução Section */
.solucao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.solucao-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.solucao-item:hover {
    transform: translateY(-5px);
}

.solucao-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e6f7ff;
    color: #006AFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.solucao-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333333;
}

.solucao-item p {
    color: #666666;
}

/* Funcionamento Section */
.funcionamento {
    background-color: #f8f9fa;
}

.passos {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.passo {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.passo-numero {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #006AFF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.passo-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333333;
}

.passo-content p {
    color: #666666;
}

/* Comparativo Section */
.comparativo-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comparativo-header,
.comparativo-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 20px 30px;
}

.comparativo-header {
    background: #006AFF;
    color: white;
    font-weight: 600;
}

.comparativo-row {
    border-bottom: 1px solid #eee;
}

.comparativo-row:last-child {
    border-bottom: none;
}

.comparativo-movva {
    color: #006AFF;
    font-weight: 600;
}

/* Planos Section */
.planos {
    background-color: #f8f9fa;
}

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

.plano-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

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

.plano-card.popular {
    border: 2px solid #006AFF;
    transform: scale(1.05);
}

.plano-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #006AFF;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plano-header {
    text-align: center;
    margin-bottom: 30px;
}

.plano-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333333;
}

.plano-preco {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.preco {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
}

.periodo {
    color: #666666;
}

.plano-anual {
    color: #666666;
    font-size: 14px;
}

.plano-detalhes {
    margin-bottom: 30px;
}

.plano-detalhes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666666;
}

.plano-detalhes i {
    color: #006AFF;
}

.plano-cta {
    text-align: center;
}

.planos-inclusos {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Sobre Section */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-texto p {
    margin-bottom: 20px;
    color: #666666;
}

blockquote {
    background: #f8f9fa;
    border-left: 4px solid #006AFF;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

blockquote p {
    font-style: italic;
    margin-bottom: 10px;
}

cite {
    font-weight: 600;
    color: #333333;
}

.sobre-imagem img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Depoimentos Section */
.depoimentos {
    background-color: #f8f9fa;
}

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

.depoimento-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.depoimento-texto {
    margin-bottom: 20px;
    font-style: italic;
    color: #666666;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e6f0ff;
    color: #006AFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.autor-info h4 {
    font-weight: 600;
    color: #333333;
}

.autor-info p {
    font-size: 14px;
    color: #666666;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-pergunta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #333333;
}

.faq-pergunta i {
    transition: transform 0.3s ease;
}

.faq-pergunta.active i {
    transform: rotate(180deg);
}

.faq-resposta {
    padding: 0 0 20px;
    color: #666666;
    display: none;
}

.faq-resposta.active {
    display: block;
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(135deg, #006AFF 0%, #0051cc 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-final h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #333333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .plano-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .passo {
        flex-direction: column;
        text-align: center;
    }
    
    .passo-numero {
        margin: 0 auto 15px;
    }
    
    .comparativo-header,
    .comparativo-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
}