@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --mainfont: 'Montserrat', 'sans-serif';
    --secondfont: 'Bebas Neue', 'cursive';

    --maincolor: #0F4972;
    --secondcolor: #EAB778;

    --color-black: #3C3C3A;
    --color-blue: #0F4972;
    --color-beige: #EAB778;

    --color-white: #fff;
    --color-gray: #B1B1B1;

    --font-default: 'Montserrat', 'sans-serif';
    --font-titles: "Bai Jamjuree", serif;

    --font-weight-thin: 100;
    --font-weight-extra-light: 200;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    --font-weight-black: 900;
}

body {
    background: #fff;
}

h1 {
    font-family: var(--font-titles);
    font-size: 42px;
    font-weight: 700;
    line-height: 42px;
    color: var(--maincolor);
}

h2 {
    font-family: var(--font-titles);
    font-size: 52px;
    font-weight: var(--font-weight-medium);
    line-height: 48px;
    color: var(--maincolor);
}

h2 strong {
    font-weight: 800;
}

h3 {
    font-family: var(--mainfont);
    font-size: 32px;
    font-weight: var(--font-weight-semi-bold);
    line-height: 32px;
    color: var(--maincolor);
}

h3 strong {
    font-weight: var(--font-weight-extra-bold);
}

h3.color-white {
    color: var(--color-white);
}

h3.color-black {
    color: var(--color-black);
}

h4 {
    font-family: var(--mainfont);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: var(--maincolor);
}

h5 {
    font-family: var(--mainfont);
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    color: #0075BE;
}

h6 {
    font-family: var(--mainfont);
    font-size: 22px;
    letter-spacing: -.25px;
    font-weight: 800;
    line-height: 24px;
    color: #0075BE;
}

strong {
    font-weight: 700;
}

.extra-bold {
    font-weight: 800;
}

.bold-black {
    font-weight: 900;
}

p {
    font-family: var(--mainfont);
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 22px;
    color: var(--color-black);
}

a {
    color: #04326C;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

.animate {
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s
}

.alpha:hover {
    opacity: .55
}

img {
    max-width: 100%;
}

header {
    width: 100%;
    position: fixed;
    z-index: 999;
    height: calc(65px + 60px + 15px);
    transition: height .3s;    
    border-top: 15px solid var(--color-beige);
    background-color: var(--color-white);
}

header .container .row {
    height: calc(65px + 60px);
    transition: height .3s;
}

.header-scrolling .container .row {
    height: calc(66px + 15px) !important;
    transition: height .3s;
}

.header-scrolling {
    -webkit-box-shadow: 0px 4px 11px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 4px 11px -5px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 4px 11px -5px rgba(0, 0, 0, 0.75);
    transition: height .3s;
    height: calc(66px + 20px) !important;
    background-color: var(--color-white);
    /* background: url('../imgs/background-pattern.png'); */
    position: fixed;
}


.header-logo {
    width: 100%;
    max-width: 332px;
    text-align: center;
    margin-right: 240px;
}

.header-logo img {
    transition: height .5s;
}

.nav-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--maincolor);
    padding: 15px 0;
    margin: 0 5px;
    box-sizing: border-box;
    text-transform: uppercase;
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s
}

.nav-btn:hover {
    color: var(--color-beige);
}


#slide{
    padding-top: 140px;
}

.carousel-item {
    transition: transform 1s ease-in-out; /* Transição suave do carrossel */
  }
  
  .carousel-item h2 {
    color: var(--color-white);
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 62px;
    letter-spacing: -0.5px;
    line-height: 64px;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px); /* Deslocamento inicial para baixo */
    opacity: 0; /* Texto inicialmente invisível */
    transition: opacity 0.8s ease, transform 0.8s ease; /* Suavidade na transição */
    transition-delay: 0.1s; /* Atraso antes de aparecer */
  }
  
  .carousel-item.active h2 {
    opacity: 1; /* Tornar visível */
    transform: translate(-50%, -50%) translateY(0); /* Posição final */
  }
  
    


#empresa {
    background-color: #EEEEEE;
    background-image: url("../images/empresa-bg.png");
    background-repeat: repeat-x;
    background-position: center calc(100% - 100px);
    padding-top: 120px;
    padding-bottom: 200px;
}

#empresa h1{
    margin-bottom: 22px;
}

#empresa-selo{
    position: absolute;
    top: -100px;
    right: -50px;
}

#projetos {
    padding-top: 90px;
    padding-bottom: 200px;
}

