    :root {
        --cor-primaria: #0B264A;
        --cor-secundaria: #CB0B68;
        --cor-terceiro: #0E2F5A;
        --cor-branco: #FFFFFF;
        --whatsapp: #25D366;
        --fonte-: 'Poppins', sans-serif;
    }

    * {
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }
    body {
        overflow: hidden;
    }

    a, button {
        text-decoration: none;
    }

    a:hover {
        opacity: 0.9;
        cursor: pointer; 

    }

    .whatsapp-fixo {
        position: fixed;
        bottom: 20px;  /* Distância do fundo da página */
        right: 20px;   /* Distância da direita da página */
        z-index: 1000; /* Garante que o botão fique sobre outros elementos */
        animation: bounce 1s infinite; /* Animação de quicar a cada 5 segundos */
    }


@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Altura máxima do quique */
    }
}

    @media screen and (max-width: 600px) {

        .whatsapp-fixo {
            right: 10px;
        }
}


    /* Navbar inicial o meu capacho*/

    nav {
        display: flex;
        background-color: var(--cor-primaria);
        margin: 0;
        padding: 0;
        align-items: center;
    }

    #home {
        display: flex;
        align-items: center; 
        gap: 30%;
        height: auto;
        padding: 15px;
    }

    .home-inicial-2 h1 a {
        color: var(--cor-branco);
        text-decoration: none;
    }

    .home-inicial h1, .home-inicial-2 h1{
        font-size: 13.991px;
        font-family: var(--fonte-);
        color: var(--cor-branco);
        font-weight: 400;
        padding: 2px;
        margin: 0;
    }

    .home-inicial-2, .home-inicial {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .home-inicial {
        margin-left: 100px;
    }

    .home-inicial-2 {
        position: absolute;
        right: 0;
        margin-right: 80px;
    }

    .home-icones {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    /* MENU */

    #menu {
        display: grid;
        grid-template-columns: 1fr 3fr;
        padding: 20px;
    }

    .menu-one h1 a, .menu-two h1 a{
        font-size: 14.991px;
        font-family: var(--fonte-);
        color: var(--cor-primaria);
        font-weight: 600;
    }

    .menu-one {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 35px;
    }

    .logo {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        padding-left: 90px;
    }

    .logo img {
        max-width: 55%;
    }

    @media screen and (max-width: 1230px) {

        .home-inicial {
            margin-left: 60px;
        }

        .home-inicial-2 {
            margin-right: 20px;
        }

    }

    @media screen and (min-width: 1600px) {

        .home-inicial-2 {
            position: relative;
        }

        #menu {
            justify-content: center;
        }

        #home {
            gap: 5px;
        }

        #menu {
            gap: 30%;
        }

    }

    @media screen and (max-width: 1059px) {

        #menu, #home {
            display: none;      
        }
    }

    @media screen and (min-width: 1124px) {

        .menu-hamb, .ul-mbl, #check {
            display: none;
        }
    }



    /* Showcase */

    #showcase {
        padding: 80px;
   
        display: flex;
        flex-direction: column;
        background-color: #B6B3B3;
        height: auto;
        padding-bottom: 150px;
    }

    .showcase-text {
        display: flex;
        flex-direction: column;
        color: var(--cor-primaria);
    }

    .showcase-text h1 {
        font-size: 52px;
        font-weight: 800;
        font-family: var(--fonte-);
        overflow-y: hidden;
        margin-bottom: 10px;
    }

    .showcase-text p {
        font-size: 1rem;
        font-family: var(--fonte-);
        margin-bottom: 30px;
        width: 40%;
    }

    .button-showcase {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .button-showcase button {
        width: auto; 
        color: var(--cor-branco);
        font-family: var(--fonte-);
        outline: none; 
        cursor: pointer; 
        text-decoration: none; 
        border-radius: 7px 7px 7px 0;
    }

    .button-showcase .button-one {
        padding: 10px 20px;  
        background-color: var(--cor-secundaria);
        border: 1px var(--cor-secundaria) solid;
    }

    .button-showcase .button-two {
        background-color: transparent;
        border: 1px var(--cor-branco) solid;
        padding: 10px 40px;  
    }

    .button-showcase button a {
        text-decoration: none;
        color: #FFFFFF;
        font-weight: 500;
    }

    @media screen and (max-width: 1059px) {

        .margin {
            display: none;
        }

        #showcase {
            padding: 40px;
            padding-bottom: 50px;
        }

        .showcase-text h1 {
            font-size: 32px;
        }

        .showcase-text p {
            width: 90%;
            font-size: 13.568px;
        }

        .button-showcase button a {
            font-size: 13.568px;;
        }

        .button-showcase .button-one, .button-showcase .button-two {
            padding: 10px 20px; 
        }

    }


