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


body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

html {
    scroll-behavior: smooth;
}

/* Cabeçalho fixo */
.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

/*  Estilo do botão teste   */
.button {
    margin-top: 10%;
    display: inline-block;
    padding: 10px 20px;
    background-color: green;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: darkgreen;
}

/* Navegação padrão (desktop) */
.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.6;
}

/* Botão Hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* Camada escura para melhorar contraste */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.hero-content p {
    margin-top: 20px;
    font-size: 1.2rem;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
}

                       /* Seções */
.section {
    padding: 100px 20px;
    text-align: center;
    min-height: 100vh;
}


.section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}





/* --------------------- */
/* SOBRE */
/* --------------------- */
.sobre-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 100px 50px;
    flex-wrap: wrap; /* Para permitir quebra em telas pequenas */
}

.sobre-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.sobre-content .texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#texto-titulo-sobre {
   font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
}

#texto-titulo-sobre::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 10px auto 0;
}

.sobre-content .texto .box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sobre-content .texto h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
}

.sobre-content .texto p {
    line-height: 1.7;
}

.sobre-content .imagem {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-content .imagem img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}







/* Rodapé */
.footer {
    background-color: #000;
    color: #888;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
}

/* --------------------- */
/* Responsivo Mobile */
/* --------------------- */

@media (max-width: 768px) {
    #texto-titulo-sobre {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav ul {
        position: absolute;
        top: 70px;
        right: 20px;
        background-color:rgba(0, 0, 0, 0.85);
        flex-direction: column;
        width: 200px;
        padding: 20px;
        gap: 20px;
        display: none;
        border-radius: 8px;
    }

    .nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .header {
        padding: 15px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 2rem;
    }
}

/* Animação Hamburguer */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* --------------------- */
/* RESPONSIVO SOBRE */
/* --------------------- */
@media (max-width: 992px) {
    .sobre-section {
        flex-direction: column;
        padding: 80px 20px;
    }

    .sobre-content {
        flex-direction: column;
        gap: 30px;
    }
}
/* 🔥 PORTFÓLIO SLIDER */
.portfolio-section {
    padding: 100px 40px;
    background-color: #000;
    text-align: center;
}

.titulo-portfolio {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.subtitulo-portfolio {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #ccc;
}

/* SLIDER */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 60%;
    min-height: 60vh;
    max-width: 80%;
    max-height: 80vh;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/*  Estilização futura   */

/*
.portfolio-info {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
}

.portfolio-info h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 5px;
}

.portfolio-info p {
    font-size: 0.9rem;
}
*/
/* CSS DOS SERVIÇOS - ESTILO INTEGRADO (AJUSTADO) */

/* Estilo para a seção principal (agora mais simples) */
.servicos {
    padding: 100px 20px;
    background-color: #000;
    text-align: center; /* Garante que o título seja centralizado */
}

/* Estilo para o novo título (pode copiar o estilo de outros títulos) */
.titulo-servicos {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 50px; /* Espaço entre o título e os boxes */
    color: #fff;
}

/* O container dos boxes agora é quem tem o flex */
.servicos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; 
}

/* O estilo do .servico-box individual continua o mesmo */
.servico-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left; /* Alinha o texto dos boxes à esquerda para melhor leitura da lista */
}

/* O hover também continua igual */
.servico-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

/* O h3 e a lista também continuam iguais */
.servico-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.servico-box ul {
    list-style-position: inside;
    padding-left: 0;
    color: #ccc;
}

.servico-box ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}


@media (max-width: 480px) {
    .titulo-servicos {
        font-size: 2rem;
    }
}


/* Botões */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 8px 8px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* 🎯 RESPONSIVIDADE */
@media (max-width: 768px) {
    .slide {
        min-width: 100%;
        min-height: 50vh;
    }
}

@media (max-width: 480px) {
    .titulo-portfolio {
        font-size: 2rem;
    }

    .subtitulo-portfolio {
        font-size: 0.9rem;
    }

    .slide {
        min-width: 100%;
        min-height: 40vh;
    }

    .portfolio-info h3 {
        font-size: 1rem;
    }

    .portfolio-info p {
        font-size: 0.8rem;
    }

    .slider-btn {
        font-size: 1.5rem;
    }
}

/* 🔥 Contato */
.contato-section {
    padding: 80px 20px;
    background-color: #000;
    color: white;
}

.titulo-contato {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'Orbitron', sans-serif;
}

.contato-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.contato-mapa {
    flex: 1;
    min-width: 300px;
    height: 300px;
    max-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.form-contato {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #444;
    color: white;
    border-radius: 8px;
}

.form-contato input::placeholder,
.form-contato textarea::placeholder {
    color: #aaa;
}

.form-contato textarea {
    resize: none;
    min-height: 150px;
}

.form-contato button {
    padding: 12px;
    background: #444;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-contato button:hover {
    background: #666;
}

/* 📱 Responsivo */
@media (max-width: 768px) {
    .contato-container {
        flex-direction: column;
        align-items: center;
    }

    .contato-mapa {
        width: 100%;
        max-width: 500px;
        height: 250px;
        max-height: 250px;
    }

    .form-contato {
        width: 100%;
        max-width: 500px;
    }
}

/* 🔥 WhatsApp Button - estilo padrão */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1a1a1a;
    color: white;
    border: 2px solid white;
    padding: 10px 16px;
    border-radius: 16px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
    transform: scale(2) ;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    background-color: green;
    
}

/* 🔥 Quando estiver na seção contato */
.whatsapp-button.in-contato {
    position: static;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);

}


/* 🔥 Footer - Ícones de Redes Sociais */

.footer {
    padding-top: 40px; /* Aumenta um pouco o padding para dar espaço aos ícones */
    padding-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaçamento entre os ícones */
    margin-bottom: 25px; /* Espaço entre os ícones e o texto de copyright */
}

.social-icons a {
    color: #888; /* Cor inicial dos ícones, um cinza sutil */
    font-size: 1.2rem; /* Tamanho do ícone */
    
    /* Cria o círculo em volta do ícone */
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #333; /* Borda do círculo, um cinza escuro */
    border-radius: 50%; /* Deixa a borda perfeitamente redonda */
    text-decoration: none;
    
    /* Efeito de transição suave */
    transition: all 0.3s ease-in-out;
}

/* Efeito elegante ao passar o mouse */
.social-icons a:hover {
    color: #fff; /* Ícone fica branco */
    border-color: #fff; /* Borda fica branca */
    transform: translateY(-5px); /* Eleva o ícone um pouco */
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1); /* Adiciona um brilho sutil */
}