/*primeira parte do site*/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f2f2;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
 padding: 40px 100px 20px;
  z-index: 1000;
   background: #ffffff;
 
}

header.scrolled {
 background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
}

header.scrolled nav a {
  color: #000000c9;
}

.container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.logo img {
  height: 65px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 32px;
 
}

nav a {
  color: #000000e1;
  text-decoration: none;
  font-weight: 700;
}

.btn-header {
  background: #cf150e;
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;

  display: flex;              
  align-items: center;        
  gap: 8px;                   

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-header img {
  width: 16px;
  height: 16px;
}

.btn-header:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(207, 21, 14, 0.7);
}




@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

.mobile-text {
  display: none;
}

@media (max-width: 768px) {
  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }
}


@media (max-width: 768px) {

 
 header {
    padding: 20px;
    min-height: auto;
    background: transparent;
     background: #ffffff 
  }

  header.scrolled {
  background: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav {
    display: none;
  }


  .logo {
    position: static;
  }

  .logo img {
    height: 50px;
  }

  .btn-header {
    position: static;
    width: auto;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 25px;
  }


  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }
}


.hero-carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 120px; 
}

.carousel {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center; 
}
.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}


.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 5;
}

.slide.active {
  opacity: 1;
}

/* SETAS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.027);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}

.arrow.prev {
  left: 20px;
}

.arrow.next {
  right: 20px;
}

.arrow:hover {
  background: rgba(0,0,0,0.7);
}

/* MOBILE */
@media (max-width: 768px) {
  .carousel {
    height: 170px;
  }

  .arrow {
    font-size: 22px;
    padding: 8px 12px;
  }

    .hero-carousel {
    margin-top: 90px;
  }
}

@media (min-width: 1440px) {
  .carousel {
    height: 700px;
  }
}


.produtos {
  padding: 80px 8%;
   background: linear-gradient(
    to bottom,
    #ca0c1d 0%,
    #d11710 60%,
    #ff4b45 100%
  );
  text-align: center;
}

/* TITULO E SUB */
.titulo,
.subtitulo {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.titulo {
  font-size: 36px;
  margin-bottom: 10px;
  color: white;
}

.subtitulo p{
  font-size: 18px;
  color: #fff;
  margin-bottom: 50px;
}

/* GRID */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARDS */
.card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  position: relative;
  z-index: 1;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(5px);

  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* brilho suave */
.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(207,21,14,0.15), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

/* hover */
.card:hover {
  transform: translateY(-5px) scale(1.02);
}

/* 🔥 CARD DESTAQUE */
.card-destaque {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}

.card-destaque h3,
.card-destaque p {
  color: #fff;
}

.card-destaque .btn-card {
  background: #fff;
  color: #000;
}

.card-destaque .btn-card:hover {
  background: #cf150e;
  color: #fff;
}

/* IMAGEM */
.card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* TEXTO */
.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.card-destaque h3,
.card-destaque p {
  color: #fff;
}

/* BOTÃO */
.btn-card {
  display: inline-block;
  background: #cf150e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-card:hover {
  background: #a80f0a;
}

/* ANIMAÇÃO FINAL */
.aparecer {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .card-destaque {
    transform: scale(1);
  }
}


.sobre {
  padding: 100px 8%;
  background: #fff;
}

.sobre-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* TEXTO */

.sobre-texto h2 {
  font-size: 40px;
  color: #ca0c1d;
  margin-bottom: 20px;
}

.sobre-texto p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* BOTÃO */

.btn-sobre {
  display: inline-block;
  margin-top: 10px;
  background: #e5e5e5;
  color: #333;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-sobre:hover {
  background: #d0d0d0;
}

/* IMAGEM */

.sobre-img img {
  width: 100%;
  max-width: 500px;
}

/* RESPONSIVO */

@media (max-width: 900px) {

  .sobre-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre-img img {
    max-width: 350px;
    margin-top: 30px;
  }

}


/*banner*/

.cta-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.cta-container {
  width: 100%;
  max-width: 1100px;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;

  background: 
   
    url('img/banner.png') center/cover no-repeat;

  color: #fff;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0.95;
}

.cta-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.3;
}

