@font-face {
    font-family: 'Popins';
    src: url(poppins/Poppins-Regular.ttf);


}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Popins;
}

#welcome-screen {
  position: fixed; /* fixa na tela */
  top: 0; 
  left: 0;
  font-family: Popins;
  width: 100vw;
  height: 100vh;
  background-color: #9C3127; /* cor de fundo, pode mudar */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* fica na frente de tudo */
  font-size: 2.5rem;
  font-weight: bold;
  color: #fffdfd;
  transition: opacity 0.3s ease;
}

#welcome-screen.hidden {
  opacity: 0;
  pointer-events: none; /* deixa de capturar clique */
}


body{
    background-color: #ffffff;
    min-height: 100vh;
}

.container{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4%;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    font-weight: 600;
}

nav .menu-icon{
    cursor: pointer;
    display: none;
}

nav .logo a{
    font-size: 45px;
    font-weight: bold;
    color: #0000;
    text-decoration: none;
}

.logo img {
    height: 60px; /* Ajuste a altura conforme necessário */
    width: auto; /* Mantém a proporção */
    margin-top: 40px;
}

nav ul{
    display: flex;
    list-style: none;
    align-items: center;
    padding: 0;
    

}

nav ul li a {
    padding: 0 15px;
    font-size: 17px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease; /* Definindo transição para cor e transformação */
    display: inline-block; /* Faz com que o link se comporte como um bloco para aplicar transformação */
}

nav ul li a:hover {
    color: #C1272D;
    transform: scale(1.1); /* Aumenta o tamanho da letra */
}


nav ul button {
    border: none;
    background-color: #bd0000;
    color: white;
    padding: 9px 23px;
    border-radius: 7px;
    font-size: 16px;
    letter-spacing: 1px;
    margin: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

nav ul button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background-color: rgba(189, 0, 0, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glow 2s infinite ease-in-out;
    opacity: 0.6;
    pointer-events: none;
}

nav ul button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px 10px rgba(189, 0, 0, 0.6);
}

@keyframes glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}


main{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width:1300px;
    margin: 0 auto;
    padding: 10px;
}

.text-bx{
    width: 40%;
}

.text-bx h1{
    font-size: 2rem;
    text-transform: uppercase;
    color: #000000;
    font-weight: 900;
}

.text-bx h1 strong{
    color: #9C3127;
}

.text-bx p{
    font-weight: 300;
    color: #000000;
    margin-top: 20px;
    font-size: 18px;
}
span{
    color: #000000;
}

.text-bx .input-bx{
    margin: 20px 0;
    display: flex;
    gap: 10px;
    
}
.text-bx .input-bx input{
    width: 60%;
    display: block;
    height: 50px;
    padding: 10px;
    border: none;
    outline: none;
    color: #9C3127;
    border-radius: 7px;
    background-color: rgba(142, 142, 142, 0.168);
    
}

.text-bx .input-bx input::placeholder{
    color: #e4e4e4cc; 
}
.text-bx .input-bx button{
    outline: none;
    border: none;
    padding: 10px 20px;
    background-color: #00bdb4;
    color:rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 7px;
    font-size: 15px;
}


.img-bx{
    width: 60%;
    
}
    

.img-bx img{
    width: 75%;
    margin-top: 70px;
    margin-left: 50px;
}

#sobre{
    color: rgb(0, 0, 0);
    background-color: #9C3127;
    margin-top: 50px;
    margin-bottom: 70px;
    padding-top: 55px;
    padding-bottom: 55px;
    
}

#sobre h3 {
    text-align: center;
    font-size: 30px;
    margin-top: 15px;
}

.sobre01{
    
    font-size: 18px;
    max-width: 900px; /* Define uma largura máxima */
    margin: 0 auto;    /* Centraliza horizontalmente */
    padding: 0 20px;   /* Garante espaçamento lateral em telas menores */
}

.conteiner-bx .sobre01{
    text-align: center;
    margin-bottom: 20px;
}

.cards{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#sobre .card-item{
    background-color: #ffffff;
    margin: 15px;
    border-radius: 14px;
    text-align: center;
    width: 350px;
    height: 300px;
    transition: 0.3s;
}
#sobre .nome{
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}
#sobre .card-item:hover{
    background-color: #ff7373;
    
}

.cards p {
    padding: 0 10px; /* Apenas nas laterais */
}

.button-container-s {
    display: flex;
    justify-content: center; /* Centraliza o botão horizontalmente */
    margin-top: 20px;
}

.Chamada-s {
    border: none;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 7px;
    font-size: 17px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   
    margin-bottom: 20px;
    
}

/* Efeito de escala e brilho ao passar o mouse */
.Chamada-s:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.6);
}



@keyframes glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

 aside{
margin-top: 150px;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: row-reverse;
max-width:1300px;
margin: 0 auto;
padding: 10px;
}


.button-container {
    display: flex;
    justify-content: center; /* Centraliza o botão horizontalmente */
    margin-top: 100px;
}

.Chamada {
    border: none;
    background-color: #9C3127;
    color: rgb(255, 255, 255);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 7px;
    font-size: 17px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    
}

/* Efeito de escala e brilho ao passar o mouse */
.Chamada:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px 5px rgba(189, 0, 0, 0.6);
}

/* Efeito de pulsação sutil */
.Chamada::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background-color: rgba(189, 0, 0, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glow 2s infinite ease-in-out;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

.text-bh-01{
    width: 40%;

}

.text-bh-01 h1{
    font-size: 2rem;
    text-transform: uppercase;
    color: #000000;
}

.text-bh-01 h1 strong{
    color: #9C3127;
}

.text-bh-01 p{
    
    color: #000000;
    font-weight: 400;
    margin-top: 20px;
    font-size: 17px;
}

.cor{
    margin-top: 110px;
    background-color: #EAEAEA;
}
#faq {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 50px;
    
}

