
/* Reset básico para remover espaçamentos padrões do navegador */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variáveis de cores para facilitar alterações depois */
:root {
  --preto: #080808;
  --grafite: #111111;
  --cinza: #1c1c1c;
  --verde: #1fc300;
  --verde-escuro: #138000;
  --vermelho: #ff2a1f;
  --branco: #ffffff;
  --texto: #d6d6d6;
}

/* Configuração geral do site */
html {
  scroll-behavior: smooth;
}

/*Barra de progresso no topo da página*/
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--verde);
  z-index: 9999;
}

/* Animações de entrada */
.reveal-left,
.reveal-up {
  opacity: 0;
  transition: 2s ease;
}

.reveal-left {
  transform: translateX(-80px);
}

.reveal-up {
  transform: translateY(60px);
}

.reveal-left.active,
.reveal-up.active {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

.delay-4 {
  transition-delay: 0.55s;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--preto);
  color: var(--branco);
  overflow-x: hidden;
}

/* Container central para limitar largura do conteúdo */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cabeçalho */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(40, 255, 0, 0.15);
  z-index: 1000;
}

.header-content {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 180px;
  height: auto;
}

/* Menu de navegação */
.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--branco);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav a:hover {
  color: var(--verde);
}

/* Botão do cabeçalho */
.btn-header,
.btn-primary,
.btn-secondary {
  display: inline-block;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-header {
  color: var(--vermelho);
  border: 1px solid var(--vermelho);
  padding: 14px 22px;
}

.btn-header:hover {
  background: var(--vermelho);
  color: var(--branco);
}

/* Botão do menu mobile */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--verde);
  font-size: 30px;
  cursor: pointer;
}

/* Banner inicial */
.hero {
  min-height: 77vh;
  background-image: url("assets/banner.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

/* Camada escura por cima da imagem para melhorar leitura */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 45%,
    rgba(0, 0, 0, 0.25) 100%
  );
}


/* Conteúdo do banner */

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-text {
  max-width: 720px;
}

.tagline,
.section-tag {
  color: var(--verde);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
}

.hero h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 6vw, 60px);
  text-transform: uppercase;
  margin: 2px 0;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(48px, 6vw, 67px);
  text-transform: uppercase;
  margin: 1px 0;
  color: var(--verde);
  line-height: 1.0;
}

.hero h3 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 6vw, 53px);
  text-transform: uppercase;
}

.hero p {
  margin: 20px 0;
  max-width: 450px;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.hero-buttons img {
  margin-right: 8px;
}



/* Botões principais */
.btn-primary {
  background: var(--verde);
  color: var(--preto);
  padding: 16px 28px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary:hover {
  background: var(--branco);
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid var(--vermelho);
  color: var(--vermelho);
  padding: 16px 28px;
}

.btn-secondary:hover {
  background: var(--vermelho);
  color: var(--branco);
  transform: translateY(-3px);
}

/* Indicadores */
.numbers {
  background: var(--grafite);
  padding: 10px 0;
  border-top: 1px solid rgba(40, 255, 0, 0.15);
  border-bottom: 1px solid rgba(40, 255, 0, 0.15);
}

.numbers-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  
}

.number-card {
  flex: 1;
  padding: 20px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.number-card:last-child {
  border-right: none;
}

.number-card .icon {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 10px;
}

.number-card h3 {
  font-family: "Oswald", sans-serif;
  color: var(--verde);
  line-height: 1.1;
  font-size: 18px;
  margin-bottom: 5px;
}

.number-card p {
  color: var(--texto);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.3;
}

#sobre {
  padding-top: 140px;
}

/* Seções gerais */
.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--grafite);
}

.section-title,
.about-text h2,
.contact-info h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 52px);
  margin: 10px 0 35px;
}

/* Sobre */
.about {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}

.about-text p,
.contact-info p {
  color: var(--texto);
  line-height: 1.8;
  margin-bottom: 17px;
  max-width: 600px;
}

.image-card {
    position: relative;
    width: 380px;
    height: 303px;
    
}

.image-card img{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    object-fit: cover;
    z-index: 2;
}

.image-card::before{
    content: "";
    position: absolute;
    width: 95%;
    height: 95%;
    background: var(--verde);
    top: -15px;
    right: -15px;
    z-index: 0;
}

.image-card::after {
  content: "";
  position: absolute;

  width: 110px;
  height: 10px;

  border-top: 6px solid #ff2b1f;
  border-bottom: 6px solid #ff2b1f;

  bottom: -13px;
  right: 0;

  z-index: 3;
}

.icons-no-sobre {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 25px;
  margin-top: 25px;
  margin-bottom: 25px;
  text-align: center;
}

.card1 {
 padding-bottom: 6px;
}

.card1 h3 {
  margin-top: -1px;
  font-size: 12px;
  line-height: 1.1;
}

.card2 h3,
.card3 h3,
.card4 h3 {
  font-size: 12px;
  line-height: 1.1;
  margin-top: 10px;
}

.icon-sobre,
.icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Serviços */
.services-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: var(--cinza);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 3px solid var(--vermelho);
  border-radius: 10px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--verde);
  box-shadow: 0 0 25px rgba(40, 255, 0, 0.1);
}

.service-card h3 {
  font-family: "Oswald", sans-serif;
  color: var(--verde);
  font-size: 25px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card p {
  color: var(--texto);
  line-height: 1.7;
}

.iconServicos img {
 color: #1fc300;

}



.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: var(--cinza);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(40, 255, 0, 0.2);
}

