:root {
    --bg-color: #050214;
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
    --accent-purple: #8a2be2;
    --accent-blue: #00d2ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 50% -20%, #2a1052 0%, transparent 50%),
        radial-gradient(circle at 100% 40%, #100a3d 0%, transparent 40%);
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header & Logo */
header {
    padding: 30px 10%;
    text-align: center;
}

.logo img {
  height: 70px;
  width: auto;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

h1 {
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.subtitle {
    color: var(--text-dim);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
}

/* Button */
.btn-demo {
    background-color: #fff;
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}


/* Estilos das Novas Seções */
.how-it-works {
    padding: 80px 10%;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.05) 0%, transparent 10%);
}

.header-compact {
    text-align: center;
    margin-bottom: 50px;
}

.badge-line {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 10px;
}

.section-title-compact {
    font-size: 2.5rem;
    font-weight: 700;
}

.steps-compact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-visual {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.step-dot {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.step-line {
    height: 1px;
    background: linear-gradient(to right, var(--accent-purple), transparent);
    flex-grow: 1;
    margin-left: 10px;
    opacity: 0.4;
}

.step-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

.step-info p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.4;
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
    .steps-compact-container {
        flex-direction: column;
    }
    .step-line {
        display: none;
    }
    .step-item {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        margin-bottom: 20px;
    }
    .step-visual {
        width: auto;
        margin-bottom: 0;
    }
}

/* Grid de Informações e Garantias */
.aliens-info {
    padding: 30px 10% 10px;
}

.grid-info {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
}

.info-card.highlight {
    background: linear-gradient(145deg, rgba(138, 43, 226, 0.1), transparent);
    border-color: rgba(138, 43, 226, 0.3);
}

.badge-small {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-purple);
    border-radius: 50px;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    margin-top: 25px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-dim);
}

.check-list i {
    color: #00ff88; /* Verde sucesso */
    font-size: 20px;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.target-item {
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 12px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid transparent;
}

.target-item i {
    font-size: 24px;
    color: var(--accent-blue);
}

.cta-final {
    margin-top: 80px;
    text-align: center;
    font-size: 20px;
    color: var(--text-dim);
}

.cta-final strong {
    color: #fff;
    border-bottom: 2px solid var(--accent-purple);
}

@media (max-width: 900px) {
    .grid-info { grid-template-columns: 1fr; }
    .target-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer { 
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Logo */
.footer-logo img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(146, 17, 238, 0.8));
}
/* Texto */
.footer-text p {
  font-size: 0.95rem;
  text-align: center;
  font-weight: 500;
  margin-top: 1.8rem;
  background: linear-gradient(to bottom, #9211ee 50%, #1929f0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding-bottom: 80px;
}