*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
}

/* HEADER */

.header{
position:fixed;
width:100%;
top:0;
left:0;
z-index:999;
transition:0.3s;
}

.header.scrolled{
background:#fff;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.container-header{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:20px;
}

.logo img{
height:100px;
}

/* MENU */

.nav ul{
display:flex;
gap:35px;
list-style:none;
align-items:center;
}

.nav a{
text-decoration:none;
color:#fff;
font-weight:500;
transition:0.3s;
}

.header.scrolled .nav a{
color:#000;
}

.btn-menu a{
border:2px solid #cc0000;
padding:8px 15px;
border-radius:6px;
}

/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:25px;
height:3px;
background:#fff;
display:block;
}

.header.scrolled .hamburger span{
background:#000;
}


/* HERO */

.hero{
height:95vh;
background:url("img/capa.png") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
top:0;
left:0;
}

.hero-content{
position:relative;
color:#fff;
max-width:800px;
}

.hero h1{
font-size:50px;
font-weight:800;
color: #faed04;
}

.hero span{
color:#cc0000;
font-size:65px;
}

.hero p{
margin-top:20px;
font-size:18px;
}

.hero-buttons{
margin-top:30px;
display:flex;
justify-content:center;
gap:20px;
}

.btn-primary{
background:#cc0000;
padding:12px 25px;
color:#ffff;
text-decoration:none;
border-radius:5px;

}

.btn-outline{
border:2px solid #cc0000;
padding:12px 25px;
color:#fff;
text-decoration:none;
border-radius:5px;
}


/* CARDS */

.cards{
margin-top:-80px;
position:relative;
z-index:5;
}

.cards-container{
max-width:1000px;
margin:auto;
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.card{
background:#cc0000;
padding:30px;
border-radius:8px;
text-align:center;
width:280px;
box-shadow:0 10px 20px rgba(0,0,0,0.15);
color: #fff;
}

.card img{
width:60px;
margin-bottom:10px;
}

.card.destaque{
background:#faed04;
color:#000;
}

/* MOBILE */

@media(max-width:768px){

.container-header{
flex-direction:row-reverse;
}

.hamburger{
display:flex;
}

.nav{
position:fixed;
top:0;
left:-100%;
width:100%;
height:100vh;
background:#fff;
display:flex;
justify-content:center;
align-items:center;
transition:0.4s;
}

.nav.active{
left:0;
}

.nav ul{
flex-direction:column;
gap:30px;
}

.nav a{
color:#000;
font-size:22px;
}

.hero h1{
font-size:32px;
}

.hero span{
font-size:40px;
}

.hero-buttons{
flex-direction:column;
}

/* cards mobile */

.cards-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.card{
width:100%;
}

.card:last-child{
grid-column:span 2;
max-width:250px;
margin:auto;
}

}

/*sobre nos*/


.about-section {
  background: #fff;
  padding: 100px 5%;
  color: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-tag {
  color: #faed04;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}

.about-content h2 {
  font-size: 46px;
  line-height: 1.2;
  margin: 15px 0 20px;
  color: #cc0000;
}

.about-description {
  color: #0e0e0e;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-features li {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  max-width: 52px;
  max-height: 52px;
  background: #faf9f9;
  border-radius: 12px;

  flex-shrink: 0;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 0 0 0 rgba(255, 0, 0, 0);
}

.icon-box img {
  width: 35px;
}

.about-features li:hover .icon-box {
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.7);
  transform: translateY(-2px);
}

.about-features h4 {
 
  font-size: 20px;
  color: #cc0000;
}

.about-features p {
  font-size: 14px;
  color: #0e0e0e;
}

.about-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  margin-bottom: 40px;
}

.about-checks div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #0e0e0e;
}

.about-checks img {
  width: 18px;
}

.about-btn {
  display: inline-block;
  background: #faed04;
  color: #000;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #fffb95;
  
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-checks {
    grid-template-columns: 1fr;
  }

   .icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
  }
}

/*serviços*/


.services-section {
  padding: 100px 5%;
 background:url("img/capa2.png") center/cover no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.services-header h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 10px;
}

.services-header p {
  color: #fff;
  margin-bottom: 60px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start; 
}

.services-section {
  overflow: hidden;
}

.service-card {
  border-radius: 18px;
  overflow: hidden;

  transition: 0.4s;
  box-shadow: 0 0 0 rgba(230, 126, 34, 0);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255, 247, 239, 0.7);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 25px 20px;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-content.dark {
  background: #cc0000;
  color: #fff;
}

.service-content.orange {
  background: #000;
  color: #fff;
}

.service-btn {
  display: inline-block;
  background: #faed04;
  color: #000;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.service-btn:hover {
  box-shadow: 0 0 15px rgba(230, 34, 34, 0.8);
}

