* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */

.header {
  background: #0b0f2a;
  padding: 20px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
}

.header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.header nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.header nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff4fa3;
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

.header nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  background:
    linear-gradient(rgba(5,11,44,0.85), rgba(10,26,79,0.85)),
    url("../img/hero.jpg") center/cover no-repeat;
  color: #ffffff;
  padding: 110px 0;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: auto;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* BOTÕES */

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff4fa3, #ff2f92);
  color: #ffffff;
  padding: 16px 42px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(255, 79, 163, 0.45);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(255, 79, 163, 0.7);
}

/* SERVIÇOS */

.servicos {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.servicos h1,
.servicos h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0b0f2a;
}

.servicos p {
  font-size: 1rem;
  color: #555;
}

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #f4f4f4;
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  transition: all 0.35s ease;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0b0f2a;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* SOBRE */

.sobre {
  padding: 100px 0;
  background: #ffffff;
}

.sobre-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.sobre-content h2,
.sobre-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0b0f2a;
}

.sobre-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

.sobre-content img {
  width: 420px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* FORMULÁRIO */

.form-contato {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-top: 15px;
}

.form-contato label {
  font-weight: bold;
  color: #0b0f2a;
}

.form-contato input,
.form-contato select,
.form-contato textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  font-size: 1rem;
  background: #fff;
}

.form-contato input:focus,
.form-contato select:focus,
.form-contato textarea:focus {
  border-color: #ff4fa3;
  box-shadow: 0 0 0 3px rgba(255, 79, 163, 0.15);
}

/* LGPD / TEXTOS INTERNOS */

.lgpd {
  padding: 70px 0;
  background: #f9f9f9;
}

.lgpd h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0b0f2a;
}

.lgpd p {
  margin-bottom: 15px;
  color: #555;
}

.servicos ul,
.lgpd ul {
  margin: 20px 0 20px 20px;
  text-align: left;
  color: #555;
}

.servicos li,
.lgpd li {
  margin-bottom: 8px;
}

/* FOOTER */

.footer {
  background: #020617;
  color: #cccccc;
  padding: 45px 0;
  text-align: center;
  font-size: 0.95rem;
}

.footer p {
  margin-bottom: 10px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer hr {
  border: none;
  height: 1px;
  background: #333;
  margin: 20px 0;
}

.footer-privacidade {
  font-size: 13px;
  line-height: 1.6;
}

.footer-privacidade h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 35px;
}

/* RESPONSIVO */

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    text-align: center;
  }

  .header nav {
    justify-content: center;
  }

  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .sobre-content {
    flex-direction: column;
    text-align: center;
  }

  .sobre-content img {
    width: 100%;
  }

  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float img {
    width: 30px;
  }
}