@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --orange: #d96736;
  --orange-dark: #d75f2a;
  --blue: #9bb9be;
  --peach: #f0d3b7;
  --green: #25d366;
  --ink: #171717;
  --white: #ffffff;
  --container: 1140px;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Mulish", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

h2 {
  line-height: 1.17;
}

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

.section {
  padding: 70px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 5000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--orange-dark);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(220px, 272px) 1fr 42px;
  align-items: center;
  width: min(calc(100% - 40px), var(--container));
  min-height: 82px;
  margin-inline: auto;
  gap: 18px;
}

.brand {
  display: inline-flex;
  width: min(100%, 255px);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: clamp(15px, 1.55vw, 27px);
}

.site-nav a {
  position: relative;
  display: block;
  padding: 10px 0;
  color: #111;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-instagram {
  display: grid;
  width: 34px;
  height: 34px;
  color: #222;
  place-items: center;
}

.header-instagram svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.instagram-dot {
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  color: var(--orange);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 70vh;
  overflow: hidden;
  padding: 80px 20px 110px;
  color: var(--white);
  background: url("../images/hero.jpg") center center / cover no-repeat;
  place-items: center;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 120px;
  background: url("../images/hero-wave.png") bottom center / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

.hero-content {
  width: min(810px, 100%);
  text-align: center;
}

.hero h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 600;
}

.hero p {
  width: min(720px, 100%);
  margin: 0 auto;
  font-size: 18px;
  font-weight: 400;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 34px;
  border-radius: 3px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  margin-right: 9px;
  fill: currentColor;
}

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

.button-whatsapp {
  margin-top: 30px;
  background: var(--green);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: var(--orange-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 53.42fr 46.58fr;
  align-items: center;
  gap: 32px;
}

.about-photo img {
  width: 96%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.about-copy .eyebrow {
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
}

.about-copy h2,
.signals-copy h2,
.agreements h2 {
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 34px;
  font-weight: 600;
}

.about-copy > p:not(.eyebrow) {
  margin-bottom: 15px;
  color: #000;
  font-weight: 300;
}

.about-copy > p:last-child {
  margin-bottom: 0;
}

.patterned-section {
  color: var(--white);
  background: var(--blue) url("../images/brand-pattern.png") center / cover no-repeat;
}

.benefits {
  margin-top: 40px;
  padding: 50px 0 60px;
}

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

.section-heading h2 {
  margin-bottom: 13px;
  font-size: 36px;
  font-weight: 800;
}

.section-heading p {
  margin-bottom: 0;
  font-weight: 600;
}

.section-heading-light {
  color: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px 10px;
}

.benefit-card {
  min-height: 255px;
  padding: 25px;
  color: var(--white);
  background: var(--orange);
  border-radius: 9px;
}

.benefit-card > svg {
  width: 45px;
  height: 45px;
  margin: 0 auto 15px;
  fill: currentColor;
  overflow: visible;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.benefit-card p {
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
}

.quote {
  position: relative;
  display: grid;
  min-height: 390px;
  padding: 80px 20px;
  color: var(--white);
  place-items: center;
  isolation: isolate;
}

.quote-photo {
  background: url("../images/quote-background.webp") top center / cover no-repeat;
}

.quote-photo::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  content: "";
}

.quote-blue {
  min-height: auto;
  background: var(--blue);
}

.quote-content {
  text-align: center;
}

.quote h2 {
  width: min(900px, 100%);
  margin: 0 auto;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
}

.signals {
  padding-top: 50px;
  padding-bottom: 50px;
}

.signals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 44px;
}

.signals-photo img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.signals-copy h2 {
  font-size: 36px;
}

.signals-intro {
  margin-bottom: 14px;
}

.arrow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.arrow-list li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 42px;
}

.arrow-list li::before {
  position: absolute;
  top: -7px;
  left: 0;
  color: var(--orange);
  content: "→";
  font-size: 32px;
  font-weight: 300;
}

