:root {
  --dark: #1f1f1f;
  --dark-2: #333333;
  --white: #ffffff;
  --text: #222222;
  --muted: #555555;
  --accent: #c7a384;
  --light: #f3f3f3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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

/* HEADER */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 22px 0;
}

.header-inner {
  max-width: none;
  width: 100%;
  padding-left: 120px;
  padding-right: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  width: 190px;
  height: 62px;
  object-fit: cover;
  object-position: center;
}

/* BOTÕES */

.btn-outline-light-custom,
.btn-dark-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 55px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.btn-outline-light-custom {
  color: var(--white);
  border: 3px solid var(--white);
  background: transparent;
}

.btn-outline-light-custom:hover {
  background: var(--white);
  color: var(--text);
}

.btn-dark-custom {
  color: var(--white);
  background: #444444;
  border: 2px solid #444444;
}

.btn-dark-custom:hover {
  background: #222222;
  color: var(--white);
  border-color: #222222;
}

/* HERO */

.hero-section {
  position: relative;
  min-height: 92vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.471), rgba(0, 0, 0, 0.607)),
    url("./assets/se1.jpg")
    center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(70px, 12vw, 150px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 8px;
  margin-bottom: 34px;
}

.hero-content p {
  max-width: 590px;
  color: var(--white);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
  margin-bottom: 28px;
}

/* BANNER 02 */

.balance-section {
  position: relative;
  min-height: 620px;
  padding: 88px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.balance-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.20), rgba(255,255,255,0.20)),
    url("./assets/se2.jpg")
    center/cover no-repeat;
  z-index: 1;
}

.balance-card {
  position: relative;
  z-index: 2;
  background: rgba(245, 245, 245, 0.93);
  border: 4px solid var(--white);
  padding: 46px 52px;
}

.section-label {
  display: block;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.balance-card h2,
.routine-content h2 {
  font-size: clamp(42px, 4.6vw, 45px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 26px;
}

.balance-card p {
  font-size: 15px;
  line-height: 1.62;
  margin-bottom: 18px;
  color: #222222;
}

/* BANNER 03 */

.benefits-strip {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)),
    url("./assets/se3.jpg")
    center/cover no-repeat;
}

.benefit-box {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1px) saturate(150%);
  -webkit-backdrop-filter: blur(1px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -18px 42px rgba(255, 255, 255, 0.04),
    0 20px 44px rgba(0, 0, 0, 0.22);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 26px 20px;
}

.benefit-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.12) 48%, transparent 72%);
  opacity: 0.82;
  pointer-events: none;
}

.benefit-box > * {
  position: relative;
  z-index: 1;
}

.benefit-box i {
  font-size: 48px;
  color: var(--white);
}

.benefit-box h3 {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0;
}

.benefit-box p {
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  max-width: 230px;
}

/* BANNER 04 */

.routine-section {
  background: var(--light);
}

.routine-content {
  min-height: 700px;
  padding: 90px 3vw 80px 10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.routine-content p {
  max-width: 680px;
  font-size: 18px;
  color: #3f3f3f;
  line-height: 1.58;
  margin-bottom: 16px;
}

.routine-list {
  max-width: 620px;
  margin: 18px 0 30px;
  padding-left: 0;
  list-style: none;
}

.routine-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 17px;
  color: #333333;
}

.routine-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.routine-image {
  min-height: 700px;
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    url("./assets/se4.jpg")
    center/cover no-repeat;
}

/* FOOTER */

.footer {
  background: #1f1f1f;
  color: #d4d4d4;
  padding: 92px 0 44px;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 22px;
}

.footer-logo:hover {
  color: var(--white);
}

.footer p {
  color: #d4d4d4;
  font-size: 17px;
  line-height: 1.55;
  max-width: 430px;
  margin-bottom: 12px;
}

.footer h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer a:not(.logo) {
  display: block;
  color: #d4d4d4;
  font-size: 17px;
  margin-bottom: 13px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .footer-contact-item a {
  display: inline;
  margin-bottom: 0;
}

.footer a:hover {
  color: var(--accent);
}

.footer i {
  color: var(--accent);
  margin-right: 10px;
}

.copyright {
  margin-top: 55px;
  text-align: center;
  color: var(--white);
  font-size: 16px;
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-whatsapp:hover {
  color: var(--white);
  background: #1fbd5a;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

/* RESPONSIVO */

@media (max-width: 1199px) {
  .routine-content {
    padding: 80px 7vw;
  }

  .hero-content h1 {
    letter-spacing: 5px;
  }
}

@media (max-width: 991px) {
  .site-header {
    padding: 18px 0;
  }

  .logo {
    max-width: 170px;
  }

  .logo-image {
    width: 170px;
    height: 56px;
  }

  .hero-section {
    min-height: 760px;
  }

  .balance-section {
    padding: 76px 0;
  }

  .balance-card {
    padding: 38px 34px;
  }

  .benefits-strip {
    padding: 58px 0;
  }

  .routine-content {
    min-height: auto;
    padding: 70px 32px;
  }

  .routine-image {
    min-height: 440px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 680px;
    background:
      linear-gradient(rgba(0, 0, 0, 0.471), rgba(0, 0, 0, 0.607)),
      url("./assets/se1M.jpg")
      center/cover no-repeat;
  }

  .balance-bg {
    background:
      linear-gradient(rgba(255,255,255,0.20), rgba(255,255,255,0.20)),
      url("./assets/se2M.jpg")
      center/cover no-repeat;
  }

  .benefits-strip {
    background:
      linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)),
      url("./assets/se3M.jpg")
      center/cover no-repeat;
  }

  .hero-content h1 {
    font-size: 58px;
    letter-spacing: 2px;
    margin-bottom: 22px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .btn-outline-light-custom,
  .btn-dark-custom {
    height: 50px;
    min-width: 128px;
    padding: 0 22px;
  }

  .balance-card h2,
  .routine-content h2 {
    font-size: 38px;
  }

  .balance-card p,
  .routine-content p {
    font-size: 16px;
  }

  .benefit-box {
    min-height: 170px;
  }

  .routine-list li {
    font-size: 16px;
  }

  .footer {
    padding: 70px 0 36px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    font-size: 29px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 46px;
  }

  .balance-card {
    padding: 32px 24px;
  }

  .balance-card h2,
  .routine-content h2 {
    font-size: 34px;
  }

  .routine-content {
    padding: 60px 24px;
  }

  .footer-logo {
    max-width: 170px;
  }
}
