:root {
  --bg: #0a0a0b;
  --surface: #111214;
  --surface-soft: #18191c;
  --text: #121316;
  --muted: #666b74;
  --white: #ffffff;
  --red: #d11f29;
  --red-dark: #a8161f;
  --yellow: #f2c94c;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --container: 100%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  right: auto;
  width: min(calc(100% - 160px), var(--container));
  transform: translateX(-50%);
  z-index: 50;
  padding: 22px 0;
  border-radius: 26px;
  transition: all .3s ease;
  overflow: hidden;
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(10, 10, 11, .78);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--red);
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 60px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--red);
  transition: opacity .28s ease, transform .28s ease, max-width .28s ease, margin .28s ease;
  max-width: 320px;
  overflow: hidden;
}

.brand-text strong {
  color: inherit;
  font-weight: 600;
}

.site-header.scrolled .brand {
  gap: 0;
}

.site-header.scrolled .brand-text {
  opacity: 0;
  transform: translateX(-8px);
  max-width: 0;
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--white);
}

.header-cta,
.mobile-menu-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  transition: .25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.header-cta {
  padding: 14px 22px;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .06);
}

.header-cta:hover,
.button-primary:hover,
.mobile-menu-cta:hover {
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.8rem;
}

.mobile-menu {
  display: none;
  background: rgba(10, 10, 11, .96);
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  display: grid;
  gap: 16px;
  padding: 24px 0 28px;
}

.mobile-menu a {
  color: rgba(255, 255, 255, .88);
}

.mobile-menu-cta {
  margin-top: 8px;
  padding: 16px 20px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .06);
}

.hero {
  position: relative;
  min-height: 92vh;
  background: var(--bg);
  color: var(--white);
  overflow: hidden;
  border-radius: 0 0 36px 36px;
}

.hero-mobile {
  position: relative;
  min-height: 90svh;
  background: var(--bg);
  color: var(--white);
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('../assets/imagens/hero.png') 84% center/cover no-repeat;
  transform: scale(1);
  opacity: .72;
}

.hero-mobile .hero-media {
  background-position: 73% center;
  opacity: .68;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, .72) 0%, rgba(7, 8, 10, .48) 32%, rgba(7, 8, 10, .12) 62%, rgba(7, 8, 10, .02) 100%),
    radial-gradient(circle at 24% 44%, rgba(7, 8, 10, .28) 0%, rgba(7, 8, 10, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 118px 0 72px;
  overflow: hidden;
}

.hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(180px, 1fr);
  align-items: center;
  gap: 40px;
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px;
  transform: translateY(-18px);
  min-width: 0;
}

.hero-visual-spacer {
  min-height: 460px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .92);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 640px;
  margin: 0 0 20px;
  font-size: clamp(4rem, 6vw, 5.25rem);
  line-height: 1.1;
  letter-spacing: -.06em;
  font-weight: 500;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  max-width: 620px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.125rem, 1.8vw, 1.32rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.button {
  padding: 18px 30px;
  font-size: .95rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.button-primary {
  background: #fff;
  color: var(--text);
}

.button-secondary {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
}

.button-secondary:hover {
  border-radius: 999px;
}

.button-fill {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(0);
  z-index: -1;
  pointer-events: none;
}

.header-cta .button-fill,
.mobile-menu-cta .button-fill,
.button-primary .button-fill {
  background: rgba(0, 0, 0, .12);
}

.button-secondary .button-fill {
  background: rgba(255, 255, 255, .14);
}

.button-label {
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 16px;
  color: #111214;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .96);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  align-self: flex-start;
}

.service-link .button-fill {
  background: rgba(255, 255, 255, .82);
}

.header-cta,
.mobile-menu-cta,
.button-primary {
  background: var(--red);
  color: var(--white);
}

.header-cta .button-fill,
.mobile-menu-cta .button-fill,
.button-primary .button-fill {
  background: var(--red-dark);
}

.service-link:hover {
  border-radius: 999px;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 24px;
  background: rgba(17, 18, 20, .54);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.avatars {
  display: flex;
}

.avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--surface);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
}