/* MODELOS DE CAPACHOS */

#capachos {
    display: flex;
    flex-direction: column;
    margin: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--fonte-);
}

.capachos-container {
    background-color: var(--cor-branco);
    padding: 50px;
    padding-top: 50px;
    max-width: 80%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.capacho-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.capacho-text h1 {
    font-size: 2.5em;
    color: var(--cor-primaria);
    font-weight: 500;
    margin: 5;
    padding: 5px;
}

.capacho-text p {
    font-size: 16px;
    color: var(--cor-primaria);
    max-width: 60%;
    font-size: 1rem;
    margin-top: 10px;
}

.modelos-capachos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.modelos-capachos span {
    font-weight: 700;
}

.modelos-capachos h1 {
    font-size: 28px;
    color: var(--cor-branco);
    font-family: var(--fonte-);
    font-weight: 200;
    padding: 5px;
    margin-bottom: 10px;
}

.modelos-capachos p {
    font-family: var(--fonte-);
    font-size: 15.993px;
    color: var(--cor-branco);
    font-weight: 500;
    margin-bottom: 15px;
}

.capacho-vinil, .capacho-cleankap, .capacho-waterkap, .capacho-decorcap, #capacho-condominio, .capacho-emborrachado {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 500px;
    width: 45%;
    padding: 8px 20px;
    border-radius: 7px 7px 7px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.one {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 45%;
}

.capacho-cleankap {
    background-image:  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('home-cleankap.jpg');
    background-size: cover; /* Faz com que a imagem cubra toda a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Impede que a imagem se repita */
}

.capacho-waterkap {
    background-image:  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('wat4.PNG');
    background-size: cover; /* Faz com que a imagem cubra toda a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Impede que a imagem se repita */
}

.capacho-decorcap {
    background-image:  linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('home-decorcap.jpg');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
}

.capacho-vinil {
    background-image:  linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('vinil-home.jpeg');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}

#capacho-condominio {
    background-image:  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('home-condominio.JPG');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}

.capacho-emborrachado {
    position: relative; 
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('home-emborrachado.JPG');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
}

.capacho-emborrachado > * {
    position: relative;
    z-index: 1; 
}

.modelos-capachos .ver-mais {
    width: auto; 
    color: var(--cor-branco);
    font-family: var(--fonte-);
    outline: none; 
    font-weight: 600;
    cursor: pointer; 
    text-decoration: none; 
    border-radius: 7px;
    padding: 10px 55px;
    border: none;
    background-color: var(--whatsapp);
}

.button-capacho {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 5px;
}

.modelos-capachos .comprar-agora {
    width: auto; 
    color: var(--cor-branco);
    font-family: var(--fonte-);
    outline: none; 
    cursor: pointer; 
    text-decoration: none; 
    padding: 5px 20px;
    margin-top: 8px;
    border: 1px solid var(--whatsapp);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.modelos-capachos .comprar-agora a {
    color: var(--whatsapp);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}


@media screen and (max-width: 1280px) {

    .capachos-container {
        max-width: 95%;
    }

    .capacho-vinil, .capacho-cleankap, .capacho-waterkap, .capacho-decorcap, #capacho-condominio, .capacho-emborrachado {
        width: 60%;
    }
}

