/* Reset De Fabríca */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@font-face {
  font-family: "Chillax";
  src: 
  url(../fonts/Chillax-Regular.otf),
  url(../fonts/Chillax-Bold.otf),
  url(../fonts/Chillax-Light.otf),
  url(../fonts/Chillax-Extralight.otf),
  url(../fonts/Chillax-Medium.otf),
  url(../fonts/Chillax-Semibold.otf),
  url(../fonts/Chillax-Variable.ttf);
}


@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:wght@100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
@font-face {
  font-family: "Wondra";
  src: 
  url(../fonts/Wondra.otf),
}


* {
    padding:0;
    margin:0;
    vertical-align:baseline;
    list-style:none;
    border:0
    }



body{
  font-family: "Poppins";
}



/* Menu */
.div-sor{

  display: flex;
  align-items: center;
  justify-content: center;
}

.div-sor .li-personalizada{
    margin-top: -10px;
  margin-left: 10px;
}

.div-sor li:hover{
  border: 2px solid green; 
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  transform: scale(1.10); 
}
#header li:hover{
  border: 2px solid green; 
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  transform: scale(1.10); 
}

#header li{
  border: 2px solid transparent; 
    border-radius: 8px; 
    cursor: pointer;
    transition: all 0.3s ease; 
    margin-top: 5px;
}
  .menu ul{
    padding-right: 5%;
    padding-top: 3%;
  }

  
  a {
   
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    max-height: 150px;
  
    max-width: 150px;
  }
  
  #logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  #header {
    box-sizing: border-box;
    height: 70px;
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #000000;

  
  }
  
  #menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
  }
  .div-sor1{
    display: none;
  }
  #menu a {
  
    text-decoration: none;
    color: white;
    display: block;
    padding: 0.5rem;
  }
  
  #btn-mobile {
    display: none;
  }
  
  header img{
    margin-top: 80px;
    width: 150px;
    height: 180px;
  }
  
  header .a-header{
    display: none;
  }
  
  header .a-header button{
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.705);
    width: 100px;
    font-size: 11px;
    background-color: black;
  }

  header p {
    color: wheat;
  }
  
  header img{
    margin-top: -0.1px;
  }

  @media (max-width: 1000px) {
    .div-sor1{
        display: block;
    }
    .div-sor{
        display: none;
    }
    #menu {
      display: block;
      position: absolute;
      width: 100%;
      top: 70px;
      right: 0px;
      background: black;
      transition: 0.6s;
      z-index: 1000;
      height: 0;
      visibility: hidden;
      overflow-y: hidden;
    }
    header .a-header{
      display: block;
    }
    #nav.active #menu {
      height: 500px;
      visibility: visible;
      overflow-y: auto;
    }
    #menu a {
      padding: 1rem 0;
      margin: 0 1rem;
      border-bottom: 2px solid rgba(0, 0, 0, 0.767);
    }
    #btn-mobile {
      display: flex;
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border: none;
      background: none;
      cursor: pointer;
      gap: 0.5rem;
      width: 100%;
    }
    #hamburger {
      border-top: 2px solid;
      width: 20px;
      color: white;
    }
    #hamburger::after,
    #hamburger::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      margin-top: 5px;
      transition: 0.3s;
      position: relative;
    }
    #nav.active #hamburger {
      border-top-color: transparent;
    }
    #nav.active #hamburger::before {
      transform: rotate(135deg);
    }
    #nav.active #hamburger::after {
      transform: rotate(-135deg);
      top: -7px;
    }
  }

.principal{
  display: flex;
  justify-content: center;
}

.principal img{
  width: 550px;
  margin: 0 auto;
  
}

/* Fade Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fade-in {
    animation: fadeIn 0.8s forwards;
}
.fade-out {
    animation: fadeOut 1s forwards;
}

/* Modal */
#popup-sucesso {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#popup-sucesso .modal-content {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
}

#popup-sucesso .modal-content .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s;
}
#popup-sucesso .modal-content .close-btn:hover {
    color: #000;
}


footer{
  background-color: black;
    font-family: 'Poppins';
  width: 100%;
  font-size: 20px;
  text-align: center;
  color: white;
  margin-top: 40px;

}

footer .limitador{

padding: 2%;
}


footer h3{
    font-size: 1rem;
}

footer p{
    font-size: 0.9rem;
}

footer .div-logo{
max-width: 150px;
display: flex;
justify-content: left;

}

