.play-btn.reset {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* Ajuste proporção e corte centralizado das imagens da galeria */
.galeria img {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}
/* --- Ajustes solicitados --- */
.video-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 0 auto;
    display: flex;
    justify-content: center;
}
.video-wrapper video {
    width: 100%;
    border-radius: 0;
    background: #000;
    display: block;
    margin: 0 auto;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(110,24,58,0.85);
    color: #ffd700;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    font-size: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px #6e183a55;
    transition: background 0.2s;
    z-index: 2;
    padding: 0;
}
.play-btn::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 26px solid #ffd700;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 6px;
}
.cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ffd700 0%, #ffb347 100%);
    color: #6e183a;
    font-weight: bold;
    font-size: 1.25rem;
    padding: 20px 10px;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 2px 12px #ffd70044;
    transition: background 0.2s, color 0.2s;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.descricao {
    text-align: justify;
}
.texto-extra {
    text-align: justify;
}
@media (max-width: 600px) {
    h1 {
        font-size: 1.4rem !important;
    }
    .sub {
        font-size: 1.1rem !important;
    }
    .cta-btn {
        font-size: 1.1rem;
        padding: 20px 10px;
        min-width: 180px;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}