.signals-closing {
  margin: 22px 0 0;
}

.journey {
  position: relative;
  margin-top: 40px;
  padding: 70px 20px;
  color: var(--white);
  background: url("../images/contact-background.jpg") center center / cover no-repeat;
  isolation: isolate;
}

.journey-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.journey-content {
  text-align: center;
}

.journey h2 {
  width: min(970px, 85%);
  margin: 0 auto;
  font-size: 36px;
  font-weight: 600;
}

.process {
  padding: 60px 0;
  background-position: bottom center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.process-card {
  color: var(--white);
  text-align: center;
}

.process-card > svg {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  fill: currentColor;
  overflow: visible;
}

.process-card h3 {
  margin-bottom: 8px;
  font-size: 23px;
  font-weight: 600;
}

.process-card p {
  margin-bottom: 0;
}

.agreements {
  padding-top: 60px;
  padding-bottom: 60px;
}

.agreements-inner {
  max-width: 1000px;
}

.agreements-list {
  margin-top: 22px;
}

.agreements-list li {
  margin-bottom: 15px;
}

.agreements-closing {
  margin: 25px 0 0;
  font-weight: 500;
}

.contact {
  padding: 70px 0;
  background: url("../images/contact-background.jpg") center 38% / cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 20px;
}

.contact-card,
.form-card {
  padding: 36px;
  border-radius: var(--radius);
}

.contact-card {
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
}

.contact-card h2 {
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 800;
}

.contact-lead {
  margin-bottom: 32px;
  font-weight: 600;
}

.contact-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  margin-bottom: 23px;
  gap: 13px;
}

.contact-item > svg {
  width: 25px;
  height: 25px;
  margin-top: 3px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-item h3 {
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 600;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-item a {
  color: var(--white);
}

.contact-instagram {
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: #eb0ea6;
  border-radius: 5px;
  place-items: center;
}

.contact-instagram svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.form-card {
  background: var(--white);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  margin-bottom: 17px;
}

.form-field label {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  color: #222;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.48);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input {
  min-height: 48px;
}

.form-field textarea {
  min-height: 105px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 103, 54, 0.14);
}

.captcha-field {
  position: relative;
  margin: 4px 0 16px;
  padding: 12px;
  overflow: hidden;
  background: rgba(250, 249, 248, 0.92);
  border: 1px solid rgba(44, 36, 32, 0.12);
  border-radius: 6px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.captcha-field.has-error {
  background: #fffaf7;
  border-color: rgba(217, 103, 54, 0.46);
}

.captcha-heading {
  display: flex;
  align-items: center;
  gap: 9px;
}

.captcha-symbol {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: var(--orange-dark);
  background: rgba(217, 103, 54, 0.1);
  border-radius: 50%;
  place-items: center;
}

.captcha-symbol svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.captcha-title {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.captcha-heading small {
  display: block;
  margin-top: 2px;
  color: #685f59;
  font-size: 10.5px;
  line-height: 1.35;
}

.captcha-challenge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(44, 36, 32, 0.08);
  gap: 10px;
}

#captcha-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  min-height: 40px;
  margin: 0;
  padding: 7px 11px;
  color: var(--ink);
  background: #f7f5f3;
  border: 1px solid rgba(44, 36, 32, 0.08);
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
  white-space: nowrap;
}

.captcha-control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: 7px;
}

.captcha-control input {
  width: 96px;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(44, 36, 32, 0.25);
  border-radius: 5px;
  outline: none;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.captcha-control input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 103, 54, 0.14);
}

.captcha-field.has-error .captcha-control input {
  border-color: var(--orange-dark);
  box-shadow: 0 0 0 2px rgba(217, 103, 54, 0.1);
}

.captcha-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--orange-dark);
  background: transparent;
  border: 1px solid rgba(217, 103, 54, 0.34);
  border-radius: 5px;
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 700;
  gap: 6px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.captcha-refresh svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.captcha-refresh:hover,