.services-action {
  margin-top: 60px;
}

.bouton {
  display: inline-block;
  background: #faed04;
  color: #000;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.bouton:hover {
  box-shadow: 0 0 25px rgba(230, 34, 34, 0.9);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 26px;
  }

  .services-section {
  padding: 100px 5%;
  background:url("img/capa2-celular.png") center/cover no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

}

/*area de atendimentos*/

.areas{

padding:100px 8%;
background:#fff;
text-align:center;

}

.areas h1{

font-size:40px;
margin-bottom:10px;
color: #cc0000;

}

.subtitulo{

color:#666;
margin-bottom:60px;

}

.areas-container{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
max-width:1200px;
margin:auto;
align-items:stretch;

}

/* MAPA */

.mapa-box{

background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);

display:flex;
flex-direction:column;


}

.mapa-titulo{
background-color: #cc0000;
color:white;
padding:15px;
font-weight:600;

}

#map {
  width: 100%;
  flex: 1;
  min-height: 300px; 
}

/* LISTA */

.regioes-box{

background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);

}

.regioes-box h3{

margin-bottom:25px;

}

.regioes-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:15px;

}

.cidade{

padding:14px;
border-radius:10px;
background:#f2f2f2;
cursor:pointer;
transition:.3s;
font-weight:500;

}

.cidade:hover{
background-color: #faed04;
 color:#000;
transform:scale(1.03);

}


.btn-area{

display:inline-block;
margin-top:30px;
background-color: #cc0000;
color:white;
padding:15px 30px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.btn-area:hover{

background:#000;

}


@media(max-width:900px){

.areas-container{

grid-template-columns:1fr;

}

#map{

height:350px;

}

.regioes-grid{

grid-template-columns:1fr;

}

}

@media(max-width:900px){

.areas-container{
grid-template-columns:1fr;
}

.mapa-box{
order:2;
}

.regioes-box{
order:1;
}

  #map {
    height: 300px !important; 
    flex: unset !important; 
  }
}


/*diferenciais*/


.planejamento {
  background: url("img/capa3.png") center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.planejamento::before {
  content: "";
  position: absolute;
  inset: 0;
 
  z-index: 0;
}

.planejamento-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.planejamento h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
 color: #faed04;
}

.planejamento h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
}

.planejamento-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.planejamento-card {
  background-color: #00000090; 
 
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  width: 260px;
  text-align: center;
  opacity: 0;
 
 
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}


.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.planejamento-card.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.planejamento-card:hover {
 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.planejamento-card img {
  width: 50px;
  margin-bottom: 15px;
  
}
.planejamento-card h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
}

.planejamento-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
}

.btn-planejamento {
  margin-top: 50px;
}




@media (max-width: 900px) {



  .planejamento-container {
    flex-direction: column;
    align-items: center;
  }

  .planejamento h2 {
    font-size: 1.8rem;
  }

  .planejamento-card {
    width: 85%;
    margin-bottom: 20px;
  }

  .planejamento-card p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
}

.planejamento-card img {
  width: 60px;
  margin-bottom: 15px;
  
}
}

.guincho-container{
  max-width:1200px;
  margin:auto;
  padding:60px 30px;
}

.guincho-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  background:#f3f3f385;
  border-radius:16px;
  padding:40px;
}

.guincho-text{
  max-width:450px;
}

.guincho-text h2{
  font-size:43px;
  margin-bottom:10px;
  color: #cc0000;
}

.guincho-text p{
  color:#555555c8;
  margin-bottom:25px;
}

.btn-guincho{
  display:inline-block;
  padding:14px 28px;
  background:#faed04;
  color: #000;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

.guincho-image img{
  max-width:100%;
}

/* MOBILE */
@media (max-width:768px){

  .guincho-content{
    flex-direction:column;
    text-align:center;
  }

  .guincho-text{
    max-width:100%;
  }

  .guincho-image{
    margin-top:20px;
  }

  .guincho-text h2{
  font-size:35px;
  margin-bottom:10px;
  color: #cc0000;
}

}

/*footer*/

.footer {
  background:  #0e0e0e;
  color: #fff;
  padding-top: 70px;
}


.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}


.footer-col h4 {
  font-size: 1.0rem;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 0.90rem;
  line-height: 1.6;
  margin-top: 20px;
}


.footer-logo {
  max-width: 140px;
}


.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}


.footer a,
.footer p {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
   font-size: 0.83rem;
}

.footer a:hover,
.footer p:hover {
  color: #cc0000;
}

.footer-small {
  font-size: 0.8rem;
  margin-top: 6px;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
   background: #cc0000;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 50, 50, 0.6);
  color: #000;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }
}