.separador_footer{
    display: flex;
    padding: 2%;
}

footer .div-logo img{
width: 200px;
}

footer .div-text ul{
display: flex;
flex-direction: column;
justify-content: left;
align-items: left;
text-align: left;
}

footer .div-text ul li{

border: 2px solid transparent; 
border-radius: 8px; 
cursor: pointer;
transition: all 0.3s ease; 
}
footer .div-text ul li a{
    font-size: 0.9rem;
    align-items: left;
    border: 2px solid transparent; 
    border-radius: 8px; 
    cursor: pointer;
    transition: all 0.3s ease; 
    }

footer .div-text ul li:hover{
  border-radius: 15px;
  border: 2px solid green; 
  padding: 1%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  transform: scale(1.05); 
}
footer .div-contato, .div-endereco{
    padding: 4%;
    text-align: left;
}
footer .div-icons{
    padding: 4%;

justify-content: center;
align-items: center;
flex-direction: column;
}

footer .div-icons svg{
  border: 2px solid transparent; 
margin-left: 10px;
transition: all 0.3s ease; 

}

footer .div-icons svg:hover{
  border: 2px solid green; 
  border-radius: 12.5px;
  padding: 2%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  transform: scale(1.05); 
}

footer .copyright{
margin-top: 20px;
text-align: center;
display: flex;
flex-direction: column;
justify-items: center;

}



@media (max-width: 1000px){
    .separador_footer{    
            display: grid;
            grid-template-columns: repeat(2, 1fr);
    }

    .div-endereco, .div-text ul, .div-contato{
        padding: 0;
    }
    footer .div-text ul{
    
      flex-direction: column;
    }
    footer .div-text ul li{
      margin-left: 0;

    }
    
    footer .div-icons{
      text-align: left;
    }
    }

@media (max-width: 500px){
    .separador_footer .div-text{
        padding: 5%;
    }
    .separador_footer .div-contato{
   
        padding: 5%;
    }
    .separador_footer .div-icons{
   
        padding: 5%;
    }
    .separador_footer .div-endereco{
        padding: 5%;
    }
    .separador_footer{    
        display: flex;
        text-align: left;
        flex-direction: column;
        margin: 0 auto;
      
}
}



/* Encontro */


form {
  margin-top: 20px;
  display: flex;
  padding: 2%;
  width: 500px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #F0F8FF ;
  border-radius: 15px; 
}

.div_text{
  margin-top: 20px;
  padding: 5%;
}


.comida {
    width: 100%;
    padding: 10px;
    border: 15px solid #007bff;
    border-radius: 15px;
    background-color: #f0f8ff;
    font-size: 16px;
    margin-top: 20px;
    transition: border-color 0.3s;
}

.pesoField {
    margin-top: 20px;
    width: 100%;
}

.pesoField label {
    display: flex;
    margin-bottom: 20px;
    font-weight: 500;
    color: #333;
}

.peso {
    width: 100%;
    padding: 10px;
    border: 10px solid #007bff;
    border-radius: 15px;
    background-color: #f0f8ff;
    font-size: 16px;
    margin-top: 20px;
    transition: border-color 0.3s;
}


label {

  display: block;
  margin-top: 10px;
}
input, select {
  width: 400px;
  padding: 8px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
button {
  margin-top: 15px;
  padding: 10px;
  background: #007bff;
  color: #fff;
  border: none;
  
  width: 250px;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background: #0056b3;
}


/* Estilo específico para telas menores (ex: smartphones) */
@media (max-width: 600px) {
  textarea#nomes_filhos {
    min-height: 120px; /* Ajuste na altura mínima para melhorar a visualização em telas pequenas */
    max-height: 180px; /* Ajuste na altura máxima para telas pequenas */
  }
}

@media (max-width: 560px){
  form{
    width: 300px;
  }
  input, select {
    width: 250px;
 
  }

  .div_text p{
    font-size: 15px;
  }
  }

  @media (max-width: 340px){
    form{
      width: 230px;
    }
    input, select {
      width: 180px;
   
    }
  
    .div_text p{
      font-size: 11px;
    }

    h1{
      font-size: 20px;
    }

    button {
      margin-top: 15px;
      padding: 10px;
      background: #007bff;
      color: #fff;
      border: none;
      
      width: 180px;
      border-radius: 4px;
      cursor: pointer;
    }
    
    }
    
