/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

:root {
    --dark-bg-color-1: #0a0a0a;
    --dark-bg-color-2: #111111;
    --bg-color-1: #141414;
    --bg-color-2: #2b2b2b;
    --title-1-color: #7b7b7b;
    --title-2-color: #ffffff;
    --text-1-color: #ffffff;
    --text-2-color: #dc2616;
    --btn-color: #dc2616;
    --btn-hover-color: #c22416;
}

/* Header e Navegação */
.header {
    background: var(--bg-color-2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

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

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #dc2626;
}

/* Menu de Navegação */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-1-color);
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.nav-link.active {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

/* Menu Hambúrguer (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    .nav-link {
        padding: 15px 20px;
        display: block;
        width: 100%;
    }

    .hamburger {
        /*display: flex;*/
        display: none;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-img {
        height: 35px;
    }
}

/* Ajuste do body para compensar o header fixo */
body {
    padding-top: 70px;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Seção Herói */
.hero {
    background-color: var(--dark-bg-color-2);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero div.container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-headline .highlight {
    color: var(--text-2-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--btn-color);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--btn-hover-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.trust-item i {
    color: var(--btn-color);
}

/* Seção de Dores */
.pain-points {
    padding: 80px 0;
    background: var(--bg-color-1);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--title-2-color);
}

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

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
}

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

.problem-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.problem-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

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

.pain-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--title-2-color);
    /*background: linear-gradient(135deg, #667eea, #764ba2);*/
    background: var(--title-2-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Seção do Método */
.method {
    padding: 80px 0;
    background: var(--bg-color-1);
}

.method .highlight {
    color: var(--text-2-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.step-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--btn-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    /*background: linear-gradient(135deg, #667eea, #764ba2);*/
    background-color: var(--btn-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    margin: 20px 0;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--btn-color);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
}

.step-benefit i {
    color: #27ae60;
    margin-top: 2px;
    flex-shrink: 0;
}

.step-benefit span {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

/* Seção de Oferta Final */
.final-offer {
    padding: 80px 0;
    /*background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);*/
    background-color: var(--dark-bg-color-1);
    color: white;
    text-align: center;
}

.offer-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.offer-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.offer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.benefit-item span {
    font-weight: 500;
}

.cta-section {
    margin-top: 50px;
}

.cta-button.final {
    background: #27ae60;
    font-size: 1.2rem;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.cta-button.final:hover {
    background: #219a52;
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.4);
}

.cta-subtitle {
    margin-top: 15px;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Formulário de Contato */
.contact-form {
    padding: 80px 0;
    background: var(--dark-bg-color-1);
}

.form-content {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c3e50;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.submit-button {
    width: 100%;
    background: #ff6b35;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background: #e55a2b;
}

.form-disclaimer {
    text-align: center;
    margin-block: 15px;
    font-size: 0.9rem;
    color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.btn-submit {
    width: 100%;
    background: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #0056b3;
}

/* Estilos do Formulário */
.contato-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}


/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding-inline: 10%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .pain-points {
        padding-block: 60px;
    }

    .contato-form {
        padding-block: 60px;
    }

    .method {
        padding-block: 60px;
    }

    .clientes-section {
        padding-block: 60px !important;
    }

    .final-offer {
        padding-block: 60px;
    }
}

/* Footer */
.footer {
    background: var(--bg-color-2);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info h4 {
    color: var(--text-2-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-info p {
    color: var(--text-1-color);
    font-size: 12.5px;
}

.footer-contact {
    justify-items: flex-start;
}

.footer-contact p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--btn-color);
}

.redes-sociais h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar {
        justify-content: center;
    }

    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offer-title {
        font-size: 2.2rem;
    }
    
    .trust-indicators {
        gap: 15px;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-content {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .footer-contact {
        justify-items: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .offer-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .problem-item {
        padding: 20px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-title,
.step-card,
.problem-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Hover effects para melhor UX */
.problem-item,
.step-card,
.benefit-item {
    transition: all 0.3s ease;
}

/* Focus states para acessibilidade */
.cta-button:focus,
.submit-button:focus,
input:focus,
select:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Grid de clientes */
/* Seção Clientes */
        .clientes-section {
            padding: 80px 0;
            background-color: var(--bg-color-1);
        }

        .clientes-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .clientes-header h2 {
            font-size: 2.5rem;
            color: var(--title-2-color);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .clientes-header .highlight {
            color: var(--text-2-color);
        }

        .clientes-header p {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Grid com Flexbox */
        .clientes-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            align-items: center;
            margin-bottom: 50px;
        }

        .cliente-item {
            flex: 0 0 auto;
            width: 180px;
            height: 120px;
            background-color: var(--dark-bg-color-1);
            border: 2px solid #ecf0f1;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            cursor: pointer;
        }

        .cliente-item:hover {
            border-color: #e74c3c;
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .cliente-logo {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #7f8c8d;
            text-align: center;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .cliente-item:hover .cliente-logo {
            color: #e74c3c;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .clientes-header h2 {
                font-size: 2rem;
            }
            
            .clientes-grid {
                gap: 20px;
            }
            
            .cliente-item {
                width: 150px;
                height: 100px;
                padding: 15px;
            }
            
            .clientes-cta {
                margin: 0 20px;
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .clientes-grid {
                gap: 15px;
            }
            
            .cliente-item {
                width: 120px;
                height: 80px;
                padding: 10px;
            }
            
            .cliente-logo {
                font-size: 0.8rem;
            }
            
            .clientes-header h2 {
                font-size: 1.8rem;
            }
            
            .clientes-header p {
                font-size: 1rem;
            }
        }