@media screen and (max-width: 1023px) {

    .capacho-text h1 {
        font-size: 1.5em;
        padding: 5px;
    }

    .capachos-container {
        padding: 20px;
        max-width: 98%;
        margin-top: 10px;
    }

    .capacho-text p {
        max-width: 100%;
        font-size: 13.568px;
    }     
    
    .modelos-capachos h1 {
        font-size: 21px;
    }

    .capacho-vinil, .capacho-cleankap, .capacho-waterkap, .capacho-decorcap, #capacho-condominio, .capacho-emborrachado {
        width: 100%;
        height: 420px;
        padding: 10px;
    }

    .modelos-capachos {
        flex-direction: column;
        margin-top: 10px;
    }

    .modelos-capachos p {
        font-size: 13.568px;
    }

    .capacho-waterkap, .capacho-decorcap {
        background-color: var(--cor-primaria);
    }

    #capacho-condominio {
        background-color: var(--cor-secundaria);
    }

    .button-capacho {
        font-size: 13.568px;
    }

    .one {
        height: auto;
    }
}




/* CARROSEL/FOTOS */

#fotos-capachos {
    padding-top: 140px;
    margin-top: -80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 90px;
    background-color: var(--cor-primaria);
}

.fotos-img, .fotos-capachos {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fotos-img img, .fotos-capachos img {
    max-width: 30%;
    margin: 20px;
}

.fotos-capachos {
    padding: 10px;
}

.carousel-indicators {
    display: none;
}

.destaque {
    font-weight: bold; 
    color: var(--cor-secundaria); 
    font-size: 80px; 
    font-family: var(--fonte-);
    letter-spacing: -5px;
}

@media screen and (max-width: 1023px) {

    #fotos-capachos {
        padding-top: 100px;
    }

    .fotos-img img, .fotos-capachos img {
        max-width: 45%;
        margin: 10px;
    }

    .fotos-capachos {
        padding: 0;
    }

}

@media screen and (max-width: 912px) {

    .destaque {
        font-size: 40px;
        letter-spacing: -1px;
    }

    @media screen and (max-width: 344px) {

        .destaque {
            font-size: 30px;
            letter-spacing: normal;
        }
    
    }
    

}



/* EMPRESAS */

#empresas {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    flex-direction: column;
    margin-top: 50px;
}

.preto-e-branco {
    filter: grayscale(100%);
    margin: 0 45px;
  }

  .logo-empresas {
    padding-top: 70px;
  }

  .logo-empresas img {
    max-height: 2.5rem;
  }

