/* ========== RESET E BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    color: #fff;
}

/* ========== HEADER / MENU ========== */
.header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.header img {
    width: 60px;
}

.header a {
    color: #fff;
    font-size: 15px;
}

.header a:hover {
    color: #c51111;
    font-size: 15px;
    transition: all 0.1s ease-in-out;
}

/* ========== CONTEÚDO PRINCIPAL ========== */
.servicos-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    min-height: 100vh;
    position: relative;
    z-index: 2;
    text-align: center;
}

.servicos-intro img {
    max-width: 200px;
    margin: 20px 0;
}

.servicos-intro p {
    max-width: 700px;
    font-size: 15px;
    line-height: 1.6;
}

/* ========== VÍDEO DE FUNDO ========== */
.caixa-video-servico {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.caixa-video-servico video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== MÁSCARA SOBRE O VÍDEO ========== */
.mascara {
    height: 100%;
    width: 100%;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    position: fixed;
    top: 0;
    left: 0;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
    .servicos-intro {
        padding: 60px 20px;
    }

    .servicos-intro img {
        max-width: 150px;
    }
}
