/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: white;
}
h1, h2 {
  font-weight: 700;
}
p {
  font-weight: 300;
}
.menu a {
  font-weight: 500;
}
/* CONTAINER */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.header.scrolled {
  background: #000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  width: 220px;
  height: 70px;
  background: url('../img/ChatGPT\ Image\ 13\ de\ jun.\ de\ 2026\,\ 17_49_41\ \(1\).png') center/contain no-repeat;
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

/* MENU */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  color: #bbb;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.menu a:hover {
  color: white;
}

.menu a::after {
  content: "";
  width: 0;
  height: 2px;
  background: red;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

/* BOTÃO WHATS */
.btn-whatsapp {
  background: linear-gradient(45deg, #ff1e1e, #ff4d4d);
  padding: 12px 25px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,0,0,0.6);
}

/* HERO */
.hero {
  height: 90vh;
  background: url('../img/ChatGPT\ Image\ 14\ de\ jun.\ de\ 2026\,\ 16_34_17\ \(1\).png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%; 
}

.hero-text {
  position: relative;
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero span {
  color: red;
}

.hero p {
  margin: 15px 0;
  color: #ccc;
}

.btn-main {
  display: inline-block;
  padding: 15px 30px;
  background: red;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 25px;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,0,0,0.5);
}

/* SOBRE */
.sobre-content {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 80px 0;
}

.sobre-img img {
  width: 500px;
  border-radius: 10px;
  transition: 0.4s;
}

.sobre-img img:hover {
  transform: scale(1.05);
}

/* SERVIÇOS */
.servicos {
  background: linear-gradient(180deg, #0b0b0b, #111);
  padding: 100px 20px;
  text-align: center;
}

.servicos .subtitulo {
  color: red;
  font-size: 14px;
  letter-spacing: 2px;
}

.servicos h2 {
  font-size: 32px;
  margin: 10px 0 50px;
}

/* GRID */
.cards-servicos {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD */
.card-servico {
  width: 260px;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
  cursor: pointer;
  position: relative;
}

/* IMAGEM COMO BACKGROUND */
.card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: 0.4s;
}

/* OVERLAY ESCURO (PROFISSIONAL) */
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: 0.4s;
}

/* CONTEÚDO */
.card-content {
  padding: 20px;
  position: relative;
  z-index: 2;
}

/* ÍCONE */
.card-content .icon {
  background: red;
  width: 50px;
  height: 50px;
  margin: -35px auto 15px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 20px rgba(255,0,0,0.4);
  transition: 0.3s;
}

.card-content .icon i {
  color: white;
  font-size: 20px;
}

/* TEXTOS */
.card-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #ccc;
}

/* HOVER PREMIUM */
.card-servico:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(255,0,0,0.25);
}

.card-servico:hover .card-img {
  transform: scale(1.1);
}

.card-servico:hover .card-img::after {
  background: rgba(0,0,0,0.15);
}

.card-servico:hover .icon {
  box-shadow: 0 0 25px rgba(255,0,0,0.8);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .cards-servicos {
    flex-direction: column;
    align-items: center;
  }

  .card-servico {
    width: 90%;
  }
}

/* GALERIA */
.gallery img {
  width: 300px;
  border-radius: 10px;
  transition: 0.4s;
}

.gallery img:hover {
  transform: scale(1.08);
}
/* RESULTADOS */
.resultados {
  background: #ffffff;
  color: #000;
  padding: 120px 20px;
  text-align: center;
}

.resultados h2 {
  margin-bottom: 60px;
}

/* GRID */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* BOX */
.img-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  cursor: ew-resize;
}

/* IMAGENS */
.img-box img {
  width: 100%;
  display: block;
}

/* ANTES */
.img-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

/* SLIDER */
.slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: red;
}

/* HANDLE */
.handle {
  width: 32px;
  height: 32px;
  background: red;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  box-shadow: 0 0 15px rgba(255,0,0,0.7);
  transition: 0.2s;
}

/* HOVER */
.img-box:hover .handle {
  transform: translateY(-50%) scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

/* AVALIAÇÕES */
.avaliacoes {
  background: #050505;
  padding: 120px 20px;
  text-align: center;
}

.avaliacoes h2 {
  margin-bottom: 50px;
}

/* CARROSSEL */
.carousel {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 20s linear infinite;
}

/* CARD */
.review {
  min-width: 300px;
  background: #111;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  text-align: left;
}

/* ESTRELAS */
.stars {
  color: gold;
  margin-bottom: 10px;
  font-size: 18px;
}

/* TEXTO */
.review p {
  color: #ccc;
  margin-bottom: 10px;
}

/* AUTOR */
.review span {
  font-size: 12px;
  color: #888;
}

/* HOVER */
.review:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255,0,0,0.2);
}

