@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
  list-style: none;
  text-decoration: none;
}

body {
  background-color: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

section {
  min-height: 100vh;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  z-index: 1000;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
  cursor: pointer;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  gap: 25px;
}

nav ul a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

nav ul a:hover {
  color: #F08024;
  transform: scale(1.05);
}

.socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.socials i {
  font-size: 1.3rem;
  color: #fff;
  transition: 0.3s;
}

.socials i:hover {
  color: #F08024;
  transform: scale(1.2);
}

/* ===== BOTÕES ===== */
.btn-primary {
  background-color: #F08024;
  border-radius: 30px;
  font-size: 18px;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(240, 128, 36, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  padding: 10px 25px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #F08024;
  border-color: #F08024;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.6s;
}

.hero:hover img {
  transform: scale(1.05);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-text h1 span {
  color: #F08024;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* ===== ABOUT (CORRIGIDO) ===== */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 100px 10%;
  background-color: #111;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
}

.about-text {
  flex: 1 1 45%;
  color: #ddd;
}

.about-text h2 {
  font-size: 2.8rem;
  color: #F08024;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text strong {
  color: #fff;
}

.about-text .btn-primary {
  background-color: #F08024;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.about-text .btn-primary:hover {
  background-color: #ff9736;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(240, 128, 36, 0.4);
}

/* ===== SERVIÇOS (CARROSSEL) ===== */
.servicos {
  background-color: #111;
  color: #fff;
  padding: 100px 5%;
  text-align: center;
}

.servicos h2 {
  color: #F08024;
  font-size: 3rem;
  margin-bottom: 50px;
}

.swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.swiper-slide {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.swiper-slide:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Navegação */
.swiper-button-next,
.swiper-button-prev {
  color: #F08024;
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fff;
  transform: scale(1.2);
}

.swiper-pagination-bullet {
  background: #F08024;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao {
  padding: 80px 10%;
  background: #111;
  text-align: center;
}

.map-container {
  width: 100%;
  height: 450px;
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.localizacao-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.localizacao-cards .card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.localizacao-cards .card:hover {
  transform: scale(1.05);
}

.localizacao-cards i {
  font-size: 2.5rem;
  color: #F08024;
  margin-bottom: 10px;
}

/* ===== BOTÃO WHATSAPP FIXO ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* ===== MENU HAMBURGUER MODERNO ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.4s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Overlay menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  text-align: center;
}

.mobile-menu ul li {
  margin: 25px 0;
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.6s forwards;
}

.mobile-menu.active ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active ul li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active ul li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active ul li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu ul li a {
  color: #fff;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #F08024;
}

/* Botão fechar */
.close-menu {
  position: absolute;
  top: 30px;
  right: 35px;
  font-size: 2.5rem;
  color: #F08024;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close-menu:hover {
  transform: rotate(90deg);
  color: #fff;
}

/* Mostrar botão hamburguer apenas no mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  nav ul,
  .socials {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }
}


/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  nav ul,
  .socials,
  .btn-primary {
    display: none;
  }

  nav ul.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: rgba(20, 20, 20, 0.97);
    padding-top: 120px;
    gap: 30px;
    transform: translateX(100%);
    opacity: 0;
    transition: 0.4s;
  }

  nav ul.active.show {
    transform: translateX(0);
    opacity: 1;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .swiper-slide img {
    height: 300px;
  }

  .map-container {
    height: 300px;
  }
}
