/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* SCROLL SUAVE */
html {
  scroll-behavior: smooth;
}

/* BODY */
body {
  background: #383838;
  color: #0a0a0a;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================= */
/* HEADER (MELHORADO) */
/* ========================= */

header {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(9, 9, 9, 0.1);
}

.faixa {
  width: 100%;
  height: 2px; /* espessura da faixa */
  background: #d8b08c;
}

/* NAV */
nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #d8b08c;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* ========================= */
/* HERO (UPGRADE TOTAL) */
/* ========================= */

.hero {
  min-height: 90vh;
  background: radial-gradient(circle at 20% 30%, #1a1a1a, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* GLOW FUNDO */
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(216,176,140,0.15);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  filter: blur(100px);
}

/* CONTEÚDO */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  z-index: 2;
}

/* TÍTULO */
.hero h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 700px;
}

/* DESTAQUE */
.hero h2 span {
  color: #d8b08c;
}

/* TEXTO */
.hero p {
  font-size: 18px;
  color: #aaa;
  max-width: 500px;
}

/* ========================= */
/* BOTÃO (UPGRADE) */
/* ========================= */

.btn {
  background: linear-gradient(135deg, white, #ffcb9a);
  color: #000;
  padding: 16px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(216,176,140,0.5);
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(216,176,140,0.7);
}

/* ========================= */
/* SOBRE */
/* ========================= */

#header06-2 {
  background: #ffffff;
}

.header06-2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 20px;
}

.header06-2 .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.card-wrapper {
  background: #f7f7f7;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border-left: 5px solid #d8b08c;
}

.header06-2 h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #888;
  letter-spacing: 1px;
}

.header06-2 h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
}

.header06-2 p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.header06-2 .btn {
  margin-top: 20px;
  background: black;
  color: white;
}

.header06-2 .btn:hover {
  background: #333;
}

.header06-2 h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: black;
  margin-top: 10px;
  border-radius: 10px;
}

/* ========================= */
/* SERVIÇOS */
/* ========================= */

.features03 {
  padding: 100px 20px;
  background: #efefef;
  display: flex;
  justify-content: center;
}

.features03 h1 {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #222;
}

.features03 .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 900px;
}

.features03 .col-md-6,
.features03 .col-lg-4 {
  width: 100%;
}

.option-card {
  width: 100%;
  cursor: pointer;
}

.option-card input {
  display: none;
}

.card-content {
  background: #ffffff;
  border-radius: 25px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.card-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  border: 1px solid #eee;
}

.card-content h1 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #111;
}

.card-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.5;
}

.sbtt {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #999;
}

.card-content .btn {
  margin-top: 25px;
  background: black;
  color: white;
}

.card-content .btn:hover {
  background: #333;
}

.option-card input:checked + .card-content {
  border: 2px solid black;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media (max-width: 768px) {

  nav {
    display: none;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .features03 h1 {
    font-size: 30px;
  }

  .header06-2 {
    text-align: center;
  }

  .header06-2 .row {
    flex-direction: column;
  }

  .card-wrapper {
    padding: 25px;
  }

  .card-content {
    padding: 30px 20px;
  }

  .features03 .row {
    grid-template-columns: 1fr;
  }
}