/* ANIMAÇÃO AUTOMÁTICA */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PAUSAR AO PASSAR O MOUSE */
.carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* MOBILE */
@media (max-width: 768px) {
  .review {
    min-width: 250px;
  }
}
/* WRAPPER */
.contato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ESQUERDA */
.contato-mapa {
  background: #f5f5f5;
  color: #111;
  padding: 40px;
}

.contato-mapa h3 {
  margin: 10px 0;
}

.mapa-box iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  border: none;
}

/* DIREITA */
.contato-info {
  position: relative;
  padding: 50px;
  color: white;
  background: linear-gradient(135deg, #8b0000, #ff1e1e);
  overflow: hidden;
}

/* IMAGEM DE FUNDO */
.contato-info::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/ChatGPT\ Image\ 14\ de\ jun.\ de\ 2026\,\ 16_34_17\ \(1\).png') right center/cover no-repeat;
  opacity: 0.15;
}

/* CONTEÚDO */
.contato-info * {
  position: relative;
  z-index: 2;
}

.contato-info h2 {
  margin: 20px 0;
}

/* ITENS */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.info-item i {
  font-size: 20px;
}

/* CTA FINAL */
.cta-final {
  background: #0b0b0b;
  padding: 30px 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BOTÃO */
.btn-cta {
  border: 1px solid #fff;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-cta:hover {
  background: red;
  border-color: red;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 40px 0;
  text-align: center;
}

.logo-footer {
  width: 200px;
  height: 60px;
  margin: auto;
  background: url('../img/ChatGPT\ Image\ 13\ de\ jun.\ de\ 2026\,\ 17_49_41\ \(1\).png') center/contain no-repeat;
  margin-bottom: 20px;
}

.footer-menu {
  margin: 20px 0;
}

.footer-menu a {
  margin: 0 10px;
  color: #aaa;
  text-decoration: none;
}

.footer-menu a:hover {
  color: white;
}

/* RESPONSIVO */
@media(max-width: 768px){
  .contato-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ANIMAÇÃO BASE */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ========================= */
/* RESPONSIVO PREMIUM */
/* ========================= */

/* TABLET */
@media (max-width: 1024px){

  .hero h1{
    font-size: 36px;
  }

  .sobre-content{
    flex-direction: column;
    text-align: center;
  }

  .sobre-img img{
    width: 100%;
    max-width: 400px;
  }

  .cards-servicos{
    gap: 20px;
  }

  .card-servico{
    width: 45%;
  }

  .before-after-grid{
    grid-template-columns: 1fr;
  }

  .contato-wrapper{
    grid-template-columns: 1fr;
  }

}


/* MOBILE */
@media (max-width: 768px){

  /* HEADER */
  .nav{
    flex-direction: column;
    gap: 10px;
  }

  .menu{
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .btn-whatsapp{
    padding: 10px 18px;
    font-size: 14px;
  }

  /* HERO */
  .hero{
    height: auto;
    padding: 80px 0;
  }

  .hero h1{
    font-size: 28px;
  }

  .hero-text{
    text-align: center;
  }

  /* SERVIÇOS */
  .card-servico{
    width: 100%;
  }

  /* RESULTADOS */
  .img-box{
    height: auto;
  }

  /* AVALIAÇÕES */
  .review{
    min-width: 85%;
  }

  /* CONTATO */
  .contato-info{
    padding: 30px;
  }

  .contato-mapa{
    padding: 25px;
  }

  /* CTA */
  .cta-content{
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

}


/* MOBILE PEQUENO */
@media (max-width: 480px){

  h1{
    font-size: 24px;
  }

  h2{
    font-size: 22px;
  }

  p{
    font-size: 14px;
  }
  .logo{
    display: none;
  }
}

.videos {
  padding: 120px 20px;
  background: #0b0b0b;
  text-align: center;
}

.videos h2 {
  margin-bottom: 50px;
}

/* GRID */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* VIDEO */
.video-card video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: 0.3s;
}

.video-overlay i {
  font-size: 40px;
  color: white;
  background: red;
  padding: 15px;
  border-radius: 50%;
}

/* HOVER */
.video-card:hover video {
  transform: scale(1.1);
}

.video-card:hover .video-overlay {
  opacity: 1;
}

/* RESPONSIVO */
@media(max-width: 1024px){
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .videos-grid {
    grid-template-columns: 1fr;
  }
} 