* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111827;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background-color: #0a0a0f;
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo h1 .i-logo {
    color: #34b7f1;
    font-weight: 800;
    font-size: 32px;
}

.logo h1 span {
    color: #34b7f1;
}

.logo p {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 2px;
}

.btn-wpp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-wpp:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(52, 183, 241, 0.1), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(52, 183, 241, 0.15);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(52, 183, 241, 0.3);
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero h2 span {
    color: #34b7f1;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0a0a0f;
    transform: translateY(-3px);
}

/* Selos */
.selos {
    padding: 60px 0;
    background: white;
}

.selos .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.selo-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
    padding: 20px;
    transition: all 0.3s ease;
}

.selo-item:hover {
    transform: translateY(-5px);
}

.selo-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.selo-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111827;
}

.selo-item p {
    font-size: 14px;
    color: #6b7280;
}

/* Especialidades */
.especialidades {
    background: #f3f4f6;
    padding: 70px 0;
    text-align: center;
}

.especialidades h2 {
    font-size: 36px;
    margin-bottom: 48px;
    font-weight: 700;
}

.especialidades h2 span {
    color: #34b7f1;
}

.grid-especialidades {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.card {
    background: white;
    padding: 18px 20px;
    border-radius: 16px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e5e7eb;
}

.card i {
    font-size: 22px;
    color: #34b7f1;
    width: 30px;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #34b7f1;
}

/* Provas reais (substitui depoimentos) */
.provas {
    padding: 70px 0;
    background: #ffffff;
    text-align: center;
}

.provas h2 {
    font-size: 36px;
    margin-bottom: 48px;
    font-weight: 700;
}

.provas h2 span {
    color: #34b7f1;
}

.provas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.prova-card {
    background: #f9fafb;
    padding: 32px 24px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.prova-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    border-color: #34b7f1;
}

.prova-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.prova-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.prova-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Como funciona */
.como-funciona {
    padding: 70px 0;
    background: #f3f4f6;
    text-align: center;
}

.como-funciona h2 {
    font-size: 36px;
    margin-bottom: 48px;
    font-weight: 700;
}

.como-funciona h2 span {
    color: #34b7f1;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    background: white;
    padding: 30px 24px;
    border-radius: 24px;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.step-number {
    background: linear-gradient(135deg, #0a0a0f, #1a1a2e);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 16px;
}

.step-icon {
    font-size: 32px;
    color: #34b7f1;
    margin: 12px 0;
    display: block;
}

.step h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.step p {
    color: #6b7280;
    font-size: 14px;
}

/* Contato */
.contato {
    padding: 70px 0;
    background: #0a0a0f;
    color: white;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.info-badge {
    display: inline-block;
    background: rgba(52, 183, 241, 0.15);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 13px;
    margin-bottom: 20px;
}

.info-contato h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.tecnico-nome {
    margin-bottom: 28px;
    color: #9ca3af;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.info-item i {
    font-size: 22px;
    color: #34b7f1;
    min-width: 28px;
    margin-top: 2px;
}

.info-item a {
    color: #34b7f1;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.form-contato {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-contato h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.form-contato p {
    color: #9ca3af;
    margin-bottom: 24px;
    font-size: 14px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 0 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: #34b7f1;
    background: rgba(255,255,255,0.12);
}

.input-group i {
    color: #34b7f1;
    font-size: 16px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #9ca3af;
}

.input-group select {
    cursor: pointer;
}

.input-group select option {
    background: #1a1a2e;
    color: white;
}

.input-group textarea {
    resize: vertical;
    padding: 12px 0;
}

.form-contato button {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-contato button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Footer */
footer {
    background: #0a0a0f;
    color: #9ca3af;
    padding: 48px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.footer-logo h1 {
    font-size: 24px;
    color: white;
}

.footer-logo h1 .i-logo {
    color: #34b7f1;
}

.footer-logo h1 span {
    color: #34b7f1;
}

.footer-logo p {
    font-size: 12px;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #34b7f1;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
}

.footer-bottom p {
    margin: 6px 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .especialidades h2,
    .como-funciona h2,
    .provas h2 {
        font-size: 28px;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}