:root {
  --brown-950: #1b0d06;
  --brown-900: #241006;
  --brown-850: #2a1409;
  --brown-800: #32190e;
  --brown-700: #512817;
  --copper-600: #a6572b;
  --copper-500: #c87943;
  --copper-400: #e6a36f;
  --cream-100: #f8f0e5;
  --cream-200: #f2e2cf;
  --cream-300: #ead4ba;
  --ink-soft: #6e5b4c;
  --white: #ffffff;
  --whatsapp: #25d366;
  --max: 1240px;
  --radius: 26px;
  --shadow: 0 18px 50px rgba(62, 34, 16, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--brown-800);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--brown-950);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(24, 10, 3, 0.28);
}

.header-main {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 12px;
}

.brand-logo {
  width: 225px;
  height: auto;
}

.segment-nav,
.mobile-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.segment-nav a,
.mobile-nav a {
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  transition: 160ms ease;
}

.segment-nav a:hover,
.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.segment-nav a[aria-current='page'],
.mobile-nav a[aria-current='page'] {
  background: var(--copper-500);
  color: var(--brown-950);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.phone-link:hover {
  color: var(--white);
}

.institutional-menu {
  position: relative;
}

.menu-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(213, 138, 80, 0.58);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(213, 138, 80, 0.12);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  transition: 170ms ease;
}

.menu-trigger::-webkit-details-marker {
  display: none;
}

.menu-trigger:hover,
.menu-trigger:focus-visible {
  border-color: var(--copper-400);
  background: rgba(213, 138, 80, 0.22);
  outline: none;
}

.menu-icon {
  color: var(--copper-400);
  font-size: 19px;
  line-height: 1;
}

.menu-chevron {
  font-size: 16px;
  transition: transform 170ms ease;
}

.institutional-menu[open] .menu-chevron {
  transform: rotate(180deg);
}

.institutional-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 80;
  width: min(340px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid #dec5a7;
  border-radius: 24px;
  padding: 12px;
  background: #fffaf3;
  color: var(--brown-800);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.menu-heading {
  padding: 4px 12px 9px;
}

.menu-heading strong {
  display: block;
  color: var(--copper-600);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-heading span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 14px;
}

.menu-links {
  display: grid;
  gap: 4px;
}

.menu-links + .menu-links {
  margin-top: 8px;
  border-top: 1px solid #dfc7aa;
  padding-top: 8px;
}

.menu-links a {
  border-radius: 16px;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 800;
  transition: 150ms ease;
}

.menu-links a:hover,
.menu-links a:focus-visible {
  background: var(--cream-200);
  color: #7d3f20;
  outline: none;
}

.menu-links a[aria-current='page'] {
  background: var(--cream-300);
  color: var(--brown-800);
}

.menu-whatsapp {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  border-radius: 16px;
  padding: 11px 14px;
  background: var(--whatsapp);
  color: #0d2b18;
  font-size: 14px;
  font-weight: 900;
  transition: 150ms ease;
}

.menu-whatsapp:hover,
.menu-whatsapp:focus-visible {
  background: #38e376;
  outline: none;
}

.whatsapp-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 900;
  cursor: pointer;
  transition: 170ms ease;
}

.whatsapp-button {
  min-height: 44px;
  padding: 10px 18px;
  background: var(--whatsapp);
  color: #0d2b18;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.17);
}

.whatsapp-button:hover,
.form-submit:hover {
  transform: translateY(-2px);
  background: #38e376;
}

.mobile-nav {
  display: none;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar {
  display: none;
}

.hero {
  overflow: hidden;
  background: var(--brown-850);
  color: var(--white);
}

.hero-banner {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--brown-850);
}

.hero-context {
  border-top: 1px solid rgba(225, 161, 108, 0.25);
  background: linear-gradient(110deg, var(--brown-900), #3b1d0d 52%, var(--brown-700));
}

.hero-context-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding-block: 38px;
}

