* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

.header {
  width: 100%;
  padding: 18px 7%;
  background-color: rgba(11, 11, 11, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.logo {
  height: 60px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.menu a:hover {
  color: #c8a24d;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
    url("img/corte1.jpg") center/cover no-repeat;
}

.hero-content {
  max-width: 860px;
}

.destaque {
  display: inline-block;
  color: #c8a24d;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-content h2 {
  font-size: 64px;
  color: #c8a24d;
  margin-bottom: 18px;
  line-height: 1.15;
}

.subtitulo {
  font-size: 24px;
  color: #ddd;
  margin-bottom: 28px;
  line-height: 1.6;
}


.btn-agendar {
  background-color: #c8a24d;
  color: #000;
  border: none;
  padding: 16px 34px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(200, 162, 77, 0.25);
}

.btn-agendar:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(200, 162, 77, 0.4);
}

.secao {
  padding: 110px 7%;
  text-align: center;
}

.secao h2 {
  font-size: 48px;
  color: #c8a24d;
  margin-bottom: 22px;
}

.secao p {
  max-width: 850px;
  margin: 0 auto 16px;
  color: #ddd;
  font-size: 20px;
  line-height: 1.7;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.card {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 32px 24px;
  width: 300px;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.03);
}

.card:hover {
  transform: translateY(-8px);
  border-color: #c8a24d;
  box-shadow: 0 0 18px rgba(200, 162, 77, 0.18);
}

.card h3 {
  color: #c8a24d;
  margin-bottom: 15px;
  font-size: 28px;
}

.card p {
  color: #ccc;
  font-size: 18px;
  line-height: 1.6;
}

.galeria {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.galeria img {
  width: 300px;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #222;
  transition: 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
  border-color: #c8a24d;
  box-shadow: 0 0 20px rgba(200, 162, 77, 0.2);
}

.rodape {
  background-color: #0b0b0b;
  text-align: center;
  padding: 25px;
  color: #999;
  font-size: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  z-index: 2000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

/* TABLET */
@media (max-width: 900px) {
  .hero-content h2 {
    font-size: 46px;
  }

  .subtitulo {
    font-size: 20px;
  }

  .secao h2 {
    font-size: 38px;
  }

  .secao p {
    font-size: 18px;
  }

  .menu {
    gap: 18px;
  }

  .menu a {
    font-size: 16px;
  }
}

/* CELULAR */
@media (max-width: 768px) {
  .header {
    padding: 16px 6%;
  }

  .logo {
    height: 52px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 100%;
    right: 6%;
    width: 220px;
    background-color: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 15px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    margin: 0;
    width: 100%;
    font-size: 16px;
  }

  .hero {
    min-height: 88vh;
    padding: 40px 18px 30px;
    background-position: center;
  }

  .destaque {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .hero-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .subtitulo {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .btn-agendar {
    width: 100%;
    max-width: 280px;
    font-size: 17px;
  }

  .secao {
    padding: 80px 6%;
  }

  .secao h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .secao p {
    font-size: 17px;
  }

  .card {
    width: 100%;
    max-width: 340px;
    padding: 26px 20px;
  }

  .card h3 {
    font-size: 24px;
  }

  .card p {
    font-size: 17px;
  }

  .galeria img {
    width: 100%;
    max-width: 340px;
    height: 300px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    font-size: 26px;
    right: 16px;
    bottom: 16px;
  }
}

/* CELULAR MENOR */
@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 30px;
  }

  .subtitulo {
    font-size: 16px;
  }

  .secao h2 {
    font-size: 28px;
  }

  .logo {
    height: 46px;
  }

  .menu {
    width: 200px;
  }
}