#projetos .row {
    margin-left: -9px; /* Remove o deslocamento extra das bordas */
    margin-right: -9px;
}

#projetos .col-lg-4 {
    padding: 9px; /* Espaçamento interno das colunas */
}

#projetos .projetos-item {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 360px;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

#projetos .projetos-title {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    font-family: var(--mainfont);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    text-align: center;
    padding: 5px 10px;
}

#projetos .projetos-item:hover {
    transform: scale(1.05);
}


#banner-excelencia{
    background-image: url("../images/image_modanez_tarja.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 370px;
    position: relative;
}
#banner-excelencia h3{
    font-family: var(--font-titles);
    font-size: 58px;
    line-height: 58px;
    margin: 0;
    padding: 0;
    font-weight: var(--font-weight-bold);
    text-align: center;
    color: var(--color-white);
    padding: calc((370px - 58px) /2) 0;
}

#banner-excelencia-marca-da-agua{
    position: absolute;
    background-image: url("../images/logotipo-marca-da-agua.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-size:cover;
    height: 600px;
    width: 400px;
    top: -115px;
    right: 0;
}


#fale-conosco {
    background-color: #f8f9fa;
    padding-top: 150px;
    padding-bottom: 100px;
}

#fale-conosco hr {
    width: 75px;
    border: 1px solid var(--secondcolor);
    margin: 22px 0;
    margin-left: 0;
}

#fale-conosco h2 {
    color: var(--color-blue);
    letter-spacing: 6px;
    font-size: 52px;
    line-height: 48px;
    margin-bottom: 30px;
}

#fale-conosco h5 {
    color: var(--color-black);
    font-size: 20px;
    line-height: 20px;
    font-weight: var(--font-weight-bold);
}

#fale-conosco h6 {
    color: var(--color-black);
    font-size: 24px;
    line-height: 24px;
    font-weight: var(--font-weight-bold);
}

#fale-conosco p {
    color: #333;
    font-size: 20px;
    line-height: 26px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 30px;
}

#fale-conosco p strong{
    font-weight: var(--font-weight-bold);
}

#fale-conosco .telefone {
    color: var(--color-black);
    font-size: 28px;
    line-height: 28px;
    font-weight: var(--font-weight-extra-bold);
}
#fale-conosco .telefone i{
    color: var(--color-black) !important;    
    position: relative;
    top: -10px; 
}


#fale-conosco .destaque {
    color: var(--color-black);
    font-size: 22px;
    line-height: 22px;
    font-weight: var(--font-weight-medium);
}

#fale-conosco .social-icons a {
    display: inline-flex; /* Alinha o ícone ao centro */
    justify-content: center;
    align-items: center;
    width: 40px; /* Largura do círculo */
    height: 40px; /* Altura do círculo (igual à largura) */
    font-size: 1.5rem; /* Tamanho do ícone */
    color: var(--color-white); /* Cor do ícone */
    background-color: var(--color-black); /* Cor de fundo do círculo */
    border-radius: 50%; /* Torna o elemento circular */
    margin-right: 10px; /* Espaçamento entre os ícones */
    transition: all 0.3s ease; /* Efeito de transição suave */
}

#fale-conosco .social-icons a:hover {
    background-color: var(--color-blue); /* Cor de fundo ao passar o mouse */
    color: var(--color-white); /* Cor do ícone ao passar o mouse */
}


#fale-conosco .form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
}

#fale-conosco .btn-primary {
    border-radius: 0;
    background-color: var(--color-blue);
    border-color:  var(--color-blue);
}

#fale-conosco .btn-primary:hover {
    background-color: var(--color-beige);
    border-color: var(--color-beige);
}

#fale-conosco .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 4px; /* Arredondamento leve */
    border: 2px solid #ddd;
    transition: border-color 0.3s ease, background-color 0.3s ease;    
}

#fale-conosco .form-check-input:checked {
    background-color: #113a67; /* Fundo azul ao selecionar */
    border-color: #113a67;
}

#fale-conosco .form-check-label {
    margin-left: 10px;
    color: var(--color-black);
    font-size: 14px;
    line-height: 14px;
    font-weight: var(--font-weight-regular);
}



input, textarea {
    font-family: var(--mainfont);
    font-weight: var(--font-weight-medium);
    font-size: 16px;
    line-height: 20px;
    color: var(--color-black);
    width: 100%;
    height: 45px;
    padding: 5px 10px;
    border: 1px solid var(--color-black);
    border-radius: 0px;
}