.feature-card h3 {
  font-family: "Oswald", sans-serif;
  color: var(--verde);
  font-size: 26px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--texto);
  line-height: 1.6;
}

/* Obras */
.swiper {
 max-width: 100%;
}

.obrasSwiper {
  position: relative;
  padding-bottom: 70px;
  overflow: visible;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 385px);
  gap: 25px;
  justify-content: center;
}

.work-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--cinza);
  border-radius: 18px;
  overflow: hidden;
}

.work-card:hover {
  transform: translateY(-10px);

  border-color: #1FC300;
}

.work-image1, 
.work-image2, 
.work-image3,
.work-image4,
.work-image5,
.work-image6,
.work-image7,
.work-image8 {
  width: 100%;
  height: 280px;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.work-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-tag {
  display: inline-block;

  padding: 6px 14px;

  border-radius: 999px;

  background: rgba(31, 195, 0, 0.12);
  color: #1FC300;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.work-content h3 {
  min-height: 90px;
  display: flex;
  align-items: flex-start;
  color: #1FC300;
  font-size: 1.6rem;
  line-height: 1.3;
}

.work-content p {
  color: #1FC300;

  line-height: 1.6;
}


.work-image1 {
  background-image: url("assets/obra1.jpeg");
}

.work-image2 {
  background-image: url("assets/obra2.jpeg");
}

.work-image3 {
  background-image: url("assets/obra3.jpeg");
}

.work-image4 {
   background-image: url("assets/obra4.jpeg");
}

.work-image5 {
   background-image: url("assets/obra5.jpeg");
}

.work-image6 {
   background-image: url("assets/obra6.jpeg");
}

.work-image7 {
   background-image: url("assets/obra7.jpeg");
}

.work-image8 {
   background-image: url("assets/obra8.jpeg");
}

.swiper-slide {
  height: auto;
}

/* setas */
.obras-carousel-area {
  position: relative;
}

.obras-next,
.obras-prev {
  color: #1FC300 !important;
  z-index: 20;
}

/* seta esquerda */
.obras-prev {
  left: -70px !important;
}

/* seta direita */
.obras-next {
  right: -70px !important;
}

/* bolinhas */
.swiper-pagination {
  bottom: -45px !important;
}

.swiper-pagination-bullet {
  background: rgba(31, 195, 0, 0.35) !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #1FC300 !important;
}

/* Contato */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info ul {
  list-style: none;
  margin-top: 25px;
}

.contact-info li {
  color: var(--texto);
  margin-bottom: 14px;
}

.contact-info strong {
  color: var(--verde);
}

.contatos img {
  margin-right: 8px;
}

.contatos a {
  color: var(--branco);
}

/* Rodapé */
.footer {
  background: #030303;
  padding: 28px 0;
  border-top: 1px solid rgba(40, 255, 0, 0.15);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--texto);
  font-size: 14px;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: var(--verde);
  color: var(--preto);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  padding: 16px 22px;
  border-radius: 50px;
  font-weight: 700;
  z-index: 999;
  box-shadow: 0 0 20px rgba(40, 255, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-float img {
  margin-right: 8px;
}

.contatos{
    display: flex;
    align-items: center;
  }

/* Responsividade para tablet */
@media (max-width: 992px) {
  .nav,
  .btn-header {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav.active {
    display: flex;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--preto);
    flex-direction: column;
    padding: 25px;
    border-bottom: 1px solid rgba(40, 255, 0, 0.2);
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .features-grid,
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsividade para celular */
@media (max-width: 768px) {
  .header-content {
    height: 60px;
  }

  .logo {
    width: 140px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    transform: translateY(-70px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
  }

  .numbers{
    padding: 18px 0;
  }

  .numbers-content {
    display: flex;
    flex-direction: row;
    align-items: nowrap;
    gap: 6px;
  }

  .number-card {
    flex: 1;
    padding: 10px 2px;
    border-right: none;
  }

  .number-card .icon img {
    width: 32px;
    height: 32px;
  }
.number-card h3 {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .number-card p {
    font-size: 8px;
    line-height: 1.1;
  }

  .image-card {
    width: 100%;
    height: auto;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .icons-no-sobre {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 14px;
    margin: 30px 0;
  }
 
  .icons-no-sobre > div {
    text-align: center;
  }

   .icons-no-sobre img {
    width: 42px;
    height: 42px;
  }

   .icons-no-sobre h3 {
    font-size: 12px;
    line-height: 1.15;
    max-width: 130px;
    margin: 8px auto 0;
  }

  .about-text p {
    margin-bottom: 25px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .about-box,
  .services-grid,
  .features-grid,
  .works-grid,
  .numbers-content {
    grid-template-columns: 1fr;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  #obras,
  #obras .container,
  .obras-carousel-area,
  .obrasSwiper {
    max-width: 100%;
    overflow-x: hidden;
  }

  .obras-prev {
    left: 8px !important;
  }

  .obras-next {
    right: 8px !important;
  }

  .obras-prev,
  .obras-next {
    color: #1FC300 !important;
    transform: scale(0.65);
  }

  .contatos{
    display: flex;
    align-items: center;
  }

  .swiper-pagination {
    bottom: -25px !important;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 15px;
    bottom: 20px;
    padding: 14px 15px;
  }
}