:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #bad0dc;
  --panel: #102a3a;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #16bff3;
  --deep-blue: #062b45;
  --cyan: #00c8ff;
  --cream: #f3ead4;
  --green: #22d7ff;
  --coal: #061520;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-bottom: 82px;
  background: #eef8fc;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 100vw;
  min-height: 78px;
  padding: 10px clamp(18px, 5vw, 56px);
  background: rgba(3, 20, 33, 0.94);
  border-bottom: 1px solid rgba(0, 200, 255, 0.3);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
}

.brand-logo {
  width: 68px;
  height: 60px;
  object-fit: contain;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.42));
}

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

.brand small {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
}

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

.language-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(36, 184, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.lang-option {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
}

.lang-option.is-active {
  background: var(--blue);
  color: #031421;
}

.lang-code {
  line-height: 1;
}

.us-flag {
  position: relative;
  width: 24px;
  height: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(4, 20, 33, 0.26);
  background:
    linear-gradient(
      to bottom,
      #b22234 0 7.69%,
      #ffffff 7.69% 15.38%,
      #b22234 15.38% 23.07%,
      #ffffff 23.07% 30.76%,
      #b22234 30.76% 38.45%,
      #ffffff 38.45% 46.14%,
      #b22234 46.14% 53.83%,
      #ffffff 53.83% 61.52%,
      #b22234 61.52% 69.21%,
      #ffffff 69.21% 76.9%,
      #b22234 76.9% 84.59%,
      #ffffff 84.59% 92.28%,
      #b22234 92.28% 100%
    );
}

.us-flag::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 10.5px;
  height: 8.9px;
  background: #3c3b6e;
}

.us-flag span {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.3px;
  height: 1.3px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    3px 0 #ffffff,
    6px 0 #ffffff,
    0 2.5px #ffffff,
    3px 2.5px #ffffff,
    6px 2.5px #ffffff,
    0 5px #ffffff,
    3px 5px #ffffff,
    6px 5px #ffffff;
  z-index: 1;
}

.lang-option.is-active .us-flag {
  border-color: rgba(3, 20, 33, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.nav a:hover,
.footer a:hover {
  color: var(--blue);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0 18px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  align-items: center;
  padding: clamp(82px, 11vw, 132px) clamp(18px, 5vw, 64px) 104px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 24, 38, 0.95) 0%, rgba(6, 56, 88, 0.75) 42%, rgba(6, 56, 88, 0.22) 82%),
    linear-gradient(0deg, rgba(4, 24, 38, 0.92) 0%, rgba(4, 24, 38, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-logo,
.hero-content picture {
  width: clamp(300px, 38vw, 500px);
}

.hero-logo {
  margin-bottom: clamp(18px, 3vw, 30px);
  object-fit: contain;
  background: transparent;
  border: 0;
  filter:
    drop-shadow(0 18px 26px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 14px rgba(36, 184, 255, 0.16));
}

.hero-logo.original-logo {
  width: clamp(170px, 20vw, 270px);
  max-height: min(28vh, 270px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 600px;
  color: #d7e2e8;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-evidence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 22px;
}

.hero-evidence figure {
  position: relative;
  min-height: 98px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #061520;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.hero-evidence img {
  width: 100%;
  height: 100%;
  min-height: 98px;
  object-fit: cover;
}

.hero-evidence figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 5px 8px;
  background: rgba(4, 24, 38, 0.78);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 1000;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #25d7ff, #0788d3);
  color: #00131e;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.14);
}

.button.full {
  width: 100%;
}

.quick-panel {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 24px;
  left: clamp(18px, 5vw, 64px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-left: auto;
  border: 1px solid rgba(36, 184, 255, 0.2);
  background: rgba(36, 184, 255, 0.18);
}

.quick-panel > span {
  padding: 16px;
  background: rgba(4, 25, 39, 0.72);
  color: var(--muted);
}

.quick-panel strong {
  display: block;
  color: var(--ink);
}

.quick-panel > span > span {
  display: block;
  margin-top: 3px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 64px);
  background: #061520;
  border-top: 1px solid rgba(0, 200, 255, 0.25);
  border-bottom: 1px solid rgba(0, 200, 255, 0.25);
}

.proof-strip span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 900;
}

.process {
  background: #ffffff;
  color: #092130;
}

.process .section-head p:last-child {
  max-width: 720px;
  color: #58707d;
}

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

.process-steps article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid #cfe4ee;
  background: linear-gradient(180deg, #ffffff 0%, #eef8fc 100%);
  box-shadow: 0 14px 30px rgba(9, 47, 70, 0.08);
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background: #16bff3;
  color: #031421;
  font-weight: 1000;
}

.process-steps strong {
  display: block;
  margin-bottom: 10px;
  color: #0f4362;
  font-size: 1.15rem;
}

.process-steps p {
  color: #58707d;
}

.section,
.work-band {
  padding: clamp(56px, 9vw, 104px) clamp(18px, 5vw, 64px);
}

.about {
  background: linear-gradient(180deg, #e8f8ff 0%, #f8fcff 100%);
  color: #092130;
}

.about .section-head {
  max-width: 920px;
}

.about .section-head p:last-child {
  color: #4b6675;
  font-size: 1.08rem;
}

.history-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 18px;
  border: 1px solid #9be8ff;
  background: #9be8ff;
  box-shadow: 0 18px 42px rgba(9, 47, 70, 0.1);
}

.history-strip article {
  min-height: 128px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 20px;
  background:
    radial-gradient(circle at 30% 10%, rgba(22, 191, 243, 0.16), transparent 34%),
    #ffffff;
  text-align: center;
}

.history-strip strong {
  color: #063553;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
  font-weight: 1000;
}

.history-strip span {
  color: #0f4362;
  font-weight: 900;
}

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

.about-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid #cfe4ee;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(9, 47, 70, 0.08);
}

.about-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #0f4362;
  font-size: 1.2rem;
}

