*{

    margin: 0;
    padding: 0;
    
}

body
{
    background-color: #a1a7b2;      

    /*
    cores possiveis
    #a1a7b2
    #7b8183
    #babdbe
    */

}

@media screen and (max-width: 768px) {
    
    body::-webkit-scrollbar {
        display: none;
    }

    body {
        scrollbar-width: none;
        background-color: #a1a7b2;
    }

    body {
        -ms-overflow-style: none;
    }
}


/*carrossel*/

.carrossel{
  position: relative;
  width: 80%;
  max-width: 100%;
  height: auto;
  margin: auto;
  overflow: hidden; 
  border-radius: 10px;
}

.imagens-carrossel {
  display: flex; 
  transition: transform 0.5s ease-in-out; 
  object-fit: cover;
  width: 100%;
  height: auto;
}

.imagem-carrossel{
  min-width: 100%;
  object-fit: cover;
  height: auto; 
  object-position: center;
}

/* Botões */
#botao-ir, #botao-voltar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
}

#botao-ir { right: 10px; }
#botao-voltar{ left: 10px; }

@media screen and (max-width: 768px) {
  .carrossel {
    max-width: 100%; 
    border-radius: 8px;
    width: 100%;
  }

  .imagem-carrossel {
    height: auto; 
    width: 100%;
  }

  #botao-ir, #botao-voltar {
    padding: 10px;
    width: 30px;
    height: 30px;
    font-size: 12px;
    background: rgba(28, 28, 51, 0.3); 
  }
}



/*fim carrossel*/

/*header*/

.oheader{
    background-color: #1c1c33; 
    padding: 20px 0;
    width: 100%;
    position: sticky; 
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-top: 0;
    
    
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease; 
    position: relative;
}

.nav-list li a:hover {
    color: #1c1c33; 
    background-color: #eded06; 
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(237, 237, 6, 0.4); 
}

.nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: #eded06;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list li a:hover::after {
    width: 70%; 
}

@media screen and (max-width: 768px) {
    .oheader {
        padding: 10px 0; 
    }

    .nav-list {
        gap: 10px;
    }

    .nav-list li a {
        font-size: 0.85rem;
        padding: 6px 8px;
    }

    .nav-list li a::after {
        display: none;
    }
}

/*fim header*/

/*Icones de Contato*/

#WhatsApp { 
position: fixed; bottom: 15px; right: 15px; z-index: 9999;
}

#Instagram {
position: fixed; bottom: 75px; right: 15px; z-index: 9999;
}


/*Fim Icones de Contato*/

