/* CSS para Páginas de Serviço - Landing Pages */

/* Reset e Base */
body {
    padding-top: 80px;
    font-family: 'Montserrat', sans-serif;
    color: #1e293b;
    line-height: 1.6;
}

/* Header - Mesmo estilo do index */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    padding: 1rem 0;
}

.landing-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-header .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.landing-header .logo .logo-image {
    height: 70px;
    width: auto;
    transition: transform 0.2s;
}

.landing-header .logo:hover .logo-image {
    transform: scale(1.05);
}

/* Botão hambúrguer para páginas de serviço */
.landing-header .hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

.landing-header .hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1e293b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.landing-header .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.landing-header .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.landing-header .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.landing-header nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.landing-header nav a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0.2rem;
    border-bottom: 2px solid transparent;
    transition: border 0.2s, color 0.2s;
}

.landing-header nav a:hover, 
.landing-header nav a.active {
    border-bottom: 2px solid #1e293b;
}

.landing-header .cta-nav {
    background: #1e293b;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.landing-header .cta-nav:hover {
    background: #334155;
}

/* Hero Section Melhorado */
.hero-landing {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    padding: 2rem 0 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0f172a;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #475569;
    font-weight: 400;
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 1rem;
    color: #374151;
}

.hero-visual {
    text-align: center;
    position: relative;
}

/* Landing Page Preview */
.landing-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.preview-header {
    background: #f1f5f9;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.preview-dots span:nth-child(1) { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #f59e0b; }
.preview-dots span:nth-child(3) { background: #10b981; }

.preview-content {
    padding: 2rem;
}

.preview-hero {
    margin-bottom: 2rem;
}

.preview-title {
    height: 24px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    width: 80%;
}

.preview-subtitle {
    height: 16px;
    background: #f1f5f9;
    border-radius: 4px;
    width: 60%;
}

.preview-form {
    margin-bottom: 2rem;
}

.form-field {
    height: 40px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.form-button {
    height: 40px;
    background: #1e293b;
    border-radius: 6px;
    width: 100%;
}

.preview-chat {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.chat-bubble {
    width: 50px;
    height: 50px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Site Institucional Preview */
.institutional-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
}

.preview-nav {
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.nav-item {
    height: 8px;
    background: #cbd5e1;
    border-radius: 4px;
    flex: 1;
}

.preview-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.section-card {
    height: 60px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* E-commerce Preview */
.ecommerce-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.preview-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem;
}

.product-card {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.product-image {
    height: 80px;
    background: #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.product-info {
    padding: 0.75rem;
}

.product-title {
    height: 12px;
    background: #cbd5e1;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    width: 80%;
}

.product-price {
    height: 16px;
    background: #1e293b;
    border-radius: 4px;
    width: 60%;
}

.preview-cart {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #10b981;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.authority-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sales-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #1e293b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: #334155;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-hero-secondary {
    background: transparent;
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    border: 2px solid #1e293b;
    cursor: pointer;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: #1e293b;
    color: white;
    transform: translateY(-2px);
}

/* Problema e Solução */
.problem-solution {
    padding: 6rem 0;
    background: white;
}

.problem-solution .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.problem-section {
    margin-bottom: 4rem;
}

.problem-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #0f172a;
}

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

.problem-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
}

.problem-card p {
    color: #475569;
    line-height: 1.6;
}

.solution-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #0f172a;
}

.solution-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.solution-visual {
    text-align: center;
}

.conversion-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.funnel-step {
    background: #1e293b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    min-width: 150px;
    text-align: center;
}

.funnel-arrow {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: bold;
}

.solution-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
}

.solution-text p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-benefits {
    list-style: none;
    padding: 0;
}

.solution-benefits li {
    padding: 0.5rem 0;
    color: #374151;
    font-weight: 500;
}

/* Estatísticas */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.stats-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.stats-section .subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    color: #cbd5e1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.stat-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Benefícios */
.beneficios-landing {
    padding: 6rem 0;
    background: white;
}

.beneficios-landing h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #0f172a;
}

.beneficios-landing .subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.beneficios-grid-landing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.beneficio-card-landing {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

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

.beneficio-icon-landing {
    width: 64px;
    height: 64px;
    background: #1e293b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.beneficio-card-landing:hover .beneficio-icon-landing {
    background: #334155;
    transform: scale(1.1);
}

.beneficio-card-landing h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
}

.beneficio-card-landing p {
    color: #475569;
    line-height: 1.6;
}

/* Argumentos de Autoridade */
.authority-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.authority-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #0f172a;
}

.authority-section .subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.authority-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

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

.authority-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.authority-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
}

.authority-card p {
    color: #475569;
    line-height: 1.6;
}

/* Como Funciona */
.como-funciona-landing {
    padding: 6rem 0;
    background: white;
}

.como-funciona-landing h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #0f172a;
}

