body {
  background: #131313;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* HERO */
.hero-section {
  position: relative;
  height: 100vh;
  background: url("assets/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 12%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
  pointer-events: none;
}

.hero-logo,
.hero-title,
.hero-sub,
.hero-buttons {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 260px;
  margin-bottom: 60px;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 300;
  max-width: 800px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 28px;
}

/* BOTÕES */
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #fff;
  color: #000;
}

.btn.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

/* BENEFÍCIOS */
.benefits-section {
  padding: 90px 12%;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 14px;
}

.section-sub {
  opacity: 0.7;
  margin-bottom: 40px;
}

.benefits-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.benefit-card {
  background: #111;
  padding: 22px;
  border-radius: 18px;
  max-width: 260px;
  text-align: left;
}

/* TÉCNICAS */
.techniques-section {
  padding: 90px 10%;
}

.technique-card {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.technique-card.reverse {
  flex-direction: row-reverse;
}

.technique-card img {
  width: 40%;
  border-radius: 16px;
}

.tech-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* PROVA SOCIAL */
.social-proof-section {
  padding: 80px 12%;
  text-align: center;
}

.proof-text a {
  color: #fff;
  text-decoration: underline;
}

/* FOOTER */
.footer-section {
  padding: 60px 12%;
  text-align: center;
  opacity: 0.75;
}

.footer-section .btn {
  margin: 20px 0;
}

.footer-copy {
  font-size: 0.85rem;
  margin-top: 14px;
}
/* ===== ANIMAÇÃO CARDS BENEFÍCIOS ===== */

.benefit-card {
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  position: relative;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  background: #151515;
}

.benefit-card:hover::after {
  opacity: 1;
}
/* ===== ANIMAÇÃO IMAGENS TÉCNICAS ===== */

.technique-card img {
  transition: 
    transform 0.5s ease,
    box-shadow 0.5s ease,
    filter 0.5s ease;
}

.technique-card:hover img {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  filter: brightness(1.05);
}
.tech-text {
  transition: transform 0.4s ease;
}

.technique-card:hover .tech-text {
  transform: translateX(4px);
}
/* ===== FOOTER SIMPLES ===== */

.footer-section {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 12% 40px;
  text-align: center;
}

.footer-simple {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.footer-whatsapp {
  padding: 14px 36px;
  border-radius: 40px;
  background: #fff;
  color: #000;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

.footer-address {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.5;
}

.footer-instagram {
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-instagram:hover {
  opacity: 1;
}

.footer-copy {
  margin-top: 40px;
  font-size: 0.8rem;
  opacity: 0.45;
}