.empresas-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
  }

  .empresas-container h1 {
    font-size: 38px;
    color: var(--cor-primaria);
    font-family: var(--fonte-);
    padding: 5px;
  }

  .linha {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1px; 
    background-color: var(--cor-terceiro);
    margin: 80px 50px;
    width: 70%;
  }

  #empresas-mobile {
    display: none;
  }

  @media screen and (max-width: 1023px) {

    .empresas-container h1 {
        font-size: 21px;
        padding: 10px;
        text-align: center;
    }

    #empresas {
        padding: 30px;
        margin: 0;
    }

    .logo-empresas img {
        max-height: 1.5rem;
        margin: 0 5px;
    }

    .logo-empresas {
        padding-top: 15px;
    }

    .linha {
        margin: 50px 50px;
        width: 80%;
    }

    .logo-empresas-mobile img {
        max-width: 4rem;
      }

  }

  @media screen and (max-width: 500px) {

    #empresas {
        display: none;
    }

    #empresas-mobile {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    
    #empresas-mobile h1 {
        font-size: 21px;
        color: var(--cor-primaria);
        font-family: var(--fonte-);
        padding: 5px;
        text-align: center;
    }

    .logo-empresas-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-img {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-img img, .logo-empresas-mobile img{
        max-width: 150px;
        margin: 20px;
    }

  }

  /* SOBRE */

  #sobre {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--cor-primaria);
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .sobre-container h1, p {
    padding: 5px;
    font-family: var(--fonte-);
    color: var(--cor-branco);
    font-weight: 300;
  }

  .sobre-container h1 {
    font-size: 38px;
    font-weight: 600;
  }

  .sobre-container {
    width: 50%;
    border-radius: 5px;
    background-color: var(--cor-secundaria);
    padding: 30px;
  }

  .foto-equipe {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .foto-equipe video {
    width: 100%;
    border-radius: 5px;
  }

  @media screen and (max-width: 1023px) {

    #sobre {
        margin: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding-bottom: 0;
    }

    .sobre-container {
        width: 90%;
        margin: 0;
    }

    .sobre-container h1 {
        font-size: 28px;
    }

    .background, .foto-equipe {
        margin: 0;
    }

    .foto-equipe {
        width: 100%;
        background-color: #fff;
        height: 100%; /* Ajusta conforme a altura desejada */
        overflow: hidden; /* Garante que a imagem não ultrapasse os limites do container */
    }

    .foto-equipe video {
        width: 80%;
    
        height: auto;
        margin: 10px;
        object-fit: cover; /* Faz com que a imagem ocupe o espaço inteiro sem distorcer */
    }
      
    .background img {
        width: 70%;
        height: 350px;
        align-items: center;
        justify-content: center;
    }

    #sobre {
        gap: 10px;
    }

    .sobre-container p {
        font-size: 13.991px;
    }

    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

        .sobre-container {
            width: 60%;
            height: auto;
            margin-top: 40px;
        }

        .background img {
            width: 50%;
        }
    }

  }

  @media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) {

    .sobre-container {
        width: 80%;
        height: auto;
        margin-top: 40px;
    }

    .background img {
        width: 60%;
    }
}

/* FORMULÁRIO */

#formulario {
    display:grid;
    height: auto;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
}

.contato{
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 75px;
}

.mensagem-principal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    padding: 20px;
    padding-left: 90px;
}

.titulo-formulario {
    color: var(--cor-primaria);
    font-family: var(--fonte-);
    font-size: 52px;
    font-weight: 600;
    padding: 5px;
    width: auto;
}

.descricao-formulario {
    color: var(--cor-primaria);
    font-family: var(--fonte-);
    font-size: 16.991px;
    font-weight: 400;
    width: 90%;
}



@media screen and (max-width: 1254px) {

    #formulario {
        display: flex;
        flex-direction: column;
        padding: 10px;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    form {
        width: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .field {
        width: 60%;
    }

    .contato, .mensagem-principal {
        align-items: center;
        justify-content: center;
    }

    .titulo-formulario {
        font-size: 28px;
        margin-top: 20px;
        text-align: center;
    }

    .contato {
        margin-top: 5px;
    }

    .mensagem-principal {
        padding: 0px;
    }

    .descricao-formulario {
        max-width: 100%;
        text-align: center;
        font-size: 14.991px;
       
    }

    .centralizar {
        margin-top: 20px;
    }
}


/* REVENDA*/

#revenda {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 40px;
    background-color: var(--cor-primaria);
}

.revenda-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    max-width: 86%;
}

.revenda-container h2 {
    font-size: 28px;
    font-weight: 300;
    font-family: var(--fonte-);
    color: var(--cor-branco);
    text-align: center;
    padding: 5px;
}

.revenda-container a {
    color: var(--cor-primaria);
    font-weight: 500;
}

.revenda-whatsapp {
    margin-top: 10px;
    background-color: #25D366; 
    border: none;
    padding: 10px 50px; 
    border-radius: 5px; 
    cursor: pointer; 
    display: inline-flex;
    align-items: center;
    justify-content: center; 
  }
  
  .revenda-whatsapp a {
    text-decoration: none; 
    color: white; 
    display: flex; 
    align-items: center; 
  }
  
  .revenda-whatsapp img {
    margin-right: 10px; 
  }

  .frase-revenda {
    font-weight: 700; 
    font-size: 38px; 
    letter-spacing: -1px;
    text-align: center;
    line-height: 40px;
  }
  