.pq-bx h1{
    text-align: center;
    font-size: 40px;
    color: #9C3127;
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid;
    background-color: #979797b0;
    border-radius: 15px;
    padding: 15px 0;
    padding-left: 10px;
    margin-top: 15px;
}

.faq-question {
    width: 100%;
    color: rgba(2, 2, 2, 0.822);
    background: none;
    border: none;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 10px;
    font-size: 16px;
    color: #000000;
}

/* Seta animada */
.arrow {
    transition: transform 0.3s ease;
}

/* Quando a resposta estiver visível */
.faq-item.active .faq-answer {
    max-height: 150px;
    padding: 10px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.button-container-f {
    display: flex;
    justify-content: center; /* Centraliza o botão horizontalmente */
    margin-top: 20px;
}

.Chamada-f {
    border: none;
    background-color: #00bdb4;
    color: white;
    padding: 15px 35px;
    border-radius: 22px;
    font-size: 17px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    
}

/* Efeito de escala e brilho ao passar o mouse */
.Chamada-f:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px 5px rgba(0, 189, 180, 0.6);
}

/* Efeito de pulsação sutil */
.Chamada-f::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background-color: rgba(0, 189, 180, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glow 2s infinite ease-in-out;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

.conteiner_sp {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente os filhos */
    margin-top: 80px;
}

.conteiner_sp h1 {
    text-align: center;
    margin-bottom: 20px; /* espaço entre título e mapa */
}

.conteiner_sp iframe {
    border-radius: 10px;
    width: 100%;       /* ocupar toda a largura do container */
    max-width: 800px;  /* limitar a largura máxima */
    height: 400px;     /* altura padrão de mapas */
    border: none;      /* remover borda padrão do iframe */
    box-shadow: 0 0 10px rgba(0,0,0,0.2); /* sombra opcional pra destaque */
}

article {
  margin: auto;
  display: flex;
  align-items: center; /* Centraliza verticalmente */
  justify-content: space-between;
  max-width: 1300px;
  padding: 10px;
  text-align: left; /* Deixa o texto alinhado à esquerda (mais elegante) */
}

.text-tx {
  width: 40%;
}

.text-tx h1 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #000000;
  font-weight: 900;
}

.text-tx p {
  font-weight: 300;
  color: #000000;
  margin-top: 20px;
  font-size: 18px;
}




footer {
    background-color: #141E24;
    color: #fff;
    padding: 30px 20px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-top {
    text-align: center;
  }
  
  .footer-top .logo img {
    width: 80px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .footer-top .logo img:hover {
    transform: scale(1.1);
  }
  
  .footer-top .cta {
    margin-top: 10px;
    font-size: 14px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #00BFFF;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 6px;
  }
  
  .footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #fff;
  }
  
  .footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    font-size: 20px;
    color: #aaa;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #fff;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 26px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* isso mantém o formato redondo */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s ease;
    text-decoration: none;
}

  
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
  
  

@keyframes appear{
    from {
        opacity: 0;
        scale: 0.5;
    }
    to{
        opacity: 1;
        scale: 1;

    }
}

.conteiner-bx,.text-bh-01, .faq-item, .button-container, .button-container-f, .button-container-s, article{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover
    40%;

}


  
@media (max-width:970px) {
    nav .menu-icon{
        display: block;
        filter: brightness(0) saturate(100%);
    }   
 nav ul {
    position: fixed;
    width: 60%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    opacity: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: #9C3127;
    backdrop-filter: blur(6px); /* Efeito de desfoque */
    box-shadow: 4px 0 20px rgba(0,0,0,0.3); /* Sombra lateral */
    z-index: 999;
}
    nav ul.active{
        transform: translateX(0);
        opacity: 1;
    }

    nav ul li{
        padding: 10px;
    }
    nav ul li a{
        font-size: 18px;
        color: white;
    }
    nav ul button{
        background-color: black;
        font-size: 18px;
        margin: 10px;
    }

    main{
        flex-direction: column;
    }
    .text-bx,
    .img-bx{
        width: 100%;
        text-align: center;
        
    }

    .text-bx{
        margin-bottom: 40px;
    }

    .text-bx h1{
        font-size: 35px;
    }

    .text-bx p{
    font-size: 15px;
    }
    .text-bx .input-bx{
        justify-content: center;

    }

    .text-bh-01,
    .img-bx{
        width: 100%;
        text-align: center;
    }
    .text-bh-01{
        margin-bottom: 40px;
    }

    .text-bx .input-bx{
        justify-content: center;
    }

    .text-bh-01 h1{
        font-size: 35px
    }

    .text-bh-01 p {
        font-size: 15px;
        font-weight: 600;
    }
    .conteiner-bx h3{
        font-size: 20px;
    }

    .sobre01 p{
        font-size: 17px;
    }
    /*.*/
    nav ul li a:hover { 
        color: #005652;
    }

    #sobre .card-item{
        width: 100%;

    }

    aside{
        flex-direction: column;

}

 .footer-container .logo img {
        width: 60px; /* Reduz a logo em telas pequenas */
    }

    footer {
        padding: 15px;
    }

    .footer-container p {
        font-size: 14px;
    }
    .footer-container .logo img {
        width: 80px; /* Reduz a logo em telas pequenas */
    }

    footer {
        padding: 15px;
    }

    .footer-container p {
        font-size: 14px;
    }
}