.avatars img+img {
  margin-left: -8px;
}

.hero-proof strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
}

.hero-proof small {
  color: rgba(255, 255, 255, .68);
}

section {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 44px;
}

.section-head.center {
  text-align: center;
}

.section-label {
  color: var(--red);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.services {
  background: #fafafa;
}

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

.card {
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
}

.service-card {
  position: relative;
  min-height: 520px;
  border: 0;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-opacity: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(10, 10, 12, .02) 0%, rgba(10, 10, 12, .18) 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, .24) 0%, rgba(255, 255, 255, .12) 18%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, rgba(14, 15, 18, 0) 42%, rgba(14, 15, 18, .16) 100%);
  opacity: var(--glow-opacity);
  transition: opacity .28s ease;
  pointer-events: none;
}

.service-card::after {
  display: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, .12);
}

.service-card-executive {
  background-color: #d61f2a;
  background-image: linear-gradient(180deg, #f03a45 0%, #b8141f 100%);
}

.service-card-groups {
  background-color: #111214;
  background-image: linear-gradient(180deg, #191b1f 0%, #070809 100%);
}

.service-card-charter {
  background-color: #8e949d;
  background-image: linear-gradient(180deg, #a4abb5 0%, #707782 100%);
}

.service-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: 30px;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.service-card h3 {
  max-width: 280px;
  margin: 0;
  font-size: 1.95rem;
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: #fff;
}

.service-card p {
  max-width: 290px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.5;
  font-size: 1rem;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .92);
  font-size: 1rem;
  font-weight: 600;
}

.about {
  padding-block: 146px;
  background: #fafafa;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 124px);
  align-items: center;
}

.about-copy {
  max-width: 500px;
}

.about-copy .section-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.about-copy h2 {
  margin: 16px 0 0;
  max-width: 480px;
  font-size: clamp(2.15rem, 3.8vw, 3.55rem);
  line-height: 1.12;
  letter-spacing: -0.07em;
  font-weight: 460;
  color: #15171a;
}

.about-copy p {
  margin: 0;
  max-width: 470px;
  color: rgba(21, 23, 26, .7);
  line-height: 1.74;
  font-size: 0.93rem;
}

.about-copy p+p {
  margin-top: 14px;
}

.about-copy p:first-of-type {
  margin-top: 24px;
}

.about-signature {
  display: inline-block;
  margin-top: 24px;
  color: rgba(21, 23, 26, .52);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-cta {
  margin-top: 30px;
  background: var(--red);
  color: var(--white);
  border: 1px solid rgba(230, 26, 36, .18);
  box-shadow: 0 20px 40px rgba(230, 26, 36, .18);
}

.about-cta .button-fill {
  background: #b9141f;
}

.about-gallery {
  position: relative;
  min-height: 790px;
}

.about-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 28px 60px rgba(21, 23, 26, .09);
  background: #e8e2d9;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-large {
  top: 10px;
  left: 2%;
  width: 43%;
  aspect-ratio: 0.82;
  transform: rotate(-2deg);
}

.about-photo-tall {
  top: 0;
  right: 3%;
  width: 29%;
  aspect-ratio: 0.7;
  transform: rotate(1.6deg);
}

.about-photo-square {
  right: 15%;
  bottom: 8px;
  width: 38%;
  aspect-ratio: 1;
  transform: rotate(-1.4deg);
}

.about-photo-small {
  left: 16%;
  bottom: 92px;
  width: 25%;
  aspect-ratio: 0.8;
  transform: rotate(2deg);
}

.steps {
  background: #060708;
  color: var(--white);
  border-radius: 34px 34px 0 0;
  overflow: hidden;
}

.process-head {
  max-width: 1080px;
  margin-bottom: 64px;
}

.process-head .section-label {
  color: rgba(255, 255, 255, .86);
}

.process-head h2 {
  margin: 18px 0 0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 500;
  color: rgba(255, 255, 255, .48);
  max-width: 1120px;
}

.process-head h2 span {
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 72px;
  align-items: start;
}

.process-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 18px;
}

.process-cta {
  margin-top: 28px;
  width: auto;
}

.process-list {
  display: grid;
  gap: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 22px;
  padding: 26px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.process-item:first-child {
  padding-top: 0;
}

.process-item:last-child {
  padding-bottom: 0;
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
  line-height: 1;
  margin-top: 4px;
}

.process-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.process-item h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.process-item p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.72;
  font-size: 1.05rem;
  max-width: 520px;
}

.contact {
  background: #060708;
  color: var(--white);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 260px;
  padding: 28px 32px 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #111214 0%, #191b1f 100%);
}

.contact-panel::after {
  content: none;
  position: absolute;
  left: -14px;
  right: -14px;
  bottom: -46px;
  width: auto;
  text-align: left;
  font-size: clamp(11rem, 23vw, 22rem);
  line-height: 0.68;
  letter-spacing: -0.2em;
  font-weight: 900;
  color: rgba(255, 255, 255, .08);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  transform: scaleX(1.22);
  transform-origin: left bottom;
}

.contact-panel h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact-direct-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .86);
  font-size: 0.98rem;
  line-height: 1.4;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.contact-direct-link:hover {
  color: #fff;
}