@media screen and (max-width: 1023px) {

    .revenda-container h2 {
        font-size: 15.991px;
        padding: 2px;
    }

    .revenda-container {
        padding: 30px 10px;
        max-width: 100%;
    }

    #revenda {
        padding: 10px;
    }

    .frase-revenda {
        font-size: 28px; 
        line-height: 30px;
        font-weight: 600;
      }
}

/* FOOTER */

#footer {
    display: flex;
    padding: 50px;
    justify-content: space-between;
    padding-left: 100px;
    padding-right: 150px;
}

.contatos, .redes-sociais {
    margin-top: 80px;
}

.contatos p, .redes-sociais p{
    color: var(--cor-primaria);
    font-weight: 500;
    margin: 0;
}

.contatos div, .redes-sociais div{
    color: var(--cor-primaria);
    font-weight: 600;
    margin: 0;
    font-family: var(--fonte-);
    margin-bottom: 15px;
}

.redes-sociais {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icones {
    display: flex;
    gap: 8px;
}

.icones img {
    border-radius: 10px;
}

.logo-footer img {
    max-width: 60%;
}

@media screen and (max-width: 1306px) {

    #footer {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;
        padding-left: 25px;
    }

    .logo-footer img {
        max-width: 40%;
    }

    .contatos {
        margin-top: 0;
    }

    .redes-sociais {
        margin-top: 40px;
    }
}

/* LINK */

.link-one {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.link-one p {
    padding: 0;
    color: var(--cor-primaria);
    font-size: 12.991px;
    font-family: var(--fonte-);
    margin: 0;
}

@media screen and (max-width: 847px) {

    .link-one  {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding-bottom: 15px;
    }

    .link-one p {
        font-size: 10.991px;
    }

}

/** CAPACHOS DESCRIÇÕES */

#decorcap {
    padding: 50px;
    background-color: var(--cor-primaria);
    height: auto;
}

#decorcap a{
    color: var(--cor-branco);
    font-family: var(--fonte-);
    font-size: 13.991px;
    text-decoration: none;
}

.back-menu {
    padding-left: 20px;

}

.decorcap-container {
    display: flex;
    flex-direction: column;
    margin: 20px;
}

.decorcap-container h1 {
    font-size: 42px;
    font-weight: 800;
    font-family: var(--fonte-);
    color: var(--cor-branco);
    padding: 5px;
    padding-left: 0;
}

.decorcap-container p {
    color: var(--cor-primaria);
    font-family: var(--fonte-);
    color: var(--cor-branco);
    font-size: 17.991px;
    font-weight: 300;
    padding-top: 25px;
    background-color: var(--cor-secundaria);
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
    max-width: 70%;
}


.button-decorcap {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.button-decorcap button {
    width: auto; 
    color: var(--cor-branco);
    font-family: var(--fonte-);
    outline: none; 
    cursor: pointer; 
    text-decoration: none; 
    border-radius: 7px 7px 7px 0;
}

.button-decorcap {
    padding: 10px 20px;  
    background-color: var(--cor-secundaria);
    border: 1px var(--cor-secundaria) solid;
}

.button-decorcap button a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
}

#decorcap .decorcap-container a{
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 16.991px; /* Você pode ajustar o tamanho conforme necessário */
    text-decoration: none; /* Remover sublinhado, se desejar */
    color: inherit; /* Mantém a cor herdada ou você pode definir uma específica */
}