.about-grid p {
  color: #58707d;
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
  color: #092130;
}

#servicios .section-head {
  max-width: 860px;
}

#servicios .section-head p:last-child {
  max-width: 720px;
  color: #58707d;
  font-size: 1.06rem;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  grid-column: span 3;
  min-height: 300px;
  padding: 0 20px 18px;
  border: 1px solid #cfe4ee;
  background: #ffffff;
  color: #092130;
  box-shadow: 0 16px 34px rgba(9, 47, 70, 0.1);
  overflow: hidden;
}

.service-card.spotlight {
  grid-column: span 3;
  min-height: 455px;
}

.service-card.featured {
  background: #ffffff;
  border-color: #cfe4ee;
}

.service-card.compact-cta {
  grid-column: span 6;
  min-height: auto;
  background: linear-gradient(135deg, #061925 0%, #0a324c 50%, #0b6aa8 100%);
  color: #ffffff;
  border-color: rgba(34, 215, 255, 0.52);
}

.service-card.compact-cta p {
  color: #d8f4ff;
}

.service-card.compact-cta .service-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #22d7ff;
}

.service-card.compact-cta .card-cta {
  background: #27d366;
  color: #04140a;
}

.service-card p {
  flex: 1;
  color: #58707d;
}

.service-card h3 {
  margin-top: 4px;
}

.service-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 14px 0 7px;
  padding: 0 10px;
  background: rgba(22, 191, 243, 0.12);
  color: #0a78c6;
  font-size: 0.74rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.card-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 14px;
  background: #0a78c6;
  color: #ffffff;
  font-weight: 1000;
}

.service-media {
  position: relative;
  height: 145px;
  margin: 0 -20px 0;
  background: #dbeef7;
  overflow: hidden;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 32, 0.08) 0%, rgba(6, 21, 32, 0.24) 100%),
    rgba(6, 43, 69, 0.08);
  pointer-events: none;
}

.service-card.spotlight .service-media {
  height: 200px;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96) brightness(0.92);
}

.packages {
  background: #eef8fc;
  color: #092130;
}

.packages .section-head p:last-child {
  color: #58707d;
  max-width: 760px;
}

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

.package-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid #cfe4ee;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(9, 47, 70, 0.08);
}

.package-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #0f4362;
  font-size: 1.12rem;
}

.package-grid p {
  color: #58707d;
}

.work-band {
  background: #ffffff;
  color: #0b1117;
}

.work-band .eyebrow {
  color: #087eb8;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(210px, 23vw);
  gap: 14px;
}

.gallery-tile {
  position: relative;
  display: grid;
  place-items: end start;
  margin: 0;
  padding: 0;
  min-height: 180px;
  overflow: hidden;
  background: #061520;
  color: white;
  font-weight: 900;
}

.gallery-tile.large {
  grid-row: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 24, 38, 0.02) 35%, rgba(4, 24, 38, 0.82) 100%);
  pointer-events: none;
}

.gallery-tile figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.gallery-tile:hover img {
  transform: scale(1.035);
}

