body {
    margin:0;
    font-family: Arial;
    background:#0b0f14;
    color:#fff;
}

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

/* Header */
.header {
    background:#000;
    position:sticky;
    top:0;
}

.header .container {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.header .container img {
    height: 75px;
}
@media (max-width: 768px) {

    .header-btn {
        display: none !important; /* força sumir */
    }
}
/* Header */

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.95)),
                url('imagens/hero.png') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 50px;
}

.hero-content {
    text-align: center;
    max-width: 700px;
}

.topo {
    color: #ff3c00;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
}

.hero h1 span {
    color: #ff3c00;
}

.sub {
    font-size: 18px;
    margin: 15px 0;
}

.info-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.05);
    border: 1px solid #ff3c00;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 22px;
}

.contador {
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;
    color: #ff0000;
}

/* botão com animação */
.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
/* Hero */

.btn {
    display:inline-block;
    background:#ff3c00;
    padding:12px 25px;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    margin-top:15px;
}

.btn.destaque {
    background:#ff0000;
}

.btn.grande {
    padding:18px 35px;
    font-size:20px;
}

/* VIDEO */
.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

/* formato vertical tipo Instagram */
.video-wrapper video {
    width: 100%;
    max-width: 350px; /* largura ideal */
    aspect-ratio: 9 / 16; /* mantém proporção vertical */
    object-fit: cover;

    border-radius: 12px;
    border: 2px solid #222;
    box-shadow: 0 0 25px rgba(0,0,0,0.7);

    transition: 0.3s;
}

.video-wrapper video:hover {
    transform: scale(1.03);
    border-color: #ff3c00;
}

@media (max-width: 768px) {

    .video-wrapper video {
        max-width: 100%;
    }

}
/* VIDEO */

/* Instrutor */
.instrutores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 25px;
}

.card-instrutor {
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #222;
}

.card-instrutor:hover {
    transform: translateY(-8px);
    border: 1px solid #ff3c00;
}

/* destaque cotrim */
.card-instrutor.destaque {
    border: 2px solid #ff3c00;
    box-shadow: 0 0 25px rgba(255,60,0,0.2);
}

.card-instrutor img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 15px auto;
    display: block;
    border-radius: 10px;
}

.card-instrutor h3 {
    margin-bottom: 10px;
}

.bio {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 15px;
}

/* currículo */
.curriculo {
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
}

.curriculo p {
    margin-bottom: 6px;
}

/* separador */
.linha {
    height: 1px;
    background: #222;
    margin: 10px 0;
}
/* Instrutor */


/* Benefícios */
.beneficios {
    background:#111;
    padding:40px 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    gap: 20px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.card {
    background: #616161;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 120px; /* garante altura igual */
}

.card:hover {
    transform: translateY(-10px);
    border: 1px solid #ff3c00;
    background: #1a1a1a;
}
/* Benefícios */

/* Conteúdo Programático */
/* TIMELINE PREMIUM */
.timeline {
    position: relative;
    max-width: 750px;
    margin: 60px auto;
    padding-left: 50px;
}

/* linha */
.timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #ff3c00, transparent);
}

/* item */
.item {
    position: relative;
    margin-bottom: 30px;
}

/* bolinha */
.dot {
    position: absolute;
    left: 10px;
    top: 18px;
    width: 14px;
    height: 14px;
    background: #ff3c00;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3c00;
}

/* card */
.content {
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 20px 20px 20px 25px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: 0.3s;
    position: relative;
}

/* efeito hover */
.content:hover {
    transform: translateX(5px);
    border: 1px solid #ff3c00;
}

/* número */
.numero {
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 12px;
    background: #ff3c00;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
}

@media (max-width: 768px) {

    .timeline {
        padding-left: 35px;
    }

    .timeline::before {
        left: 12px;
    }

    .dot {
        left: 5px;
    }

    .content {
        font-size: 14px;
        padding: 15px 15px 15px 20px;
    }

    .numero {
        font-size: 10px;
    }
}
/* Conteúdo Programático */

/* Local */
.local {
    padding: 70px 0;
    background: linear-gradient(180deg, #0b0f14, #000);
}

.local-box {
    text-align: center;
}

.local h2 {
    margin-bottom: 10px;
}

.local-sub {
    color: #aaa;
    margin-bottom: 10px;
    font-size: 18px;
}

.local-endereco {
    font-size: 20px;
    font-weight: bold;
    color: #ff3c00;
    margin-bottom: 30px;
}

.local-img {
    display: flex;
    justify-content: center;
}

.local-img img {
    width: 100%;
    max-width: 700px;

    border-radius: 12px;
    border: 2px solid #222;

    box-shadow: 
        0 0 40px rgba(0,0,0,0.8),
        0 0 20px rgba(255,60,0,0.15);

    transition: 0.3s;
}

.local-img img:hover {
    transform: scale(1.02);
    border-color: #ff3c00;
}
/* Local */

/* Oferta */
.oferta-box {
    background: linear-gradient(145deg, #111, #000);
    padding: 50px 30px;
    border-radius: 12px;
    border: 2px solid #ff3c00;
    max-width: 500px;
    margin: auto;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    gap: 5px;

}

.preco-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.de {
    text-decoration: line-through;
    color: #888;
}

.por {
    font-size: 50px;
    color: #ff3c00;
    font-weight: bold;
}

.pix {
    font-size: 18px;
    margin-bottom: 10px;
}

.parcelas {
    margin-bottom: 20px;
}

.beneficios-oferta {
    text-align: left;
    margin: 20px 0;
}
/* Oferta */

.whatsapp {
    background:#25d366;
}

.urgencia {
    background:#ff0000;
    text-align:center;
    padding:15px;
    font-weight:bold;
}

.faq .item {
    border-bottom:1px solid #333;
    cursor:pointer;
}

.faq .q {
    padding:15px;
}

.faq .a {
    display:none;
    padding:15px;
    color:#ccc;
}

.img-full {
    width:100%;
}

footer {
    text-align:center;
    padding:20px;
    background:#000;
}