.revenda-whatsapp-produtos {
    margin-top: 10px;
    margin-left: 23px;
    background-color: #25D366; 
    border: none;
    padding: 10px 20px; 
    border-radius: 5px; 
    cursor: pointer; 
    display: inline-flex;
    align-items: center;
    justify-content: center; 
  }
  
  .revenda-whatsapp-produtos  a {
    text-decoration: none; 
    color: white; 
    display: flex; 
    align-items: center; 
  }
  
  .revenda-whatsapp-produtos img {
    margin-right: 10px; 
  }

  @media screen and (max-width: 600px) {
    
    #decorcap a{
        font-size: 12px;
      }

      .revenda-whatsapp-produtos {
        margin-top: 0;
      }
  }

.fotos-capachos .laminado {
    font-size: 38px;
    color: var(--cor-secundaria);
    font-family: var(--fonte-);
}

.fotos-capachos a {
    display: flex;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#fotos-decorcap {
    padding-top: 80px;
    margin-top: -80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fotos-img, .fotos-decorcap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fotos-img img, .fotos-capachos img {
    max-width: 30%;
    margin: 20px;
    border-radius: 15px;
}

.fotos-capachos {
    padding: 10px;
}


@media screen and (max-width: 801px) {

    #decorcap {
        padding: 10px;
        padding-bottom: 30px;
    }

    .decorcap-container p {
        max-width: 90%;
        font-size: 13.991;
    }

    .decorcap-container h1 {
        font-size: 26px;
    }

    .fotos-img img, .fotos-capachos img {
        max-width: 30%;
        margin: 5px;
    }

    #fotos-capachos {
        padding-bottom: 25px;
    }

}

.grid-laminado {
    margin-top: 15px;
    font-size: 28px;
    color: var(--cor-primaria);
    font-family: var(--fonte-);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-weight: 700;
}


.container-text p{
    text-align: center;
    font-size: 28px;
    font-family: var(--fonte-);
    color: var(--cor-branco);
    font-weight: 600;
}


.vinil-fotos {
    margin: 10px 50px;
    position: relative;
    overflow: hidden;
}

.vinil-fotos img {
    max-height: 200px;
    border-radius: 15px;
}

.vinil-fotos p {
    padding: 15px;
    border-radius: 15px;
    font-size: 18px;
    max-width: 90%;
    color: var(--cor-primaria);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vinil-fotos p:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 557px) {
    
    .container-text p{
        font-size: 21px;
    }
}

@media screen and (max-width: 915px) {
    
    .container-text p{
        font-size: 21px;
    }

    .vinil-fotos p {
        font-size: 13.991px;
        max-width: 95%;
    }

    .vinil-fotos {
        margin: 20px;
    }
}




    /* INFORMAÇÕES */

  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
  }

  .modal-content {
    animation: fadeIn 0.5s ease forwards; /* Nome da animação, duração, tipo de transição e manter o estado final */
  }

  @keyframes fadeIn {
    from {
      opacity: 0; /* Iniciar com opacidade 0 */
    }
    to {
      opacity: 1; /* Terminar com opacidade 1 */
    }
  }



  /* AUMENTAR IMAGEM */


    .thumbnail {
        cursor: pointer;
        transition: transform 0.2s;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .overlay img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 15px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .overlay.active {
        display: flex;
    }

    #contato {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 100vh;
        margin: 10px;
    }

    #contato h2 {
        font-size: 24px;
        font-family: var(--fonte-);
        color: var(--cor-primaria);
        font-weight: 600;
    }

    #contato label {
        font-family: var(--fonte-);
        font-size: 16px;
        color: var(--cor-terceiro);
        font-weight: 600;
    }

    #whatsappForm {
        border-radius: 15px;
        margin: 10px;
        display: flex;
        flex-direction: column;
        margin-top: 40px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 35px;
    }

    .field3 {
            border: 1px solid var(--Cinza, #B2B2B2);
            background: #FFF;
            width: 300px;
            height: auto;
            font-family: var(--font-family-primary);
            font-size: 16px;
            font-weight: 400;
            padding-left:15px;
            padding: 10px;
        }
        
        .field3::placeholder  {
            color:var(--cor-primaria);
            font-family: var(--fonte-);
            font-size: 16px; 
        }