textarea {
    height: 207px;
    padding: 5px 10px;
}

button {
    font-family: var(--mainfont);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
    background: var(--color-black);
    width: 140px;
    height: 45px;
    border: none;
    float: right;
    border-radius: 10px;
}

button:hover {
    background: var(--color-gray);
    color: var(--color-black);
}

.btn-whatsapp {
    display: block;
    max-width: 437px;
    height: 110px;
    margin: 55px auto -55px;
    transition-duration: .3s;
}

.btn-whatsapp:hover {
    opacity: .75
}


footer {
    border-top: 2px solid var(--color-white);
    padding: 40px 0;
    background-color: var(--color-beige);
}

footer .container {
    display: flex; /* Habilita o Flexbox */
    align-items: center; /* Alinha a imagem e o texto verticalmente */
    justify-content: space-between; /* Centraliza os elementos no container */
    gap: 20px; /* Espaço entre a imagem e o texto */
    text-align: left; /* Garante que o texto seja alinhado à esquerda */
}

footer .container img {
    max-width: 268px; /* Define um tamanho máximo para a imagem */
    height: auto; /* Mantém a proporção da imagem */
}

footer .container p {
    color: var(--color-blue);
    font-size: 14px;
    font-weight: var(--font-weight-semi-bold);
    margin: 0; /* Remove margem padrão */
}

footer .container a {
    color: var(--color-blue);
}

footer .container a:hover {
    color: var(--color-white);
}

.clear {
    clear: both;
}

/* Back to top */
#button-top {
    display: flex; /* Flexbox para centralizar */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    background-color: transparent;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 0; /* Borda sem arredondamento */
    border: 2px solid var(--color-blue);
    position: fixed;
    bottom: 110px;
    right: 35px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0; /* Inicialmente invisível */
    visibility: hidden;
    z-index: 1000;
    padding: 5px;
    cursor: pointer;
}

#button-top::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    border-left: 2px solid var(--color-blue); /* Linha esquerda da seta */
    border-top: 2px solid var(--color-blue);  /* Linha superior da seta */
    transform: rotate(45deg); /* Rotação para criar a seta apontando para cima */
}

#button-top:hover {
    background-color: #f0f0f0; /* Fundo levemente cinza no hover */
    border-color: var(--color-beige);
}

#button-top:hover::before {

    border-left: 2px solid var(--color-beige);
    border-top: 2px solid var(--color-beige);
}

#button-top:active {
    background-color: var(--color-beige); /* Fundo preto ao clicar */
}

#button-top.show {
    opacity: 1; /* Torna visível quando a classe "show" é adicionada */
    visibility: visible;
}
/* Back to top */

.zap-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.zap-float:hover {
    background-color: #fff;
    color: #25d366;
}

.zap-ico-float {
    margin-top: 16px;
}

/* Styles for the content section */

.content {
    width: 77%;
    margin: 50px auto;
    font-family: 'Merriweather', serif;
    font-size: 17px;
    color: #6c767a;
    line-height: 1.9;
}

@media (min-width: 500px) {
    .content {
        width: 43%;
    }

    #button {
        margin: 30px;
    }
}

.content h1 {
    margin-bottom: -10px;
    color: #03a9f4;
    line-height: 1.5;
}

.content h3 {
    font-style: italic;
    color: #96a2a7;
}

/*media queries*/

@media (max-width: 1900px) {
    .carousel-item h2 {
        font-size: 56px;
        line-height: 60px;
    }
}

@media (max-width: 1720px) {
    .carousel-item h2 {
        font-size: 42px;
        line-height: 52px;
    }
}

@media (max-width: 1300px) {
    .carousel-item h2 {
        font-size: 38px;
        line-height: 40px;
    }
}

@media (min-width: 1281px) {
    header {
        /* position: fixed; */
        z-index: 999999;
    }

}

@media (max-width: 1200px) {
    header .container {
        max-width: 99%;
    }

    .header-logo {
        max-width: 332px;
        text-align: center;
        margin: 20px;
        margin-right: 140px;
    }
    .carousel-item h2 {
        font-size: 34px;
        line-height: 38px;
    }

}

@media (max-width: 992px) {

    

    .carousel-item h2 {
        font-size: 30px;
        line-height: 32px;
    }


}