.captcha-refresh:focus-visible {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.captcha-refresh:disabled {
  cursor: wait;
  opacity: 0.55;
}

.captcha-help {
  margin: 6px 0 0 39px;
  color: #817872;
  font-size: 10.5px;
  line-height: 1.4;
}

.captcha-help.is-error {
  color: #a53b24;
  font-weight: 600;
}

.form-submit {
  width: 100%;
  min-height: 49px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  color: #000;
  background: var(--peach);
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.form-status.is-success {
  color: #217a41;
}

.form-status.is-error {
  color: #a53b24;
}

.site-footer {
  padding: 15px 0;
  color: var(--white);
  background-color: var(--orange-dark);
  background-image: linear-gradient(rgba(215, 95, 42, 0.82), rgba(215, 95, 42, 0.82)), url("../images/brand-pattern.png");
  background-position: center;
  background-size: cover;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 55px;
}

.footer-inner p {
  margin: 0;
  font-weight: 300;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 300;
}

.footer-credit img {
  width: 50px;
  height: auto;
}

.floating-whatsapp {
  position: fixed;
  right: 32px;
  bottom: 22px;
  z-index: 1500;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.22));
  animation: whatsapp-bounce 2.8s ease-in-out infinite;
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
}

@keyframes whatsapp-bounce {
  0%,
  72%,
  100% {
    transform: translateY(0);
  }
  82% {
    transform: translateY(-8px);
  }
  91% {
    transform: translateY(-3px);
  }
}

:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: minmax(190px, 230px) 1fr 36px;
  }

  .site-nav ul {
    gap: 14px;
  }

  .site-nav a {
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: minmax(190px, 240px) 1fr 42px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-instagram {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    background: var(--white);
    box-shadow: 0 9px 14px rgba(0, 0, 0, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav ul {
    display: block;
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    padding: 14px 0 22px;
  }

  .site-nav a {
    padding: 12px 0;
    font-size: 16px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 28px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 72px;
  }

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

  .section {
    padding: 50px 0;
  }

  .header-inner {
    grid-template-columns: minmax(170px, 220px) 1fr;
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
    max-height: calc(100vh - 72px);
  }

  .hero {
    min-height: 0;
    padding: 80px 20px 110px;
  }

  .hero::after {
    height: 78px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    width: 88%;
    font-size: 16px;
  }

  .button {
    min-height: 56px;
    padding: 15px 26px;
    font-size: 18px;
  }

  .about-grid,
  .signals-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 34px;
  }

  .about-photo img {
    width: 100%;
    height: 420px;
  }

  .about-copy h2,
  .signals-copy h2,
  .agreements h2 {
    font-size: 28px;
  }

  .benefits {
    margin-top: 0;
    padding: 35px 0 40px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
    border: 1px solid rgba(255, 255, 255, 0.78);
  }

  .quote {
    min-height: auto;
    padding: 65px 20px;
  }

  .quote h2 {
    font-size: 28px;
  }

  .signals-grid {
    gap: 26px;
  }

  .signals-photo img {
    height: 337px;
  }

  .signals-copy h2 {
    font-size: 28px;
  }

  .journey {
    margin-top: 0;
    padding: 65px 20px;
  }

  .journey h2 {
    width: 100%;
    font-size: 28px;
  }

  .process {
    padding: 40px 0;
  }

  .process-grid {
    gap: 38px;
  }

  .agreements {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact {
    padding: 40px 0;
    background-position: center;
  }

  .contact-card,
  .form-card {
    padding: 25px 20px;
  }

  .contact-card h2 {
    font-size: 28px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 12px 0 25px;
    text-align: center;
    gap: 16px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 16px;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 420px) {
  .captcha-challenge {
    align-items: stretch;
    flex-direction: column;
  }

  #captcha-question {
    width: 100%;
  }

  .captcha-control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .captcha-control input {
    width: 100%;
  }

  .captcha-help {
    margin-left: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