.social-band {
  background: linear-gradient(180deg, #061520 0%, #0b2b42 100%);
  color: var(--ink);
}

.social-band .section-head {
  color: var(--ink);
}

.social-band .section-head p:last-child {
  max-width: 680px;
  color: var(--muted);
}

.social-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 16px;
  align-items: stretch;
}

.social-card {
  min-height: 450px;
  padding: 18px;
  border: 1px solid rgba(0, 200, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.social-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.social-card-head span {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 1000;
}

.social-card-head a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  background: var(--blue);
  color: #031421;
  font-weight: 1000;
  white-space: nowrap;
}

.tiktok-card .tiktok-embed {
  width: 100% !important;
  max-width: none !important;
  min-height: 390px;
  background: #ffffff;
}

.facebook-fallback {
  min-height: 390px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 18%, rgba(22, 191, 243, 0.2), transparent 34%),
    linear-gradient(145deg, #041826, #0d3955);
}

.facebook-fallback img {
  width: min(74%, 260px);
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.42));
}

.facebook-fallback strong {
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.facebook-fallback p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
}

.facebook-fallback a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--blue);
  color: #031421;
  font-weight: 1000;
}

.details {
  background: #0b6aa8;
  color: #ffffff;
}

.details .section-head {
  color: #ffffff;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.detail-list span {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 800;
}

.reasons {
  background: #eef5f7;
  color: #0b1117;
}

.reasons .eyebrow {
  color: #087c63;
}

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

.reason-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid #d6e3e8;
  background: #ffffff;
}

.reason-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #0f4362;
  font-size: 1.05rem;
}

.reason-grid p {
  color: #4e616b;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 8px;
  padding: 0 13px;
  background: #27d366;
  color: #04130a;
  font-weight: 1000;
}

.before-after {
  background: #f8fcff;
  color: #092130;
  padding-top: clamp(70px, 10vw, 120px);
  padding-bottom: clamp(70px, 10vw, 120px);
}

.before-after .section-head p:last-child {
  color: #58707d;
  max-width: 680px;
}

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

.comparison-card {
  border: 1px solid #cfe4ee;
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(9, 47, 70, 0.12);
  overflow: hidden;
}

.comparison-media {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 280px;
  overflow: hidden;
  background: #dbeef7;
}

.comparison-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-label,
.after-label {
  position: absolute;
  top: 12px;
  padding: 8px 11px;
  background: rgba(6, 21, 32, 0.78);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.before-label {
  left: 12px;
}

.after-label {
  right: 12px;
  background: rgba(39, 211, 102, 0.9);
  color: #04130a;
}

.comparison-card h3,
.comparison-card p {
  padding: 0 18px;
}

.comparison-card h3 {
  margin-top: 18px;
  color: #092130;
}

.comparison-card p {
  color: #58707d;
  padding-bottom: 20px;
}

.booking {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
  background: #062033;
}

.booking-copy p,
.booking-copy li {
  color: var(--muted);
}

.booking-copy ul {
  padding-left: 18px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(36, 184, 255, 0.22);
  background: #0d2b40;
}

label {
  display: grid;
  gap: 8px;
  color: #dbe5eb;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: #080d12;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
}

input[type="file"] {
  min-height: auto;
  padding: 12px;
  background: #0b2233;
}

input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 12px;
  border: 0;
  background: var(--blue);
  color: #041927;
  font-weight: 1000;
  padding: 0 12px;
}

select,
button {
  cursor: pointer;
}

.booking-form button,
.form-help,
.form-note {
  grid-column: 1 / -1;
}

.file-field {
  grid-column: 1 / -1;
}

.form-help {
  margin: -2px 0 4px;
  color: #bad0dc;
  font-size: 0.92rem;
}

.form-note {
  min-height: 24px;
  color: var(--green);
  margin: 0;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 64px);
  background: #eef5f7;
  color: #092130;
}

.contact-band .eyebrow {
  color: #08659c;
}

.contact-band h2 {
  margin-bottom: 0;
}

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

.contact-grid a,
.contact-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #d7e3e8;
  color: #0f4362;
  font-weight: 900;
}

.contact-grid a::before,
.contact-grid span::before {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 36px;
  background: #e7f8ff;
  border: 1px solid rgba(34, 215, 255, 0.62);
  color: #0a78c6;
  font-size: 1.05rem;
  box-shadow: 0 8px 16px rgba(9, 47, 70, 0.08);
}

.contact-grid a[href^="tel"]::before {
  content: "WA";
  background: #27d366;
  border-color: #27d366;
  color: #04140a;
  font-size: 0.82rem;
  font-weight: 1000;
}

