    .inicio {
        padding-top: 10%;
    }

/* VIDEO  */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* vídeo de fundo */
#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* cobre toda a área mantendo proporção */
    z-index: -1;
    /* atrás do conteúdo */
}

/* container do conteúdo */
.hero {
    position: relative;
    min-height: 100vh;
    /* ocupe a tela */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.25);
    /* leve overlay para legibilidade */
}

.hero .card {
    max-width: 900px;
    background: rgba(0, 0, 0, 0.45);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

h1 {
    font-size: clamp(1.6rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

p {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
}

/* Fallback para telas pequenas: esconde o vídeo e usa imagem */
@media (max-width: 768px) {
    .hero {
        /* background-image: url('../img/41682.jpg');  coloque aqui sua imagem fallback */
        background-size: cover;
        background-position: center;
    }
}





/* FIM VIDEO  */








body {
    margin: 0;
    font-family: "Raleway", sans-serif;

    /*       padding-top: 90px;espaço para compensar altura do menu fixo */
}


/* Barra superior */
.top-bar {
    background: #000;
    color: #ccc;
    font-size: 15px;
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;


    position: relative;
    top: 100px;
    left: 0;
    width: 100%;
    z-index: 1300;
}

.top-bar a {
    color: #ccc;
    margin: 0 6px;
    text-decoration: none;
    transition: 0.3s;
}

.top-bar a:hover {
    color: #ff4500;
}

/* Ícones sociais no mobile */
.social-icons {
    display: none;
    gap: 15px;
}

.social-icons a {
    font-size: 18px;
    color: #ccc;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff3b6f;
}

/* Navbar */

nav {
    background: rgb(255, 255, 255, 0.9);
    /* meio transparente */

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);

    position: fixed;
    /* fixa no topo */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* garante que fica acima do conteúdo */
}



.logo img {
    height: 70px;
}

/* Menu */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 40px;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: #d40000;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #910202;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #910202;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Ações à direita */
.actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.orcamento {
    background: #d60101;
    padding: 5px 15px;
    border-radius: 9px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.orcamento:hover {
    background: #ff1744;
}

.dots {
    font-size: 39px;
    color: #b90000;
    cursor: pointer;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-toggle {
    font-size: 28px;
    color: #b90000;
    cursor: pointer;
    transition: transform 0.3s;
    display: none;
    /* escondido no desktop */
}

.menu-toggle.open {
    transform: rotate(90deg);
}

/* Responsivo */
@media (max-width: 768px) {

    .inicio {
        padding-top: 30%;
    }

    .escoder {
        display: none;
    }

    .top-bar {
        font-size: 12px;
        padding: 10px 20px;
        top: 90px;
    }

    /* Esconde o texto das redes sociais e mostra ícones */
    .social {
        display: none;
    }

    .social-icons {
        display: flex;
    }

    nav {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(17, 17, 17, 0.85);
        backdrop-filter: blur(8px);
        padding: 30px 0;
        gap: 25px;
        display: none;
        text-align: center;
        opacity: 0;
        transform: translateY(-30px);
        transition: all 0.4s ease;
    }

    nav ul.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    nav ul li {
        opacity: 0;
        transform: translateY(10px);
        animation: fadeInUp 0.5s forwards;
    }

    nav ul.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    nav ul.active li:nth-child(2) {
        animation-delay: 0.2s;
    }

    nav ul.active li:nth-child(3) {
        animation-delay: 0.3s;
    }

    nav ul.active li:nth-child(4) {
        animation-delay: 0.4s;
    }

    nav ul.active li:nth-child(5) {
        animation-delay: 0.5s;
    }

    nav ul.active li:nth-child(6) {
        animation-delay: 0.6s;
    }

    nav ul.active li:nth-child(7) {
        animation-delay: 0.7s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    nav ul li a {
        font-size: 20px;
    }

    .orcamento {
        padding: 10px 20px;
        font-size: 16px;
    }

    /* Mostrar ícone do menu só no mobile */
    .menu-toggle {
        display: block;
    }
}