* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

/* HERO */
.hero {
    background: linear-gradient(135deg, #00D4FF 0%, #7B2CBF 100%);
    color: white;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.logos .logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    max-width: 200px;
}

.logos .plus {
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.hero-icons span {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-icons i {
    font-size: 1.1rem;
}

.hero-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-form input,
.hero-form select {
    padding: 16px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.2s;
    font-family: inherit;
}

.hero-form select {
    cursor: pointer;
    appearance: none;
    background-color: #fafafa;
    background-image: url('data:image/svg+xml,<svg width="12" height="8" xmlns="http://www.w3.org/2000/svg"><path d="M1 1l5 5 5-5" stroke="%23666" stroke-width="2" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.hero-form button {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

.hero-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99,102,241,0.4);
}

/* DOR */
.dor {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.dor h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.dor-grid {
    display: grid;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.dor-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 2px solid #f1f5f9;
    transition: all 0.3s;
}

.dor-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.15);
    border-color: #c7d2fe;
}

.dor-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: #6366f1;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: 16px;
}

.dor-item h4 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 600;
}

.dor-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* NÚMEROS */
.numeros {
    padding: 80px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.numeros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></svg>');
    pointer-events: none;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.numero-item {
    text-align: center;
    color: white;
}

.numero-valor {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.numero-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* SOLUÇÃO */
.solucao {
    padding: 100px 24px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 60px;
    font-weight: 400;
}

.solucao-intro {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.solucao-produto {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 48px;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.solucao-produto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00D4FF 0%, #7B2CBF 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.solucao-produto:hover::before {
    transform: scaleX(1);
}

.solucao-produto:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.12);
    border-color: #cbd5e1;
}

.solucao-logo {
    height: 60px;
    width: auto;
    max-width: 220px;
    margin-bottom: 32px;
    display: block;
}

.destaque {
    font-size: 1.15rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 24px;
}

.produto-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.produto-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #475569;
}

.produto-features i {
    color: #10b981;
    font-size: 1.1rem;
}

.solucao-resultado {
    max-width: 1200px;
    margin: 0 auto;
}

.solucao-resultado h3 {
    font-size: 2rem;
    margin-bottom: 48px;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
}

.resultado-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.resultado-imagem {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.resultado-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.beneficios {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.beneficio {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    padding: 28px 32px;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #4338ca;
    border: 1px solid #c7d2fe;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.beneficio i {
    font-size: 1.3rem;
}

.beneficio:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.15);
}

/* COMO FUNCIONA */
.como-funciona {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    gap: 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(99,102,241,0.3);
    position: relative;
    z-index: 2;
}

.timeline-line {
    height: 4px;
    background: linear-gradient(90deg, #c7d2fe 0%, #ddd6fe 100%);
    position: relative;
    top: -52px;
}

.timeline-content h4 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* PARA QUEM */
.para-quem {
    padding: 100px 24px;
    background: white;
}

.para-quem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.coluna-sim, .coluna-nao {
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.coluna-sim {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 3px solid #86efac;
}

.coluna-sim:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(34,197,94,0.2);
}

.coluna-nao {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 3px solid #fca5a5;
}

.coluna-nao:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(239,68,68,0.2);
}

.coluna-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.coluna-header i {
    font-size: 2.5rem;
}

.coluna-sim .coluna-header i {
    color: #16a34a;
}

.coluna-nao .coluna-header i {
    color: #dc2626;
}

.para-quem h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.coluna-sim h3 {
    color: #166534;
}

.coluna-nao h3 {
    color: #991b1b;
}

.para-quem ul {
    list-style: none;
}

.para-quem li {
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.para-quem li:last-child {
    border-bottom: none;
}

.coluna-sim li {
    color: #166534;
}

.coluna-nao li {
    color: #991b1b;
}

.para-quem li i {
    font-size: 1.2rem;
}

/* AUTORIDADE */
.autoridade {
    padding: 100px 24px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.autoridade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.autoridade .item {
    text-align: center;
    padding: 40px 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.autoridade .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(99,102,241,0.15);
    border-color: #c7d2fe;
}

.autoridade .item-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: #6366f1;
}

.autoridade h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.autoridade p {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
}

/* CLIENTES */
.clientes {
    padding: 100px 24px;
    background: white;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.cliente-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #fafafa;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s;
    min-height: 120px;
}

.cliente-logo:hover {
    background: white;
    border-color: #e2e8f0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.cliente-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s;
}

.cliente-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* CTA FINAL */
.cta-final {
    padding: 100px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></svg>');
    pointer-events: none;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta-final > p {
    font-size: 1.3rem;
    margin-bottom: 48px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #6366f1;
    padding: 20px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 48px 24px 24px;
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.footer-content .logo-footer {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.footer-content .slogan {
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

.obrigado {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 40px 24px;
}

.obrigado-content {
    text-align: center;
    max-width: 600px;
}

.obrigado h1 {
    font-size: 3rem;
    margin-bottom: 32px;
    font-weight: 700;
}

.obrigado p {
    font-size: 1.4rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 20px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 24px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}

.form-error {
    display: none;
    background-color: #ffe6e6;
    color: #b00020;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .hero-form {
        padding: 28px;
    }
    
    .logos .logo {
        height: 35px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .dor h2, .cta-final h2 {
        font-size: 1.75rem;
    }
    
    .solucao-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .solucao-produto {
        padding: 32px;
    }
    
    .solucao-logo {
        height: 35px;
    }
    
    .resultado-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .beneficios {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-icon {
        margin-bottom: 16px;
    }
    
    .para-quem-grid {
        grid-template-columns: 1fr;
    }
    
    .numero-valor {
        font-size: 3rem;
    }
    
    .dor, .solucao, .como-funciona, .para-quem, .autoridade, .cta-final, .numeros {
        padding: 60px 20px;
    }
}