.contact-direct-icon-wpp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  color: rgba(255, 255, 255, .82);
  flex: 0 0 auto;
}

.contact-direct-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, .82);
  flex: 0 0 auto;
  margin-left: 5px;
}

.contact-direct-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-direct-text {
  display: grid;
  gap: 2px;
}

.contact-direct-text small {
  color: rgba(255, 255, 255, .5);
  font-size: 0.74rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-direct-text strong {
  color: rgba(255, 255, 255, .92);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-actions {
  position: relative;
  z-index: 1;
  min-width: 460px;
}

.contact-panel>div:first-child {
  position: relative;
  z-index: 1;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(12px);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field span {
  color: rgba(255, 255, 255, .74);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 9, 11, .58);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color .22s ease, background-color .22s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, .34);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(230, 26, 36, .58);
  background: rgba(8, 9, 11, .76);
}

.contact-field textarea {
  resize: vertical;
  min-height: 72px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-submit {
  width: 100%;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-footer {
  padding: 46px 0 34px;
  background: #262523;
  color: rgba(255, 255, 255, .8);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-feature h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .92);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

.footer-feature p {
  margin: 0;
  color: rgba(255, 255, 255, .54);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-top: 34px;
}

.footer-lettering {
  margin-top: 26px;
  color: rgba(255, 255, 255, .06);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  font-size: clamp(9.8rem, 26vw, 19rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
}

.footer-bottom-logo {
  display: block;
  width: auto;
  height: 88px;
  object-fit: contain;
  justify-self: start;
}

.footer-bottom-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
  justify-self: end;
}

.footer-bottom-nav a {
  color: rgba(255, 255, 255, .56);
  font-size: 0.95rem;
  transition: color .25s ease;
}

.footer-bottom-nav a:hover {
  color: rgba(255, 255, 255, .92);
}

.footer-inline-credit,
.footer-bottom p,
.footer-credit-link {
  color: rgba(255, 255, 255, .56);
  font-size: 0.95rem;
}

.footer-inline-credit {
  margin: 0;
  white-space: nowrap;
  text-align: center;
  justify-self: center;
  align-self: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.whatsapp-wrapper {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: block;
}

.whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 14px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 40px rgba(11, 33, 54, 0.24);
  overflow: hidden;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.whatsapp:hover {
  transform: translateY(-2px);
  background: #25d366;
  color: #fff;
}

.whatsapp-label {
  position: absolute;
  left: 22px;
  right: 82px;
  opacity: 0;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  pointer-events: none;
}

.whatsapp-icon {
  position: relative;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  z-index: 1;
  margin-right: -1px;
}

.whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 1024px) {

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .service-grid,
  .contact-panel,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-visual-spacer {
    display: none;
  }

  .hero-copy {
    max-width: 640px;
    transform: translateY(-8px);
  }

  .process-head {
    max-width: 100%;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 560px;
  }

  .about-gallery {
    min-height: 660px;
    margin-top: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 34px;
  }

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

  .footer-bottom-nav {
    justify-content: flex-start;
  }
}

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

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

  .hero-layout {
    grid-template-columns: minmax(0, 600px) minmax(160px, 1fr);
    gap: 24px;
  }

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

  .hero h1 {
    max-width: 580px;
    font-size: clamp(3.6rem, 5.6vw, 4.8rem);
  }

  .hero p {
    max-width: 520px;
  }
}

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

  .site-header {
    top: 10px;
    width: min(calc(100% - 32px), var(--container));
    padding: 14px 0;
    border-radius: 18px;
  }

  .site-header.scrolled {
    padding: 10px 0;
  }

  .nav-bar {
    gap: 12px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-logo {
    height: 30px;
  }

  .brand-text {
    font-size: 1.02rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 90svh;
    border-radius: 0 0 24px 24px;
  }

  .hero-media {
    background-position: 73% center;
    opacity: .82;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.80) 100%);
  }

  .hero-content {
    width: 1000px;
    align-items: flex-start;
    padding: 104px 14px 44px 14px;
    min-height: 90svh;
    justify-content: flex-end;
  }

  .hero-layout {
    width: 1000px;
  }

  .hero-copy {
    width: 1000px;
    max-width: 390px;
    transform: none;
    align-items: flex-start;
    text-align: left;
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 14px;
    letter-spacing: 0.06em;
    padding: 8px 14px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
  }

  .hero p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.80);
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }

  .button {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    transition: transform 0.15s ease, opacity 0.15s ease;
  }

  .button:active {
    transform: scale(0.97);
    opacity: 0.88;
  }

  .button-primary {
    min-height: 56px;
    border-radius: 14px;
  }

  .button-secondary {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
  }

  .hero-proof {
    display: none;
  }

  .avatars img {
    width: 32px;
    height: 32px;
  }

  .about {
    padding-block: 104px;
  }

  .about-layout {
    gap: 34px;
  }

  .about-copy h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 8.8vw, 3rem);
    line-height: 1.1;
  }

  .about-copy .section-label {
    font-size: 0.78rem;
  }

  .about-copy p {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .about-signature {
    margin-top: 24px;
    font-size: 0.8rem;
  }

  .about-cta {
    margin-top: 28px;
  }

  .about-gallery {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
  }

  .about-photo {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    border-radius: 18px;
  }

  .about-photo-large,
  .about-photo-tall,
  .about-photo-square,
  .about-photo-small {
    width: 100%;
  }

  .about-photo-large,
  .about-photo-square {
    aspect-ratio: 0.92;
  }

  .about-photo-tall,
  .about-photo-small {
    aspect-ratio: 0.78;
  }

  .contact-panel {
    min-height: auto;
    padding: 24px 20px 24px;
  }

  .contact-panel::after {
    content: none;
  }

  .process-head {
    margin-bottom: 36px;
  }

  .process-head h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .process-grid {
    gap: 34px;
  }

  .process-visual img {
    border-radius: 18px;
  }

  .process-item {
    grid-template-columns: 30px 1fr;
    gap: 16px;
    padding: 20px 0 24px;
  }

  .process-item h3 {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }

  .process-item p {
    font-size: 0.98rem;
  }

  .process-cta {
    width: 100%;
    margin-top: 20px;
  }

  .contact-actions {
    min-width: 100%;
  }

  .contact-form {
    padding: 18px;
    border-radius: 20px;
  }

  .contact-direct-links {
    gap: 10px;
    margin-top: 18px;
  }

  .contact-direct-link {
    font-size: 0.92rem;
  }

  .contact-direct-text strong {
    font-size: 0.95rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-field-full {
    grid-column: auto;
  }

  .service-card {
    min-height: 460px;
  }

  .service-card-content {
    min-height: 460px;
    padding: 22px;
  }

  .service-card h3 {
    max-width: 220px;
    font-size: 1.55rem;
  }

  .service-card p {
    max-width: 240px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .service-link {
    width: auto;
  }

  section {
    padding: 78px 0;
  }

  .card,
  .step,
  .about-panel,
  .contact-panel,
  .steps {
    border-radius: 24px;
  }

  .site-footer {
    padding: 34px 0 28px;
  }

  .footer-top {
    gap: 18px;
    padding-bottom: 26px;
  }

  .footer-feature p {
    font-size: 0.9rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
  }

  .footer-inline-credit {
    white-space: normal;
    text-align: left;
    font-size: 0.88rem;
  }

  .footer-lettering {
    margin-top: 20px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    font-size: clamp(5.8rem, 26vw, 9.4rem);
    letter-spacing: -0.02em;
  }

  .footer-bottom-logo {
    height: 64px;
  }

  .footer-bottom-nav {
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .whatsapp-wrapper {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp {
    width: 60px;
    height: 60px;
  }

  .whatsapp-label {
    left: 18px;
    right: 74px;
    font-size: 0.8rem;
  }

  .whatsapp-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }
}

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

  .site-header {
    width: min(calc(100% - 20px), var(--container));
    top: 8px;
    border-radius: 16px;
  }

  .hero-content {
    width: 100%;
    padding: 96px 14px 36px 14px;
  }

  .hero h1 {
    font-size: clamp(28px, 8.5vw, 34px);
  }

  .hero p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .button {
    border-radius: 12px;
  }

  .button-primary {
    min-height: 54px;
    border-radius: 12px;
  }

  .button-secondary {
    border-radius: 12px;
  }

  .hero-proof {
    display: none;
  }

  .avatars img {
    width: 28px;
    height: 28px;
  }

  .service-card {
    min-height: 420px;
  }

  .service-card-content {
    min-height: 420px;
    padding: 18px;
  }

  .service-card-top {
    gap: 10px;
  }

  .service-card h3 {
    font-size: 1.42rem;
    max-width: 180px;
  }

  .service-card p {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .service-badge {
    min-width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .about {
    padding-block: 88px;
  }

  .about-layout {
    gap: 28px;
  }

  .about-gallery {
    gap: 12px;
  }

  .process-head h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .process-item {
    grid-template-columns: 26px 1fr;
    gap: 14px;
  }

  .process-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }

  .process-item h3 {
    font-size: 1.2rem;
  }

  .process-item p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .contact-panel {
    padding: 20px 16px 20px;
    border-radius: 20px;
  }

  .contact-panel h2 {
    font-size: 1.5rem;
  }

  .contact-panel p {
    font-size: 0.9rem;
  }

  .contact-direct-links {
    gap: 8px;
    margin-top: 14px;
  }

  .contact-direct-link {
    gap: 10px;
  }

  .contact-direct-icon {
    width: 24px;
    height: 24px;
  }

  .contact-direct-text strong {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 14px;
    gap: 10px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    padding: 9px 11px;
    border-radius: 12px;
  }

  .footer-top {
    gap: 14px;
  }

  .footer-feature h3 {
    font-size: 0.94rem;
  }

  .footer-feature p {
    font-size: 0.86rem;
  }

  .footer-bottom-logo {
    height: 52px;
  }

  .footer-bottom-nav {
    gap: 10px 14px;
  }

  .footer-bottom-nav a {
    font-size: 0.88rem;
  }

  .footer-inline-credit {
    font-size: 0.84rem;
  }

  .footer-lettering {
    font-size: clamp(4.8rem, 24vw, 7rem);
    line-height: 0.88;
  }

  .whatsapp {
    width: 58px;
    height: 58px;
  }

  .whatsapp-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
  }
}