    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: Arial, sans-serif;
        background: #f8f8f8;
        text-align: center;
    }

    /* Logo flutuante */
/* Seção hero (faixa com imagem de fundo) */
.hero {
    width: 100%;
    height: 420px; /* ajuste conforme desejar */
    background: url('../img/imagens/img3.jpeg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .logo-container {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 70px;
    }

    .logo-container img {
        height: 120px;
        width: 120px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #830000;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        background: #535151;
        position: absolute;
        top: -60px;
        z-index: 1100;
    }

    .logo-container h1 {
        margin-top: 70px;
        font-size: 24px;
        color: #333;
        font-weight: bold;
        letter-spacing: 1px;
    }

.hero-video, .logo-topo {
    position: absolute;
    width: 100%;
    height: 300px;
     background-size: cover; /* cobre todo o container */
    background-position: center; /* centraliza a imagem */
     display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    left: 0;
    z-index: 1;
}
.logo-container {
    position: relative;
    z-index: 2; /* fica sobre o vídeo */
}



.logo-topo h1 {
    position: relative;
    z-index: 2; /* título acima do overlay */
}
.logo-topo h1 {
    color: #fff; /* cor do título sobre a imagem */
    font-size: 48px; /* ajuste conforme necessário */
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7); /* melhora a legibilidade */
    
}

    /* Barra de navegação */
    nav {
        background: #880404;
        border-bottom: 3px solid #751313;
        position: relative;
        z-index: 1000;
        padding: 20px 20px 10px 20px;

    }

    nav ul {
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav ul li {
        margin: 0 15px;
    }

    nav ul li a {
        text-decoration: none;
        color: #aaa1a1;
        padding: 12px 18px;
        display: block;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    nav ul li a:hover {
        background: #751313;
        transform: translateY(-2px);
        box-shadow: 0px 3px 10px rgba(0,0,0,0.3);
    }

    /* Botão hamburguer */
    .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .menu-toggle span {
        display: block;
        height: 3px;
        background: #4b4848;
        border-radius: 2px;
        transition: 0.3s;
    }

    /* Mobile */
    @media (max-width: 768px) {
        nav ul {
            flex-direction: column;
            background: #880404;
            position: absolute;
            top: 70px;
            right: 0;
            width: 200px;
            max-height: 0;
            overflow: hidden;
            border-left: 3px solid #751313;
            border-bottom: 3px solid #f5ecec;
            transition: max-height 0.4s ease;
        }

        nav ul.showing {
            max-height: 500px;
        }

        .menu-toggle {
            display: flex;
        }

        nav ul li {
            margin: 10px 0;
            text-align: center;
        }
    }

    /* Animação do X no hamburguer */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
#voltarTopo {
    position: fixed;
    bottom: 80px; /* acima do WhatsApp */
    right: 20px;
    z-index: 1300;
    background-color: #880404;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    display: none; /* inicia oculto */
    transition: background 0.3s, transform 0.3s;
}

#voltarTopo:hover {
    background-color: #751313;
    transform: scale(1.1);
}


/* Seção Sobre com imagem */
.sobre {
    padding: 80px 20px;
    background: #fdfdfd;
    color: #333;
}

.sobre-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    flex-wrap: wrap;
}

.sobre-imagem {
    flex: 1 1 400px;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.sobre-texto {
    flex: 1 1 500px;
    text-align: justify;
    line-height: 1.8;
}

.sobre-texto h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: left;
    color: #222;
    font-weight: 700;
    position: relative;
}

.sobre-texto h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #ff6600;
    margin-top: 10px;
    border-radius: 2px;
}

.sobre-texto p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Mobile */
@media (max-width: 768px) {
    .sobre-container {
        flex-direction: column;
        gap: 30px;
    }
    .sobre-texto h2 {
        font-size: 28px;
        text-align: center;
    }
    .sobre-texto p {
        font-size: 15px;
    }
}


    
/* Produtos */
/* Seção Produtos & Serviços */
.servicos-produtos {
  padding: 60px 20px;
  background: #f9f9f9;
}