/*Galeria Imagens*/

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 10px;
      padding: 20px;
    }

    .gallery-grid img {
      width: 100%;
      cursor: pointer;
      transition: 0.3s;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 90%;
      max-width: 800px;
    }

    .modal-content img {
      max-width: 100%;
      max-height: 80vh; 
      border: 3px solid white;
    }

    .close {
      position: absolute;
      top: 20px;
      right: 35px;
      color: white;
      font-size: 40px;
      cursor: pointer;
    }

    .prev, .next {
      position: absolute;
      background: rgba(255,255,255,0.2);
      color: white;
      border: none;
      padding: 20px;
      cursor: pointer;
      font-size: 24px;
    }
    .prev { left: -50px; }
    .next { right: -50px; }

    @media (max-width: 600px) {
      .prev { left: 0; }
      .next { right: 0; }
      .prev, .next {
      background: rgba(28, 28, 51, 0.4) ;
    }
    }

    /*Galeria*/

    .wg1 { grid-column: span 1; }
    .wg2 { grid-column: span 2; }
    .hg1 { grid-row: span 1; }
    .hg2 { grid-row: span 2; }


    #alinhargaleria {
        display: flex;
        justify-content: center;
        padding: 40px 0;
    }

    div.galeria {
        width: 90%;
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 40vh;
        gap: 15px; 
    }

    div.single-galeria {
        position: relative;
        cursor: pointer;
        overflow: hidden;
        border-radius: 12px; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        background-color: #1c1c33; 
    }

    div.img {
        width: 100%;
        height: 100%;
    }

    div.img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    div.overflow {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(transparent, black); 
        opacity: 0.7;
        transition: opacity 0.5s ease;
    }

    div.conteudo {
        position: absolute;
        bottom: 15px;
        left: 15px;
        color: white;
        border-left: 4px solid #1c1c33; 
        padding: 5px 15px;
        z-index: 2;
        transition: all 0.5s ease;
    }

    div.conteudo h1 {
        font-size: 1.2rem;
        color: white; 
        margin-bottom: 5px;
    }

    div.conteudo p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #fff;
    }

    div.single-galeria:hover div.img img {
        transform: scale(1.1); 
    }

    div.single-galeria:hover div.overflow {
        opacity: 0.9;
    }

    div.single-galeria:hover div.conteudo {
        bottom: 25px; 
    }

    /* Responsividade */
    @media screen and (max-width: 768px) {
        div.galeria {
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 30vh;
        }
        .wg2, .wg1 { grid-column: span 2; }
        .hg2, .hg1 { grid-row: span 1; }

        div.conteudo h1 {
        font-size: 0.9rem;
        color: white; 
        margin-bottom: 5px;
        }

        div.conteudo p {
        font-size: 0.60rem;
        line-height: 1.19;
        color: #fff;
        }

    }
    /*Fim galeria*/

  /*Caixas de texto*/
    .sobre-container {
    width: 90%;
    padding: 60px 5%;
    display: flex;
    justify-content: center;
    
    }

    .sobre-card {
        background: #1c1c33;
        max-width: 900px;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        border-right: 6px solid #eded06; 
        color: #fff; 
    }

    .sobre-header h2 {
        font-size: 2.2rem;
        color: #eded06; 
        margin-bottom: 10px;
    }

    .linha-detalhe {
        width: 80px;
        height: 4px;
        background-color: #3c4474; 
        margin-bottom: 30px;
    }

    .sobre-texto p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #f0f0f0; 
        margin-bottom: 20px;
        text-align: justify;
    }

    .sobre-texto strong {
        color: #eded06;
    }

    .chamada {
        font-style: italic;
        background: #3c4474; 
        padding: 20px;
        border-radius: 4px;
        color: #fff !important;
    }


        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .servicos-container {
        width: 90%;
        padding: 40px 5%;
        display: flex;
        justify-content: center;
    }

    .servicos-card {
        background-color: #1c1c33; 
        width: 100%;
        max-width: 800px; 
        margin: 0 auto;    
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        border-top: 5px solid #eded06; 
    }

    .servicos-header h2 {
        color: #eded06; 
        font-size: 1.8rem;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .linha-detalhe {
        width: 50px;
        height: 3px;
        background-color: #3c4474; 
        margin-bottom: 25px;
    }

    .lista-servicos {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
        gap: 15px;
    }

    .lista-servicos li {
        color: #fff;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid #3c4474; 
    }

    .lista-servicos li span {
        color: #eded06; 
        font-weight: bold;
        margin-right: 15px;
        font-size: 1.2rem;
    }

    .e-mais {
        font-style: italic;
        border-bottom: none !important;
        font-weight: bold;
    }

    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    @media screen and (max-width: 768px) {
    .sobre-container, .servicos-container {
        width: 100%; 
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
    }

    .sobre-card, .servicos-card {
        width: 92%; 
        padding: 25px 20px;
        border-right: none;
        border-top: 5px solid #eded06; 
    }

    .sobre-header h2, .servicos-header h2 {
        font-size: 1.6rem; 
        text-align: center;
    }

    .linha-detalhe {
        margin: 0 auto 20px auto; 
    }

    .sobre-texto p {
        font-size: 1rem; 
        text-align: left; 
        line-height: 1.6;
    }

    .lista-servicos {
        grid-template-columns: 1fr; 
        gap: 10px;
    }

    .lista-servicos li {
        font-size: 1rem;
        padding: 8px 0;
    }

    .chamada {
        padding: 15px;
        font-size: 0.95rem;
    }
    }

  /*fim Caixas de texto*/