.contact-grid a[href*="instagram"]::before {
  content: "IG";
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
  border-color: rgba(214, 41, 118, 0.42);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 1000;
}

.contact-grid span::before {
  content: "📍";
}

.contact-grid a[href^="mailto"]::before {
  content: "📧";
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  height: 58px;
  padding: 0 16px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #27d366;
  color: #04130a;
  font-weight: 1000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.launcher-mobile {
  display: none;
}

.chat-panel {
  width: min(360px, calc(100vw - 28px));
  margin-bottom: 12px;
  border: 1px solid rgba(0, 200, 255, 0.32);
  background: #061520;
  color: var(--ink);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.44);
  overflow: hidden;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #08243a, #0d4364);
}

.chat-head strong,
.chat-head span {
  display: block;
}

.chat-head span {
  color: var(--muted);
  font-size: 0.82rem;
}

.chat-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
}

.chat-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.chat-bubble {
  margin: 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #dceaf1;
}

.chat-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.chat-options button {
  min-height: 42px;
  border: 1px solid rgba(0, 200, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 900;
}

.chat-input-label {
  color: #dbe5eb;
}

.chat-input-label textarea {
  width: 100%;
  min-height: 84px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #080d12;
  color: var(--ink);
  padding: 12px;
  font: inherit;
}

.chat-send {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #27d366;
  color: #04130a;
  font-weight: 1000;
}

.wa-dot {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.72);
  color: #075f2b;
  font-size: 0.88rem;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 30px clamp(18px, 5vw, 64px);
  background: #061520;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.manager-credit {
  margin-top: 6px;
  color: #d8f4ff;
  font-weight: 800;
}

.yc-credit {
  color: var(--blue);
  font-weight: 900;
  text-align: right;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .about-grid,
  .booking,
  .contact-band,
  .comparison-grid,
  .history-strip,
  .package-grid,
  .process-steps,
  .social-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .service-card.spotlight,
  .service-card.compact-cta {
    grid-column: span 1;
  }

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

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

  .service-card {
    min-height: auto;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small,
  .brand span,
  .nav-action {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    margin-right: 58px;
  }

  .language-toggle {
    padding: 2px;
  }

  .lang-option {
    min-width: 38px;
    min-height: 34px;
    padding: 0 7px;
  }

  .lang-option[data-lang="en"] .lang-code {
    display: none;
  }

  .us-flag {
    width: 25px;
    height: 17px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero-logo {
    width: 100%;
  }

  .hero-logo.original-logo {
    width: min(52vw, 190px);
    max-height: none;
  }

  .hero-content picture {
    width: min(86vw, 336px);
    display: block;
    margin-bottom: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 104px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 24, 38, 0.96) 0%, rgba(4, 24, 38, 0.68) 100%),
      linear-gradient(0deg, rgba(4, 24, 38, 0.94) 0%, rgba(4, 24, 38, 0) 48%);
  }

  #servicios .section-head {
    margin-bottom: 20px;
  }

  #servicios h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.05;
  }

  .quick-panel,
  .contact-grid,
  .detail-list,
  .history-strip,
  .package-grid,
  .proof-strip,
  .process-steps,
  .reason-grid,
  .booking-form,
  .gallery,
  .service-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .hero-evidence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .hero-evidence figure,
  .hero-evidence img {
    min-height: 86px;
  }

  .quick-panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
    margin: 26px 0 78px;
  }

  .service-card {
    min-height: auto;
    padding: 0 15px 15px;
  }

  .service-card.spotlight {
    min-height: auto;
  }

  .service-media {
    height: 132px;
    margin: 0 -15px 0;
  }

  .service-card.spotlight .service-media {
    height: 148px;
  }

  .service-card h3 {
    font-size: 1.08rem;
  }

  .chat-widget {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .chat-launcher {
    min-width: 126px;
    height: 50px;
    gap: 8px;
    padding: 0 12px 0 8px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .launcher-desktop {
    display: none;
  }

  .launcher-mobile {
    display: inline;
  }

  .chat-widget.is-visible .chat-launcher,
  .chat-widget.is-open .chat-launcher {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .chat-panel {
    width: min(340px, calc(100vw - 24px));
  }

  .wa-dot {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  .gallery-tile,
  .gallery-tile.large {
    grid-row: auto;
    min-height: 240px;
  }

  .social-card {
    min-height: 460px;
    padding: 14px;
  }

  .social-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .tiktok-card .tiktok-embed,
  .facebook-fallback {
    min-height: 360px;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .yc-credit {
    text-align: left;
  }
}
