
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
    padding-top: 50px; /* Para o header fixo */
}

/* Cabeçalho */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 20px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Menu padrão */
header nav ul {
    position: relative;
    left: 150%;
    display: flex;
    list-style: none;
    gap: 20px;
}

header nav ul li a {
    color: #00bcd4;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #03a9f4;
}

/* Menu responsivo (hambúrguer) */
header .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

header .menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
}


/* Estilos para telas menores */
@media (max-width: 768px) {
    header nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 10px 0;
        text-align: center;
        gap: 15px;
    }

    header nav ul.active {
        display: flex;
    }

    header .menu-toggle {
        display: flex;
    }
}
/* Hero Section */
#intro {
    height: 100vh;
    background: url('../assets/images/banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 8px;
    max-width: 700px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Botão CTA */
.cta-button {
    padding: 12px 25px;
    background-color: #00bcd4;
    color: #fff;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #03a9f4;
}

/* Estilos para telas menores */
@media (max-width: 768px) {
    header nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 10px 0;
        text-align: center;
        gap: 15px;
    }

    header nav ul.active {
        display: flex;
    }

    header .menu-toggle {
        display: flex;
    }
}
/* Seções */
section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #00bcd4;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

/* Seção de Serviços */
.servico {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #444;
    padding-bottom: 30px;
}

.servico-texto {
    flex: 1;
    margin-right: 20px;
}

.servico-imagem {
    flex: 1;
}

.servico-imagem img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Formulário */
form input, form textarea, form button {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    border-radius: 8px;
}

form button {
    background-color: #00bcd4;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #03a9f4;
}

/* Rodapé */
footer {
    background-color: #121212;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    color: #999;
}

.video-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
    margin-top: 30px;
}

.video-container {
    width: 100%;
    max-width: 500px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

video {
    width: 100%; /* O vídeo ocupa toda a largura do container */
    height: auto;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.cta-button {
    background-color: #FF7F00;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #e56b00;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    /* Menu responsivo */
    header nav ul {
        flex-direction: column;
        align-items: center;
        display: none; /* Inicialmente oculto */
        position: absolute;
        top: 60px; /* Ajuste conforme necessário */
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        gap: 20px;
        text-align: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    header nav ul li a {
        font-size: 1.2rem;
    }

    /* Menu hamburguer */
    header .menu-toggle {
        display: flex;
        cursor: pointer;
        z-index: 101;
    }

    /* Ícone de hambúrguer */
    header .menu-toggle .bar {
        width: 30px;
        height: 3px;
        background-color: #fff;
        border-radius: 5px;
        margin: 6px 0;
    }

    /* Exibe o menu quando ativo */
    header nav ul.active {
        display: flex;
    }

    /* Ajustes da seção Hero */
    #intro {
        height: 80vh;
    }

    .hero {
        padding: 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    /* Ajustes das seções */
    section {
        padding: 60px 0;
    }

    .container {
        width: 95%;
    }

    h2 {
        font-size: 2rem;
    }

    /* Ajustes dos serviços */
    .servico {
        flex-direction: column;
        text-align: center;
    }

    .servico-texto, .servico-imagem {
        margin: 0;
    }

    .servico-imagem img {
        max-width: 100%;
        height: auto;
    }

    /* Vídeos */
    .video-section {
        flex-direction: column;
        align-items: center;
    }

    .video-container {
        width: 100%;
        max-width: 90%;
    }
}