.como-funciona-landing .subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-landing {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-step-landing {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-step-landing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.timeline-connector {
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, #1e293b 0%, #64748b 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: #1e293b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-step-landing:hover .timeline-number {
    background: #334155;
    transform: scale(1.1);
}

.timeline-step-landing h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.timeline-step-landing p {
    color: #475569;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-benefit {
    color: #fbbf24;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #fbbf24;
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    border: 2px solid white;
    cursor: pointer;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 1.5rem;
}

/* Footer */
.footer-landing {
    background: #0f172a;
    color: #64748b;
    padding: 2rem 0;
    text-align: center;
}

.footer-landing a {
    color: #cbd5e1;
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #0f172a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-list details {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-list details:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-list details[open] {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-list summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #0f172a;
    position: relative;
    list-style: none;
}

.faq-list summary:hover {
    background: #f8fafc;
}

.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
    padding: 0 1.5rem 1.5rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade */
@media (max-width: 900px) {
    .landing-header .container { 
        padding: 0 1rem;
    }
    
    .landing-header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .landing-header .hamburger-menu {
        display: flex;
    }
    
    .landing-header nav.active {
        right: 0;
    }
    
    .landing-header nav a {
        font-size: 1.25rem;
        padding: 1rem 0;
    }
    
    .landing-header nav a:last-child {
        margin-top: 1rem;
    }
    
    .landing-header nav a:hover, 
    .landing-header nav a.active {
        border-bottom: none;
    }
    
    .landing-header .cta-nav {
        margin-top: 1rem;
        padding: 1rem 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .solution-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .timeline-landing {
        gap: 1.5rem;
    }
    
    .timeline-step-landing {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .beneficios-landing h2,
    .stats-section h2,
    .como-funciona-landing h2,
    .cta-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .hero-cta, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .landing-header .container {
        padding: 0 1rem;
    }
    
    .landing-header .hamburger-menu {
        display: flex;
    }
    
    .landing-header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .landing-header nav.active {
        right: 0;
    }
    
    .landing-header nav a {
        font-size: 1.25rem;
        padding: 1rem 0;
    }
    
    .landing-header nav a:last-child {
        margin-top: 1rem;
    }
    
    .landing-header nav a:hover, 
    .landing-header nav a.active {
        border-bottom: none;
    }
    
    .landing-header .cta-nav {
        margin-top: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 600px) {
    .landing-header .container {
        padding: 0 1rem;
    }
    
    .landing-header .logo {
        font-size: 1.4rem;
    }
    
    .landing-header .logo .logo-image {
        height: 40px;
    }
    
    .landing-header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .landing-header nav.active {
        right: 0;
    }
    
    .landing-header nav a {
        font-size: 1.25rem;
        padding: 1rem 0;
    }
    
    .landing-header nav a:last-child {
        margin-top: 1rem;
    }
    
    .landing-header nav a:hover, 
    .landing-header nav a.active {
        border-bottom: none;
    }
    
    .landing-header .cta-nav {
        margin-top: 1rem;
        padding: 1rem 2rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficios-grid-landing {
        grid-template-columns: 1fr;
    }
    
    .authority-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .landing-preview {
        max-width: 300px;
    }
    
    .institutional-preview {
        max-width: 350px;
    }
    
    .ecommerce-preview {
        max-width: 400px;
    }
    
    .preview-products {
        grid-template-columns: 1fr;
    }
    
    .conversion-funnel {
        gap: 0.5rem;
    }
    
    .funnel-step {
        min-width: 120px;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* Blog Hero Preview */
.blog-preview {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px -8px rgba(16, 24, 40, 0.12);
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.blog-preview .preview-header {
    background: #f1f5f9;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}
.blog-preview .preview-dots {
    display: flex;
    gap: 0.5rem;
}
.blog-preview .preview-dots span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.blog-preview .preview-dots span:nth-child(1) { background: #ef4444; }
.blog-preview .preview-dots span:nth-child(2) { background: #f59e0b; }
.blog-preview .preview-dots span:nth-child(3) { background: #10b981; }
.blog-preview .preview-content {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.blog-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.2rem;
}
.blog-subtitle {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1rem;
}
.blog-cards {
    display: flex;
    gap: 1rem;
    width: 100%;
}
.blog-card {
    background: #f8fafc;
    border-radius: 10px;
    box-shadow: 0 2px 8px -2px rgba(16, 24, 40, 0.08);
    padding: 1rem 0.8rem;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s, border 0.2s;
}
.blog-card:hover {
    box-shadow: 0 4px 16px -4px rgba(16, 24, 40, 0.16);
    border: 1px solid #38bdf8;
}
.blog-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0ea5e9;
    margin-bottom: 0.3rem;
}
.blog-card-desc {
    font-size: 0.95rem;
    color: #334155;
}
@media (max-width: 900px) {
    .blog-preview { max-width: 100%; }
    .blog-cards { flex-direction: column; gap: 0.7rem; }
} 

/* === PADRONIZAÇÃO DO BOTÃO .btn-primary === */
.btn-primary {
    background: #1e293b;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(30,41,59,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    font-size: 1.08rem;
}
.btn-primary:hover {
    background: #2563eb;
    color: #fff;
} 

/* === PADRONIZAÇÃO DO BOTÃO .btn-primary NO HEADER === */
.landing-header nav a.btn-primary, .landing-header .btn-primary {
    background: #1e293b !important;
    color: #fff !important;
    padding: 0.7rem 1.7rem !important;
    border: none !important;
    border-radius: 32px !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s !important;
    box-shadow: 0 2px 8px rgba(30,41,59,0.07) !important;
    display: inline-block !important;
}
.landing-header nav a.btn-primary:hover, .landing-header .btn-primary:hover {
    background: #2563eb !important;
    color: #fff !important;
} 