@media (max-width: 768px) {

    #slide{
        padding-top: 0;
        display: none;
    }

    header {
        position: relative;
        /* background: url('../imgs/background-pattern.png'); */
        padding-bottom: 50px;
    }

    header,
    header .container .row {
        height: auto;
    }

    .header-logo {
        max-width: 300px;
        text-align: center;
        margin: 40px;
    }

    nav a {
        border-bottom: 1px solid var(--color-gray);
        width: 100%;
        text-align: center;
    }

    nav a:last-child {
        border-bottom: none;
    }

    footer .container {
        flex-direction: column; /* Empilha os elementos verticalmente */
        text-align: center; /* Centraliza o texto */
    }

    footer .container img {
        margin-bottom: 15px; /* Adiciona espaçamento abaixo da imagem */
    }
    

    footer .container p {
        font-size: 12px;
    }

    .copyright span {
        display: block;
        width: 100%;
        line-height: 20px;
        font-size: 14px;
    }

    .copyright span:last-child {
        margin-bottom: 20px;
    }

    .copyright span.pipe {
        display: none;
    }

    .btns-releases a {
        word-wrap: break-word;
    }

    #button.show {
        opacity: 0;
        visibility: hidden;
    }

    h2 {
        font-size: 38px;
    }

    .btn-whatsapp {
        margin: 35px auto 25px;
        height: auto;
    }

    #redes-sociais span {
        display: block;
    }

    .social-buttons {
        max-width: 235px;
        margin-bottom: 25px;
    }
    #banner-excelencia{
        min-height: 330px;
    }
    #banner-excelencia h3{
        font-size: 48px;
        line-height: 48px;
        padding: calc((330px - 48px) /2) 0;
    }
    
    #banner-excelencia-marca-da-agua{
        display: none;
    }

    #projetos {        
        padding-bottom: 100px;
    }

    #fale-conosco {
        padding-top: 100px;
    }

    
        #fale-conosco h2 {
            font-size: 41.6px; /* 52px - 20% */
            line-height: 38.4px; /* 48px - 20% */
        }
    
        #fale-conosco h5 {
            font-size: 16px; /* 20px - 20% */
            line-height: 16px; /* 20px - 20% */
        }
    
        #fale-conosco h6 {
            font-size: 19.2px; /* 24px - 20% */
            line-height: 19.2px; /* 24px - 20% */
        }
    
        #fale-conosco p {
            font-size: 16px; /* 20px - 20% */
            line-height: 20.8px; /* 26px - 20% */
        }
    
        #fale-conosco .telefone {
            font-size: 22.4px; /* 28px - 20% */
            line-height: 22.4px; /* 28px - 20% */
        }
    
        #fale-conosco .destaque {
            font-size: 17.6px; /* 22px - 20% */
            line-height: 17.6px; /* 22px - 20% */
        }
    
        #fale-conosco .social-icons a {
            font-size: 1.2rem; /* 1.5rem - 20% */
        }
    
        #fale-conosco .form-check-label {
            font-size: 11.2px; /* 14px - 20% */
            line-height: 11.2px; /* 14px - 20% */
        }
       
    

}

/* * {
    border: 1px solid red !important;
} */

:root {
    --cookie-bg: #595959;
    --cookie-text-color: #fff;
    --cookie-btn-bg: #1D1D1B;
    --cookie-btn-bg-hover: #B1B1B1;
    --cookie-btn-text: #fff;
    --cookie-btn-text-hover: #1D1D1B;
}

.wrap-cookie {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998
}

.mensagem-cookie {
    display: flex;
    width: 75%;
    position: fixed;
    bottom: 0;
    left: 50%;
    margin: 0 0 0 -40%;
    z-index: 9999;
    padding: 10px;
    background-color: var(--cookie-bg);
    font-size: 12px;
    font-family: arial
}

.mensagem-cookie p {
    align-self: center;
    padding: 0 10px;
    margin: 0;
    color: var(--cookie-text-color);
    font-size: 14px;
    font-weight: 100
}

.mensagem-cookie .fechar.desktop {
    display: block;
    font-size: 14px;
    text-align: center;
    line-height: 57px;
    color: var(--cookie-btn-text);
    border-left: 1px solid var(--cookie-bg);
    font-weight: 700;
    padding: 0 20px;
    background: var(--cookie-btn-bg);
    height: 55px;
    align-self: center;
    text-decoration: none;
    transition: all .3s ease-in-out
}

.mensagem-cookie .fechar.desktop:hover {
    color: var(--cookie-btn-text-hover);
    background: var(--cookie-btn-bg-hover)
}

@media(max-width: 768px) {
    .mensagem-cookie {
        width: 100%;
        left: 40%
    }
}