:root {
  --primary: #1f3b57;
  --secondary: #7c9173;
  --accent: #c8a96b;
  --background: #f6f3ed;
  --white: #ffffff;
  --ink: #17283a;
  --muted: #65717b;
  --line: rgba(31, 59, 87, 0.14);
  --shadow: 0 22px 60px rgba(31, 59, 87, 0.12);
  --radius: 8px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: url('background.jpg') center center / cover no-repeat;

    opacity: 0.22;

    z-index: -1;
}
body {
  font-family: "Assistant", "Heebo", Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(200, 169, 107, 0.85);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 12px max(18px, calc((100vw - var(--container)) / 2));
  background: rgba(246, 243, 237, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.86rem;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #31465a;
  font-weight: 600;
}

.top-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.top-nav a:hover {
  border-color: var(--accent);
}

.header-call {
  color: var(--primary);
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding-top: 54px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.72), rgba(246, 243, 237, 0) 54%),
    radial-gradient(circle at 8% 20%, rgba(200, 169, 107, 0.12), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--primary);
  font-family: "Heebo", "Assistant", Arial, sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.15rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  color: var(--primary);
  font-family: "Heebo", "Assistant", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: #3e4c58;
  font-size: clamp(1.12rem, 2.5vw, 1.35rem);
}

.name-block {
  display: grid;
  gap: 2px;
  margin-bottom: 22px;
  padding-right: 18px;
  border-right: 4px solid var(--accent);
}

.name-block span {
  color: var(--primary);
  font-size: 1.55rem;
  font-weight: 800;
}

.name-block strong {
  color: #4d5b66;
  font-size: 1.02rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-right: 30px;
  color: #243849;
  font-weight: 700;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 800;
}

.hero-actions,
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 15px 34px rgba(31, 59, 87, 0.22);
}

.button.secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.portrait-wrap {
  position: relative;
  margin: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: auto 28px -18px 28px;
  height: 34%;
  background: rgba(124, 145, 115, 0.16);
  border-radius: 999px;
  filter: blur(20px);
  z-index: -1;
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 54% center;
  border-radius: 6px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-start {
  margin-inline: 0;
  text-align: right;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.problem-grid,
.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.text-panel,
.contact-form,
details {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 59, 87, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(31, 59, 87, 0.07);
}

.problem-grid .card {
  min-height: 126px;
  display: flex;
  align-items: center;
  padding: 24px;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
}

.reassurance {
  margin: 30px 0 0;
  color: var(--primary);
  text-align: center;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
}

.two-column,
.video-layout,
.contact-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.text-panel {
  padding: 30px;
  color: #394a58;
  font-size: 1.18rem;
}

.text-panel p:last-child,
.video-copy p:last-child,
.contact-copy p:last-child,
.feature-card p:last-child,
details p:last-child {
  margin-bottom: 0;
}

.video-section,
.contact {
  background: var(--primary);
  color: var(--white);
}

.video-section .eyebrow,
.contact .eyebrow {
  color: #dec686;
}

.video-section h2,
.contact h2 {
  color: var(--white);
}

.video-copy p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
}

.video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 8px;
  padding: 10px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  font-weight: 800;
}

.video-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f2235;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame iframe:not([src]) {
  display: none;
}

.video-frame.is-loaded .video-loader {
  display: none;
}

.video-loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  width: 100%;
  min-height: 100%;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(rgba(15, 34, 53, 0.62), rgba(15, 34, 53, 0.82)),
    url("https://i.ytimg.com/vi/idui9ke0rSc/hqdefault.jpg") center / cover;
  border: 0;
  cursor: pointer;
  text-align: center;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  padding-inline-start: 4px;
  color: var(--primary);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  font-size: 1.7rem;
}

.video-loader-title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
}

.video-loader-note {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 600;
}

.feature-card {
  padding: 24px;
}

.feature-card .icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
}

.feature-card p {
  color: #53616d;
}

.areas {
  background: rgba(255, 255, 255, 0.45);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.areas-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(31, 59, 87, 0.05);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--primary);
  font-size: 1.12rem;
  font-weight: 800;
}

details p {
  padding: 0 24px 22px;
  color: #54616c;
}

.contact-layout {
  align-items: center;
}

.contact-direct {
  margin-top: 24px;
}

.contact-direct a {
  padding: 10px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--primary);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid rgba(31, 59, 87, 0.18);
  border-radius: var(--radius);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.84);
  background: #15293d;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-content div {
  display: grid;
}

.footer-content strong {
  color: var(--white);
}

.footer-content a {
  font-weight: 800;
}

.footer-whatsapp {
  color: #e0c77e;
}

.floating-actions {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(20, 30, 44, 0.22);
  font-size: 1.25rem;
  font-weight: 800;
}

.float-whatsapp {
  background: #2f8f56;
}

.float-call {
  background: var(--primary);
}

.float-email {
  background: var(--accent);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    min-height: auto;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    font-size: 0.95rem;
  }

  .hero-grid,
  .two-column,
  .video-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .portrait-wrap {
    order: 2;
    max-width: 560px;
    margin-inline: auto;
  }

  .problem-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 52px 0;
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-call {
    font-size: 0.95rem;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.55rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-grid {
    gap: 34px;
  }

  .trust-list,
  .problem-grid,
  .feature-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .contact-direct a {
    width: 100%;
  }

  .problem-grid .card {
    min-height: 92px;
  }

  .text-panel,
  .contact-form,
  .feature-card {
    padding: 22px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-actions {
    left: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    width: 50px;
    height: 50px;
  }
}