/* CONTAINER DOS BOTÕES */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BOTÕES */
.cta-button {
  display: flex;
  align-items: center;
  gap: 8px;

  background: #2ecc71;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

/* ÍCONES */
.cta-button img {
  width: 18px;
  height: 18px;
}

/* BOTÃO SECUNDÁRIO */
.cta-button.secondary {
  background: #ca0c1d;
  color: #fdfdfd;
}

.cta-button.secondary:hover {
  background: #000000;
}

.cta-button:hover {
  background: #27ae60;
}

@media (max-width: 768px) {
  .cta-container {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}


/*area de atendimentos*/

.areas{

padding:100px 8%;
background:#fff;
text-align:center;

}

.areas h1{

font-size:40px;
margin-bottom:10px;
color: #ca0c1d;

}

.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: #ca0c1d;
color:white;
padding:15px;
font-weight:600;

}

#map {
  width: 100%;
  flex: 1;
  min-height: 300px; 
}


.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: #000;
 color:#fff;
transform:scale(1.03);

}


.btn-area{

display:inline-block;
margin-top:30px;
background-color: #ca0c1d;
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; 
  }
}


/*form*/


.cumulus-contato {
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cumulus-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.cumulus-form-box {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cumulus-tag {
  color: #cd0c07;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.cumulus-form-box h2 {
  margin: 10px 0;
  font-size: 32px;
}

.cumulus-subtitulo {
  color: #666;
  margin-bottom: 25px;
}

.cumulus-form-box input,
.cumulus-form-box select,
.cumulus-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.cumulus-form-box input:focus,
.cumulus-form-box select:focus,
.cumulus-form-box textarea:focus {
  outline: none;
  border-color: #cd0c07;
}

.cumulus-form-box button {
  width: 100%;
  padding: 14px;
  background: #cd0c07;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.cumulus-form-box button:hover {
  background: #000;
}

.cumulus-image-box {
  flex: 1;
}

.cumulus-image-box img {
  width: 100%;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .cumulus-container {
    flex-direction: column;
  }

  .cumulus-form-box {
    padding: 25px;
  }

  .cumulus-form-box h2 {
    font-size: 26px;
  }

  .cumulus-subtitulo {
    font-size: 14px;
    line-height: 1.4;
  }

  .cumulus-form-box input,
  .cumulus-form-box select,
  .cumulus-form-box textarea {
    font-size: 14px;
    padding: 12px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}


/*footer*/


.footer {
     background: linear-gradient(
    to bottom,
    #ca0c1d 0%,
    #d11710 60%,
    #a00b06 100%
  );
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-contato {
    flex: 1;
    min-width: 280px;
}

.footer-servicos {
    flex: 2;
    min-width: 280px;
}

.footer h3 {
    color: #ccc;
    font-size: 16px;
}

.lista-servicos {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 3;
    column-gap: 40px;
}

.lista-servicos li {
    break-inside: avoid;
    margin-bottom: 6px;
    color: #ddd;
    font-size: 14px;
}

.toggle-servicos {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seta {
    display: none;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
    }

    .lista-servicos {
        column-count: 1;
        display: none;
    }

    .lista-servicos.ativo {
        display: block;
    }

    .seta {
        display: inline-block;
    }

    .seta.rotacionar {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .espaco-mobile {
        height: 120px;
    }
}

/*seta para cima*/

.botao-seta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.botao-seta img {
    width: 50px;
    height: 50px;
    display: block;
}

.botao-seta:hover {
    transform: scale(1.1);
}

.cumulus-whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 30px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
  animation: cumulusGlow 1.5s infinite alternate;
  z-index: 9999;
  transition: 0.3s;
}

.cumulus-whatsapp-float img {
  width: 32px;
  height: 32px;
}

.cumulus-whatsapp-float:hover {
  transform: scale(1.1);
}

/* EFEITO BRILHANTE ANIMADO */
@keyframes cumulusGlow {
  from {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6),
                0 0 20px rgba(37, 211, 102, 0.4);
  }
  to {
    box-shadow: 0 0 25px rgba(37, 211, 102, 1),
                0 0 45px rgba(37, 211, 102, 0.8);
  }
}

@media (max-width: 768px) {
  .cumulus-whatsapp-float {
    width: 55px;
    height: 55px;
    left: 15px;
    bottom: 20px;
  }

  .cumulus-whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}