.eyebrow {
  margin: 0;
  color: var(--copper-400);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 8px 0 0;
  max-width: 820px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-copy {
  margin: 14px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-button {
  background: var(--copper-400);
  color: var(--brown-850);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #f3bf91;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
}

.secondary-button:hover {
  border-color: rgba(230, 163, 111, 0.75);
  color: var(--white);
}

.section {
  padding: 86px 0;
}

.section-kicker {
  margin: 0;
  color: var(--copper-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-title {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--brown-800);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 46px;
}

.product-card {
  overflow: hidden;
  border: 1px solid #dfc7aa;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #ead9c7;
}

.product-card-body {
  padding: 26px;
}

.product-card h3 {
  margin: 0;
  color: var(--brown-800);
  font-size: 25px;
  letter-spacing: -0.03em;
}

.product-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--copper-600);
  font-size: 14px;
  font-weight: 900;
}

.proof-section {
  background: var(--cream-300);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 64px;
}

.proof-media {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 32px;
  background: #d6c0a8;
  box-shadow: 0 24px 70px rgba(66, 44, 25, 0.16);
}

.proof-media > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 20px;
  background: rgba(40, 19, 9, 0.92);
  color: var(--white);
}

.proof-badge strong {
  display: block;
  color: var(--copper-400);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-badge span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.proof-copy > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: #675447;
  font-size: 17px;
  line-height: 1.75;
}

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

.strength-list li {
  position: relative;
  border-radius: 16px;
  padding: 17px 17px 17px 46px;
  background: rgba(255, 255, 255, 0.68);
  color: #4a2b1c;
  font-weight: 800;
  line-height: 1.4;
}

.strength-list li::before {
  position: absolute;
  top: 16px;
  left: 17px;
  color: var(--copper-600);
  content: '✓';
  font-size: 20px;
  font-weight: 900;
}

.quote-section {
  background: var(--brown-850);
  color: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 64px;
}

.quote-copy .section-title {
  color: var(--white);
}

.quote-copy > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(217, 138, 82, 0.5);
  border-radius: 50%;
  color: #eab07e;
}

.lead-form {
  border-radius: 32px;
  padding: 30px;
  background: var(--white);
  color: #3a2115;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.24);
}

.form-heading {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8ddd0;
}

.form-heading strong {
  display: block;
  font-size: 20px;
}

.form-heading span {
  display: block;
  margin-top: 5px;
  color: #77675b;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d9c6b4;
  border-radius: 12px;
  outline: none;
  background: #fbf8f2;
  color: #3a2115;
}

.form-field input,
.form-field select {
  min-height: 50px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
  padding: 14px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--copper-500);
  box-shadow: 0 0 0 3px rgba(200, 121, 67, 0.17);
}

.form-submit {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #0b2d19;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 170ms ease;
}

.form-note {
  margin: 14px 0 0;
  color: #81756c;
  font-size: 12px;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 42px 0;
  background: var(--brown-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 36px;
}

.footer-logo {
  width: 225px;
}

.footer-contact {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact a:hover,
.footer-nav a:hover {
  color: var(--copper-400);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
}

.mobile-cta {
  display: none;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
  background: var(--brown-950);
  color: var(--white);
  text-align: center;
}

.redirect-page img {
  width: min(320px, 78vw);
  margin: 0 auto 28px;
}

.redirect-page p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1020px) {
  .segment-nav,
  .phone-link {
    display: none;
  }

  .hero-context-inner,
  .proof-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .proof-grid,
  .quote-grid {
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-main {
    min-height: 72px;
    gap: 10px;
  }

  .brand-logo {
    width: 160px;
  }

  .menu-trigger {
    padding-inline: 13px;
    font-size: 13px;
  }

  .hero-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: 88% center;
  }

  .hero-context-inner {
    padding-block: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 68px 0;
  }

  .product-grid,
  .strength-list,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-media {
    min-height: 350px;
  }

  .lead-form {
    padding: 22px;
  }

  .footer-grid {
    align-items: start;
  }

  .mobile-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 50;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--whatsapp);
    color: #0b2d19;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  }

  .site-footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 158px;
  }

  .whatsapp-button span {
    display: none;
  }

  h1 {
    font-size: 29px;
  }

  .section-title {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
