 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html{
      scroll-behavior:smooth;
    }
    body {
      font-family: "Open Sans", sans-serif;
      overflow-x: hidden;
      letter-spacing:-0.01rem;
      padding-top:50px;
    }
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height:80px;
      z-index: 999; 
      background-image: linear-gradient(to top, #545a79 50%, #303449);
      color: #fff;
      padding: 10px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 1px 3px 20px rgb(49, 49, 49);
      transition:padding 0.3s ease, background 0.3s ease;
    }
    header.shrink{
      padding: 0px 20px;
    }
    .logo img{
      width:80%;
      padding:20px;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 15px;
    }
    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 0.8rem;
      transition: 0.3s;
    }
    nav ul li a:hover {
      color: #f1e31f;
    }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }
    .hamburger span {
      width: 25px;
      height: 3px;
      background: #fff;
      display: block;
    }
    .menu-overlay {
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      width: 40%;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9;
    }
    .menu-overlay ul {
      list-style: none;
      text-align: center;
    }
    .menu-overlay ul li {
      margin: 20px 0;
    }
    .menu-overlay ul li a {
      color: #fff;
      font-size: 0.9rem;
      text-decoration: none;
    }
    .chamada-overlay h2{
      position:absolute;
      top:320px;
      left: 26%;
      transform: translateX(-26%);
      color:#fff;
      background-color: rgba(0, 0, 0, 0.5);
      font-weight:400;
      font-size:43px;
      line-height:46px;
      padding: 60px;
      max-width:900px;
      border-radius:13px;
    animation-name: movimento1;
    animation-duration: 1.0s;
    animation-iteration-count: 1;
    animation-timing-function:ease-out;
    animation-fill-mode: both; 
    animation-delay:0.7s;
}
@keyframes movimento1{
    0% {top:-100px; opacity: 0.0;}
    50% {opacity: 0.5;}
    100% {top:300px; opacity: 1.0;}
}
    .foto-grande {
      max-height: 760px;
      overflow: hidden;
      animation: foto 1.5s ease-out forwards;
    }
    .foto-grande img {
      width: 100%;
      height: auto;
      display: block;
    }
    @keyframes foto{
    0% {opacity: 0.0;}
    50% {opacity: 0.5;}
    100% {opacity: 1.0;}
}
    .conteudo {
      padding: 10px 20px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .conteudo h2 {
      font-size: 3.5rem;
      font-weight:300;
      color:#2c253b;
      line-height: 1.2;
      margin-bottom: 35px;
      margin-top: 15px;
      position:relative;
      animation:slide 2s ease-out forwards;    
}
@keyframes slide{
    from{
        transform:translateX(-200px);
        opacity:0;
        }
    to{
        transform:translateX(0);
        opacity:1;
        }
    }
    .conteudo p {
      font-size: 1.3rem;
      line-height: 1.5;
      margin-bottom: -5px;
      color:rgb(0, 0, 0);
    }
    .modulos {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1980px;
      margin: 40px auto;
      padding: 20px 60px;
      background:#f5edd0;
    }
.modulo-item img {
  width: 100%;
  height: 300px;
  display: block;
  border-radius:10px;
  object-fit:cover;
  box-shadow: 1px 3px 10px rgb(150, 150, 150);
  transition: transform 0.3s ease;
}
.modulo-item img:hover{
  transform: scale(1.05);
}
.modulo-item h3 {
  text-align: center;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight:500;
  color:rgb(70, 70, 70);
}
.new{
  text-align: center;
  padding:60px 20px;
}
.new h2{
  font-size:1.8rem;
  font-weight:400;
  margin-bottom:30px;
  color:#2c253b;
}
.new img{
  width: 738px;
  height: 402px;
  object-fit:cover;
  max-width:100%;
  display:block;
  margin: 0 auto;
}
.texto-fundo {
  width: 100%;
  background: #f5edd0;
  padding: 90px 0;
}
.texto-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}
.texto-container h2 {
  font-size: 3.1rem;
  margin-bottom: 20px;
  font-weight:300;
  color:#2c253b;
  line-height: 1.2;
}
.texto-container p {
  font-size: 1.3rem;
  color: rgb(78, 78, 78);
  line-height: 1.5;
}
.branding{
  padding: 10px 20px;
  max-width: 1100px;
   margin: 0 auto;
}
.branding h2{
  font-size: 3.1rem;
  font-weight:300;
  color:#2c253b;
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 10px;
}
.branding p{
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 65px;
  color:rgb(78, 78, 78);
}
.portfolio{
  text-align: center;
  padding:80px 20px;
}
.portfolio h2{
  font-size:1.8rem;
  font-weight:400;
  margin-bottom:30px;
  color:#2c253b;
}
.portfolio img{
  width: 738px;
  height: 402px;
  object-fit:cover;
  max-width:100%;
  display:block;
  margin: 0 auto;
  margin-bottom:10px;
}
.formulario-fundo {
  width: 100%;
  background: #f5edd0;
  padding:90px;
  
}
.formulario-container {
  max-width: 770px;
  margin: 0 auto;
  padding: 0 20px;
}
.formulario-container h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight:400;
  color: #2c253b;
  margin-bottom: 40px;
}
.form-group {
  margin-bottom: 9px;
}
.form-group label {
  display: block;
  margin-bottom: 11px;
  font-weight: bold;
  color: #333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 11px;
  font-size: 1rem;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #666;
}
button[type="submit"] {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #545a79;
  color: #fff;
  border: none;
  border-radius: 11px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 60px;
}
button[type="submit"]:hover {
  background-color: #767da0;
}
.logoFoot{
  text-align:center;
  margin-top:-120px;
}
.logoFoot img{
  max-width:100px;
  margin-bottom:10px;
}
.footer-full {
      width: 100%;
      background-image: linear-gradient(to bottom, #545a79 50%, #303449);
      color: #fff;
      padding: 40px 0px 20px;
    }
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding:0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
    }
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight:200;
  color:#f1e31f;
    }