.servicos-produtos h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #830000;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.produto-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 20px;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.produto-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.produto-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #830000;
}

.produto-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.btn-orcamento {
  display: inline-block;
  padding: 10px 16px;
  background: #830000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn-orcamento:hover {
  background: #a30000;
}

/* Modal imagens */
.modal {
    display:none;
    position:fixed;
    z-index:1500;
    padding-top:60px;
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow:auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin:auto;
    display:block;
    max-width:90%;
    max-height:80%;
}

.modal-content, #caption { 
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from{transform:scale(0.7)}
    to{transform:scale(1)}
}

.close {
    position:absolute;
    top:15px;
    right:35px;
    color:#fff;
    font-size:40px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.close:hover {
    color:#ff6600;
}

/* Seção de Vídeos */
.videos {
    padding: 80px 20px;
    background: #f0f0f0;
    color: #333;
}

.videos h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
    position: relative;
}

.videos h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #ff6600;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.video-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.video-card p {
    padding: 15px;
    font-size: 15px;
    text-align: center;
    color: #555;
}

/* Modal do player */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-modal video {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
}

.close-video {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.close-video:hover {
    color: #ff6600;
}



    /* Endereço + mapa */
    .info {
        margin: 40px auto;
        max-width: 900px;
        padding: 10px;
    }

    .info .endereco {
        font-size: 18px;
        margin-bottom: 15px;
        color: #333;
    }

    .info .mapa {
        width: 100%;
        height: 350px;
        border: none;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    }


/* Seção Depoimentos */
.depoimentos {
    padding: 80px 20px;
    background: #fdfdfd;
    color: #333;
}

.depoimentos-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.depoimentos-container h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #222;
    position: relative;
}

.depoimentos-container h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #ff6600;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* Cards */
.depoimento-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 30px 25px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.depoimento-card .mensagem {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
}

.depoimento-card .mensagem::before {
    content: "“";
    font-size: 36px;
    color: #ff6600;
    position: absolute;
    left: -20px;
    top: -10px;
}

.depoimento-card .autor {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.depoimento-card .autor span {
    font-weight: 400;
    color: #888;
    font-size: 13px;
}

/* Layout responsivo */
@media (min-width:768px){
    .depoimentos-container {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 30px;
        text-align: left;
    }

    .depoimento-card .mensagem::before {
        left: -15px;
    }
}

@media (max-width:767px){
    .depoimento-card {
        margin-bottom: 20px;
    }
}


    /* Rodapé */
    footer {
        background: #222;
        color: #fff;
        padding: 20px 10px;
        margin-top: 40px;
    }

    .social {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 10px;
    }

    .social a {
        color: #fff;
        font-size: 20px;
        transition: 0.3s;
    }

    .social a:hover {
        color: #ff6600;
        transform: scale(1.2);
    }

    footer p {
        font-size: 14px;
        color: #aaa;
    }

    /* WhatsApp fixo */
    .whatsapp-fixo {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #25d366;
        color: #fff;
        font-size: 26px;
        padding: 15px;
        border-radius: 50%;
        box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
        transition: 0.3s;
        z-index: 1200;
    }

    .whatsapp-fixo:hover {
        background: #1ebe5c;
        transform: scale(1.1);
    }

    /* ===== Estilo do Formulário de Contato ===== */
.formulario {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.formulario h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.formulario form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.formulario input:focus,
.formulario textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.formulario textarea {
  min-height: 120px;
  resize: vertical;
}

.formulario button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.formulario button:hover {
  background: #0056b3;
}

/* Responsivo */
@media (max-width: 480px) {
  .formulario {
    padding: 20px;
  }

  .formulario h2 {
    font-size: 1.6rem;
  }
}
