*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/bannertest.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 1% 8%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 500px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 50px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 52px;
}
.text-box p{
    margin: 10x 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background-color: #f44336;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 150px;
        top: 0px;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 0px;
    }
    nav img{
        width: 300px;
    }
}


/*------ ferias ------*/


/* FUNDO DO POPUP */
.popup {
  display: flex;
  align-items: center;
  justify-content: center;

  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.65);
}

/* CAIXA DO POPUP */
.natal-popup {
  position: relative;
  margin: auto;
  background: linear-gradient(135deg, #fffaf0, #ffe5e0);
  border: 4px solid #d00000;
  border-radius: 18px;
  padding: 40px 35px;
  text-align: center;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 10; /* importante */
}

/* Ícone natalino */
.icone-natal {
  font-size: 52px;
  margin-bottom: 15px;
}

/* Título e texto */
.natal-popup h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #b40000;
  text-shadow: 1px 1px 0px #fff;
}

.natal-popup p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* BOTÕES */
.ok-btn, .close-btn {
  cursor: pointer;
  z-index: 20; /* acima da neve */
}

.ok-btn {
  background: #0d8a1a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
  border: none;
  box-shadow: 0px 4px 10px rgba(0,100,0,0.3);
  transition: 0.25s;
}
.ok-btn:hover {
  background: #0a6d15;
}

.close-btn {
  background: none;
  border: none;
  font-size: 34px;
  position: absolute;
  right: 15px;
  top: 10px;
  color: #bb0000;
  transition: 0.2s;
}
.close-btn:hover {
  color: #ff0000;
}

/* NEVE */
.snow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* não bloqueia cliques nos botões */
  overflow: hidden;
  z-index: 5;
}

.snowflake {
  position: absolute;
  top: -10px;
  color: white;
  font-size: 12px;
  opacity: 0.9;
  animation: fall linear infinite;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}

@keyframes fall {
  0% { transform: translateY(-10vh) translateX(0); }
  100% { transform: translateY(100vh) translateX(40px); }
}
/*------ ferias ------*/

/*------ Sobre ------*/

.sobre{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;  
}
.row{
    margin-top: 10%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5%;
}
.sobre-col{
    flex-basis: 31%;
    background: #fdeded;
    border-radius: 10px;
    margin-bottom: 15%;
    padding: 50px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.sobre-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*------- contato -------*/
.sub-header{
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/contato3.webp);
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 50vh;
}
.text-box2{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box2 h1{
    font-size: 37px;
}
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}
.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
    margin-left: -16px;
}
.contact-col div h5{
    font-size: 15px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
    margin-left: -16px;
}
.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.red-btn:hover{
    color: #fff;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}



/*------- footer --------*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.icons .fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.icon-facebook{
    text-decoration: none;
}
.icon-instagram{
    text-decoration: none;
}
.icon-linkedin{
    text-decoration: none;
}