.footer-col ul {
  list-style: none;
  padding: 0;
    }
.footer-col ul li {
  margin-bottom: 8px;
    }
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-style:normal;
    }
.footer-col ul li a:hover {
  text-decoration:none;
  color:#f1e31f;
    }
.footer-col p {
  line-height: 1.4;
  font-size: 0.95rem;
    }
.social-icons a {
      margin-right: 10px;
      color: #fff;
      font-size: 24px;
      transition: color 0.3s ease;
    }
    .social-icons a:hover {
      color: #f1e31f;
    }

  .footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.68rem;
  opacity: 0.8;
}
.fone p{
font-size: 0.78rem;
margin-top:14px;

}
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 20%;
    padding: 15px;
    font-size: 65px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 8;
    transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5b;
}
@media (max-width: 1280px){
    .chamada-overlay h2{
      left: 19%;
      }
}
@media (max-width: 1024px) {
      nav ul {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .foto-grande img{
      max-height: 960px;
      margin-top:32px;
      }
      .conteudo h2 {
      margin-top: 78px;
      font-size:57px;
    }
     .chamada-overlay h2{
      top:150px;
      left: 4%;
      transform: translateX(-4%);
      font-size:35px;
      padding: 40px;
      } 
      hr{
        width:70%;
      }
    }
    @media (max-width: 820px){

      .conteudo{
        padding:38px;
      }
      .chamada-overlay h2{
      top:130px;
      left: 1%;
      transform: translateX(-1%);
      font-size:35px;
      background-color: rgba(0, 0, 0, 0.2);
      }
      .foto-grande img{
      padding-top:-40px;
      
      } 
      .conteudo h2 {
      margin-top:-35px;
    }
     .branding h2{
  padding:0 18px;
}
.branding p{
  padding:0 18px;
}
.formulario-fundo {
  padding:70px;
}
.texto-container h2 {
  padding:0 18px;
}
.texto-container p {
  padding:0 18px;
}
    .whatsapp-float {
    bottom: 320px;
  }
 .chamada-overlay h2{
      
    animation-name: movimento2;
    
}
@keyframes movimento2{
    0% {top:-100px; opacity: 0.0;}
    50% {opacity: 0.5;}
    100% {top:100px; opacity: 1.0;}
} 
} 
@media (max-width: 768px){
    .whatsapp-float {
    bottom: 500px;
  }
  .chamada-overlay h2{
      font-size:33px;
      margin-top:-21px;
      background-color: rgba(0, 0, 0, 0.5);
      }
}
@media (max-width: 600px){
    .chamada-overlay h2{
      display:none;
      }
      .conteudo h2 {
      font-size:55px;
    }
    .whatsapp-float {
    bottom: 150px;
  }
}
@media (max-width: 540px) {
    .chamada-overlay h2{
      top:160px;
      left: 14%;
      padding: 15px;
      transform: translateX(-14%);
      font-size:25px;
      line-height:32px;
      background-color: rgba(0, 0, 0, 0.7);
      }
      .foto-grande img{
      margin-top:32px;
    }
    .modulos {
    grid-template-columns: 1fr;
    max-width:400px;
  }
    .modulo-item h3{
      margin-bottom:20px;
    }
    .whatsapp-float {
    bottom: 50px;
  }
}
@media (max-width: 480px) {
  .logo img{
    width:30%;
  }
  .chamada-overlay h2{
      display:none;
      }
      .foto-grande img{
      margin-top:40px;
    }
      .conteudo h2 {
      font-size: 2.6rem;
      margin-top:-25px;
    }
    .branding h2{
  padding:0 18px;
}
.branding p{
  padding:0 18px;
}
.texto-container h2 {
  padding:0 18px;
}
.texto-container p {
  padding:0 18px;
}
.formulario-fundo {
  padding:90px 20px;
}
.logoFoot img{
    display:none;
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .modulos {
    grid-template-columns: 1fr;
    max-width:400px;
  }
  .whatsapp-float {
    bottom: 10px;
    right:15px;
  }
}
@media (max-width: 430px){
    header {
      padding: 5px 40px;
    }
    .logo img{
      width:220px;
      padding:0;
    }
    .foto-grande img{
      margin-top:32px;
    }
    .conteudo p {
      font-size: 1.15rem;
    }
    .quemsomos h2{
  font-size: 2.9rem;
}
.branding h2{
  font-size: 2.9rem;
}
}
@media (max-width: 414px){
  .whatsapp-float {
    bottom: 40px;
    right:15px;
  }
.conteudo h2 {
      font-size: 2.38rem;
    }
}
@media (max-width: 390px){
  .whatsapp-float {
    bottom: 30px;
    right:15px;
  }
.conteudo h2 {
      font-size: 2.32rem;
    }
  .conteudo p {
      font-size: 1.10rem;
    }
}