:root {
    --primary: #ffde00; /* Amarelo chamativo */
    --secondary: #00c853; /* Verde WhatsApp */
    --dark: #0f0f0f;
    --darker: #050505;
    --light: #ffffff;
    --clt-color: #007bff;
    --uber-color: #ffde00;
    --text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, .badge {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

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

/* Barra de Urgência */
.top-bar {
    background: linear-gradient(90deg, #ff0000, #ff5500);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1351&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    text-align: center;
}

.badge {
    background-color: var(--primary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 222, 0, 0.4);
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
}

.highlight {
    color: var(--primary);
}

.main-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.h-feature {
    font-weight: 700;
    font-size: 16px;
}

.h-feature i {
    color: var(--secondary);
    margin-right: 8px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--darker);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-desc {
    color: #aaa;
    margin-bottom: 50px;
}

.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.btn-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.clt-card:hover { border-color: var(--clt-color); transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2); }
.uber-card:hover { border-color: var(--uber-color); transform: translateY(-10px); box-shadow: 0 10px 30px rgba(255, 222, 0, 0.2); }

.card-header i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.clt-card .card-header i { color: var(--clt-color); }
.uber-card .card-header i { color: var(--uber-color); }

.btn-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.btn-card p {
    color: #ccc;
    margin-bottom: 30px;
}

.main-btn {
    display: block;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.clt-btn { background-color: var(--clt-color); color: white; }
.uber-btn { background-color: var(--uber-color); color: var(--dark); }

.main-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--dark);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
}

.b-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #aaa;
}

/* Steps Section */
.steps {
    padding: 80px 0;
    background-color: var(--darker);
}

.steps h2 {
    text-align: center;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.step-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(255, 222, 0, 0.2);
}

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

.step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    border: 3px solid var(--darker);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light);
}

.step p strong {
    color: var(--primary);
}

/* Footer */
footer {
    padding: 60px 0;
    background-color: #050505;
    text-align: center;
    border-top: 1px solid #222;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .button-grid { grid-template-columns: 1fr; }
    .hero { padding: 60px 0; }
}
