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

body {
    font-family: Arial, sans-serif;
    background: #faf7ff;
    color: #2d2d2d;
}

/* HERO */
.hero {
    background: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(147,51,234,0.7);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}

/* CONTAINER */
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

/* CARD */
.card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* INPUT */
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ccc;
}

/* BUTTON */
button {
    width: 100%;
    padding: 14px;
    background: #9333ea;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* QUIZ */
.option {
    display: flex;
    align-items: center;
    padding: 12px;
    margin: 8px 0;
    border-radius: 10px;
    background: #f3e8ff;
    cursor: pointer;
    transition: all 0.2s;
}

.option:hover {
    background: #e9d5ff;
}

.option input {
    display: none;
}

.option span {
    flex: 1;
}

/* SELEÇÃO */
.option input:checked + span {
    font-weight: bold;
    color: #6d28d9;
}

/* RESULTADO */
#resultado {
    display: none;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-top: 20px;
}

/* CTA */
.venda {
    text-align: center;
    background: linear-gradient(135deg,#9333ea,#db2777);
    color: white;
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
}
/* CURSO */
.curso {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

/* CARD DE VÍDEO */
.video-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* VÍDEO RESPONSIVO */
.video-card iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

/* TÍTULO */
.video-card p {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

/* FOOTER */
.footer {
    background: radial-gradient(circle at top, #2e1065, #0f0a1f);
    color: white;
    padding: 70px 20px 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* GLOW FUNDO */
.footer::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: #9333ea;
    filter: blur(150px);
    opacity: 0.25;
    top: -200px;
    left: -200px;
}

/* CONTAINER */
.footer-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* MARCA */
.footer-brand h2 {
    font-size: 30px;
}

.footer-brand p {
    color: #c4b5fd;
    margin-top: 5px;
}

/* PROVA SOCIAL */
.footer-proof {
    margin: 20px 0;
    color: #e9d5ff;
    font-size: 14px;
}

/* LINKS */
.footer-links {
    margin: 30px 0;
}

.footer-links a {
    color: #ddd6fe;
    margin: 0 15px;
    text-decoration: none;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #9333ea;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

/* REDES */
.footer-social {
    margin: 30px 0;
}

.footer-social a {
    display: inline-block;
    margin: 0 12px;
    transition: 0.3s;
}

.footer-social svg {
    width: 24px;
    height: 24px;
    fill: #c4b5fd;
    transition: 0.3s;
}

.footer-social a:hover svg {
    fill: white;
    transform: scale(1.2);
}

/* CTA */
.footer-cta p {
    margin-bottom: 10px;
    color: #e9d5ff;
}

/* BOTÃO PULSANTE */
.footer-cta button {
    background: linear-gradient(135deg,#9333ea,#db2777);
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    position: relative;
}

/* ANIMAÇÃO */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(147,51,234,0.7); }
    70% { box-shadow: 0 0 0 20px rgba(147,51,234,0); }
    100% { box-shadow: 0 0 0 0 rgba(147,51,234,0); }
}

/* COPYRIGHT */
.footer-copy {
    margin-top: 40px;
    font-size: 12px;
    color: #a78bfa;
}