:root {
  --navy: #081323;
  --deep: #0d2038;
  --panel: #182b46;
  --ink: #11162c;
  --text: #33455f;
  --muted: #7b8799;
  --line: #e8edf3;
  --white: #ffffff;
  --soft: #f8fafc;
  --orange: #ff6a3a;
  --orange-2: #ff8758;
  --cyan: #12c8eb;
  --green: #22d366;
  --yellow: #ffcb05;
  --shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.container {
  width: min(100% - 56px, 1565px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 19, 35, 0.96);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-logo-full {
  width: min(185px, 34vw);
  height: auto;
  display: block;
}

.footer-brand .brand-logo-full {
  width: min(210px, 100%);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  font-weight: 600;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-weight: 800;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.phone-link svg {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.btn {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 0 42px;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-small {
  min-height: 60px;
  border-radius: 20px;
  padding: 0 31px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 30px rgba(255, 106, 58, 0.22);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.03);
}

.btn-whatsapp {
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 30px rgba(34, 211, 102, 0.22);
}

.btn-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.dark-band {
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(25, 47, 80, 0.74) 0 2px, transparent 3px) 0 0 / 96px 96px,
    radial-gradient(circle at 74% 38%, rgba(18, 200, 235, 0.14), transparent 32%),
    linear-gradient(135deg, #081323 0%, #0f2744 100%);
}

.hero {
  position: relative;
  padding: 52px 0 70px;
  overflow: hidden;
}

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

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  border-radius: 999px;
  padding: 11px 24px;
  color: var(--orange);
  background: linear-gradient(90deg, rgba(255, 106, 58, 0.11), rgba(18, 200, 235, 0.12));
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  border: 1px solid rgba(255, 106, 58, 0.44);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.eyebrow svg {
  color: var(--orange);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(62px, 6vw, 90px);
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span,
.section-heading h2 span,
.cta h2 span {
  background: linear-gradient(90deg, var(--orange) 0%, #c5b4ad 54%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 span {
  color: var(--cyan);
  background: none;
}

.hero-copy > p {
  max-width: 760px;
  margin: 36px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 25px;
  line-height: 1.58;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.check-list li::before {
  content: "";
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 3px solid var(--cyan);
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 48%, var(--cyan) 50%) 7px 11px / 10px 3px no-repeat,
    linear-gradient(45deg, transparent 45%, var(--cyan) 47%) 11px 7px / 14px 3px no-repeat;
}

.hero-buttons,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 60px;
}

.hero-stats article {
  min-height: 146px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats strong {
  font-size: 45px;
  line-height: 1;
}

.hero-stats span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: min(100%, 750px);
  border-radius: 30px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
  animation: floatCard 5.8s ease-in-out infinite;
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 146px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
}

.service-dot {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
}

.service-dot.orange { color: var(--orange); background: rgba(255, 106, 58, 0.2); }
.service-dot.cyan { color: var(--cyan); background: rgba(18, 200, 235, 0.2); }
.service-dot.green { color: #ffe600; background: rgba(34, 211, 102, 0.22); }

.quick-card strong {
  display: block;
  font-size: 20px;
}

.quick-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 850px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-heading p {
  width: fit-content;
  margin: 0 0 22px;
  border-radius: 999px;
  padding: 11px 22px;
  color: #ff4f2f;
  background: linear-gradient(90deg, rgba(255, 106, 58, 0.1), rgba(18, 200, 235, 0.1));
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading.center p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin: 0;
  color: #17172e;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading small {
  display: block;
  max-width: 870px;
  margin: 25px auto 0;
  color: var(--text);
  font-size: 25px;
  line-height: 1.34;
}

.services,
.gallery,
.contact {
  background: #fff;
}

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

.service-card {
  min-height: 382px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover,
.service-card.active {
  border-color: rgba(255, 106, 58, 0.36);
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(15, 23, 42, 0.13);
}

.soft-icon {
  width: 80px;
  height: 80px;
  display: block;
  margin-bottom: 36px;
  border-radius: 20px;
}

.soft-icon.blue { background: #eaf3ff; }
.soft-icon.cream { background: #fff4e6; }
.soft-icon.lilac { background: #f7efff; }
.soft-icon.yellow { background: #fffbe0; }
.soft-icon.mint { background: #eafff2; }
.soft-icon.sky { background: #eaf0ff; }

.service-card h3 {
  margin: 0 0 18px;
  color: #0b1b32;
  font-size: 30px;
  line-height: 1.2;
}

.service-card p {
  margin: 0 0 32px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.6;
}

.service-card a {
  color: #ff5735;
  font-size: 19px;
  font-weight: 800;
}

.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.98fr 1fr;
  align-items: center;
  gap: 80px;
}

.about-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-copy > p {
  margin: 32px 0 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.52;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 42px;
}

.metric-grid article {
  min-height: 200px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.metric-grid svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: #17172e;
}

.metric-grid strong {
  color: #0b1b32;
  font-size: 38px;
  line-height: 1;
}

.metric-grid span {
  margin-top: 8px;
  color: #26354b;
  font-size: 16px;
}

.about-btn {
  margin-top: 40px;
  min-height: 70px;
}

.commitment {
  background:
    radial-gradient(circle at 0 0, rgba(18, 200, 235, 0.06) 0 28px, transparent 29px) 0 0 / 94px 94px,
    #f9fcff;
}

.commitment-heading {
  max-width: 1000px;
}

.commitment-heading h2 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.commitment-heading h2 span {
  display: inline;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.commitment-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #dfe6ee;
  border-radius: 18px;
  padding: 48px 50px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.commitment-card::after {
  content: "";
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 50px;
  height: 1px;
  background: #dfe6ee;
}

.commitment-number {
  display: block;
  margin-bottom: 30px;
  color: #ffbf00;
  font-size: 31px;
  font-weight: 500;
}

.commitment-quote {
  position: absolute;
  top: 18px;
  right: 42px;
  color: #ffe8df;
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
}

.commitment-card h3 {
  margin: 0 0 38px;
  color: #07162b;
  font-size: 25px;
  line-height: 1.25;
}

.commitment-card p {
  margin: 0;
  color: #10192c;
  font-size: 24px;
  font-style: italic;
  line-height: 1.72;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 82px;
}

.gallery-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  margin: 0;
  border-radius: 13px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

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

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 19, 35, 0.05), rgba(8, 19, 35, 0.68));
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card figcaption {
  position: absolute;
  left: 30px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.testimonials {
  background:
    radial-gradient(circle at 2% 0%, rgba(18, 200, 235, 0.05) 0 22px, transparent 24px) 0 0 / 74px 74px,
    #fbfdff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.testimonial-card {
  position: relative;
  min-height: 398px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px 40px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.09);
}

.testimonial-card::after {
  content: "”";
  position: absolute;
  top: 12px;
  right: 34px;
  color: rgba(255, 106, 58, 0.12);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
}

.stars {
  color: var(--yellow);
  font-size: 26px;
  letter-spacing: 0;
}

.testimonial-card > p {
  min-height: 132px;
  margin: 30px 0 28px;
  color: #17253b;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
  font-size: 20px;
  font-style: italic;
  line-height: 1.65;
}

.person {
  display: flex;
  align-items: center;
  gap: 18px;
}

.person span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #0b1b32;
  border: 3px solid #f28a6f;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff3e6, #dcfaff);
  font-weight: 900;
}

.person strong {
  display: grid;
  color: #07162b;
  font-size: 20px;
}

.person small {
  color: #3c4e67;
  font-size: 16px;
  font-weight: 500;
}

.coverage {
  background: #f4f7fb;
}

.coverage-title {
  margin-bottom: 54px;
  text-align: center;
}

.coverage-title h2 {
  margin: 0;
  color: #ff4f2f;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 76px;
}

.coverage-copy h3 {
  margin: 0;
  color: #15172f;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
}

.coverage-copy h3 span {
  display: block;
  background: linear-gradient(90deg, #e89273, #18bfe2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.coverage-copy p {
  max-width: 650px;
  margin: 32px 0 0;
  color: #243754;
  font-size: 28px;
  line-height: 1.45;
}

.coverage-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.coverage-card {
  min-height: 220px;
  border: 1px solid #dfe6ee;
  border-radius: 30px;
  padding: 42px 38px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.coverage-card h3 {
  margin: 0 0 18px;
  color: #07162b;
  font-size: 27px;
  line-height: 1.2;
}

.coverage-card p {
  margin: 0;
  color: #65738a;
  font-size: 20px;
  line-height: 1.65;
}

.faq {
  background: #fff;
}

.faq-heading {
  max-width: 900px;
}

.faq-heading h2 {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 1225px;
  margin: 70px auto 0;
}

.faq-item {
  border: 1px solid #dbe3ec;
  border-radius: 24px;
  padding: 0 30px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.faq-item summary {
  position: relative;
  padding: 28px 0 26px 30px;
  color: #07162b;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "▶";
  position: absolute;
  top: 31px;
  left: 0;
  font-size: 15px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::before {
  transform: rotate(90deg);
}

.faq-item p {
  margin: 0;
  padding: 0 0 30px;
  color: #65738a;
  font-size: 20px;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 82px;
}

.contact-panel {
  border-radius: 30px;
  padding: 46px 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: var(--shadow);
}

.contact-panel h3 {
  margin: 0 0 24px;
  font-size: 38px;
  line-height: 1.15;
}

.contact-panel > p {
  margin: 0 0 38px;
  max-width: 620px;
  font-size: 20px;
  font-weight: 700;
}

.contact-items {
  display: grid;
  gap: 30px;
}

.contact-items article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-items article > span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
}

.contact-items strong {
  display: block;
  margin-bottom: 4px;
  font-size: 19px;
}

.contact-items p {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 42px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 10px;
  color: #526176;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid #dfe5ed;
  border-radius: 22px;
  color: #182339;
  background: #fff;
  font: inherit;
  font-size: 19px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input {
  height: 62px;
  padding: 0 20px;
}

textarea {
  min-height: 180px;
  padding: 18px 20px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 58, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: #8d95a5;
}

.contact-form .btn {
  width: 100%;
  border-radius: 999px;
  margin-top: 8px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
  text-align: center;
}

.whatsapp-form-info {
  margin: -12px 0 0;
  color: #65738a;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.urgent-box {
  width: min(100%, 690px);
  margin-top: 40px;
  border-radius: 30px;
  padding: 42px 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), #079fc3);
  box-shadow: var(--shadow);
}

.urgent-box h3 {
  margin: 0 0 18px;
  font-size: 30px;
}

.urgent-box p {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 700;
}

.urgent-box a {
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border-radius: 999px;
  color: var(--cyan);
  background: #fff;
  font-size: 20px;
  font-weight: 800;
}

.cta {
  padding: 112px 0 106px;
}

.cta-inner {
  text-align: center;
}

.cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 1.08;
  font-weight: 900;
}

.cta p {
  max-width: 1060px;
  margin: 22px auto 62px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 25px;
}

.cta-actions {
  justify-content: center;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 62px auto 0;
}

.cta-stats article {
  display: grid;
  gap: 8px;
}

.cta-stats strong {
  color: #fff;
  font-size: 44px;
  line-height: 1;
}

.cta-stats span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.coverage-map {
  padding: 76px 0;
  background: #f5f8fc;
}

.coverage-map-cards {
  margin-top: 34px;
}

.coverage-map-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  margin-top: 42px;
}

.service-hero {
  padding: 70px 0 78px;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 70px;
  align-items: center;
}

.service-hero h1 {
  margin: 26px 0 24px;
  color: #fff;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

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

.service-hero p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 23px;
}

.service-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 36px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.service-hero-image {
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.service-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-hero-panel h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.service-hero-panel ul,
.service-content-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-hero-panel li,
.service-content-card li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.service-hero-panel li::before,
.service-content-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--cyan);
  border-radius: 999px;
}

.service-detail {
  padding: 90px 0;
  background: #fff;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-content-card {
  border: 1px solid #dfe6ee;
  border-radius: 28px;
  padding: 38px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.service-card-image {
  max-width: 760px;
  margin: 0 auto 26px;
  overflow: hidden;
  border-radius: 22px;
  background: #eef4fb;
}

.service-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-content-card h2,
.service-content-card h3 {
  margin: 0 0 18px;
  color: #07162b;
  font-size: 30px;
  line-height: 1.2;
}

.service-content-card p {
  margin: 0 0 18px;
  color: #5f6f86;
  font-size: 18px;
  line-height: 1.75;
}

.service-content-card li {
  color: #31435d;
}

.service-steps {
  counter-reset: step;
}

.service-step {
  position: relative;
  padding-left: 74px;
}

.service-step + .service-step {
  margin-top: 24px;
}

.service-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

.service-related {
  padding: 82px 0;
  background: #f5f8fc;
}

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

.service-related-card {
  border: 1px solid #dfe6ee;
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.service-related-card h3 {
  margin: 0 0 12px;
  color: #07162b;
}

.service-related-card p {
  margin: 0 0 20px;
  color: #65738a;
}

.service-related-card a {
  color: var(--orange);
  font-weight: 900;
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid #e0e7ef;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.district-panel {
  border: 1px solid #e0e7ef;
  border-radius: 28px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.district-panel h3 {
  margin: 0 0 12px;
  color: #07162b;
  font-size: 30px;
}

.district-panel p {
  margin: 0 0 24px;
  color: #65738a;
  font-size: 17px;
  line-height: 1.55;
}

.district-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.district-list span {
  border: 1px solid #dfe7f0;
  border-radius: 999px;
  padding: 8px 13px;
  color: #17253b;
  background: #f8fbff;
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  padding: 76px 0 42px;
  color: #bfd0e5;
  background: linear-gradient(180deg, #081323, #020407);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.25fr;
  gap: 76px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid p,
.footer-grid a {
  color: #bfd0e5;
  font-size: 19px;
}

.footer-grid h3 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 23px;
}

.footer-grid a {
  display: block;
  margin-bottom: 14px;
}

.footer-grid a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.socials a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.footer-contact {
  display: grid;
  gap: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
}

.footer-bottom div {
  display: flex;
  gap: 34px;
}

.legal-page {
  min-height: 100vh;
  background: #f6f8fb;
}

.legal-header {
  padding: 22px 0;
  background: var(--navy);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-back {
  color: #fff;
  font-weight: 800;
}

.legal-content {
  width: min(100% - 40px, 900px);
  margin: 58px auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 52px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-content h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
}

.legal-updated {
  margin: 0 0 38px;
  color: var(--muted);
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: #0b1b32;
  font-size: 22px;
}

.legal-content p,
.legal-content li {
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 24px;
}

@media (max-width: 720px) {
  .legal-content {
    margin: 30px auto;
    border-radius: 18px;
    padding: 28px 22px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 34px;
  bottom: 28px;
  z-index: 60;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(34, 211, 102, 0.35), inset 0 0 0 5px rgba(255, 255, 255, 0.13);
  animation: pulse 2.2s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  width: max-content;
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  background: #17253b;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.22);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  border: 6px solid transparent;
  border-left-color: #17253b;
  transform: translateY(-50%);
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus-visible .whatsapp-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
}

.telegram-float {
  position: fixed;
  right: 34px;
  bottom: 122px;
  z-index: 60;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #26a5e4;
  box-shadow: 0 14px 28px rgba(38, 165, 228, 0.35), inset 0 0 0 5px rgba(255, 255, 255, 0.13);
  animation: pulse 2.2s ease-in-out infinite;
}

.telegram-float img {
  width: 40px;
  height: 40px;
}

.telegram-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  width: max-content;
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  background: #17253b;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.22);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.telegram-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  border: 6px solid transparent;
  border-left-color: #17253b;
  transform: translateY(-50%);
}

.telegram-float:hover .telegram-tooltip,
.telegram-float:focus-visible .telegram-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
}

.floating-socials {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 59;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}

.floating-socials a {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #e1e7ef;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-socials a:hover,
.floating-socials a:focus-visible {
  transform: translateX(-4px) scale(1.06);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

.floating-socials img,
.floating-socials svg {
  width: 23px;
  height: 23px;
}

.floating-socials svg {
  color: #ff6a3a;
}

.floating-socials .linkedin-icon {
  color: #0a66c2;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.floating-socials span {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  width: max-content;
  border-radius: 8px;
  padding: 7px 10px;
  color: #fff;
  background: #17253b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-socials a:hover span,
.floating-socials a:focus-visible span {
  opacity: 1;
  transform: translate(0, -50%);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@media (max-width: 1280px) {
  .nav-links {
    gap: 24px;
    font-size: 17px;
  }

  .phone-link {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(50px, 5.4vw, 72px);
  }
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 100px 0 auto 0;
    display: grid;
    justify-items: center;
    gap: 0;
    padding: 20px 28px 30px;
    background: rgba(8, 19, 35, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.25s ease;
  }

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

  .nav-links a {
    width: 100%;
    padding: 16px;
    text-align: center;
  }

  .hero-grid,
  .about-grid,
  .coverage-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery-grid,
  .testimonial-grid,
  .commitment-grid,
  .coverage-cards,
  .quick-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    width: min(100%, 680px);
  }
}

/* Escala compacta para tablet */
@media (min-width: 721px) and (max-width: 1020px) {
  .brand-logo-full {
    width: min(170px, 32vw);
  }

  .floating-socials {
    right: 14px;
    gap: 7px;
  }

  .floating-socials a {
    width: 40px;
    height: 40px;
  }

  .floating-socials img,
  .floating-socials svg {
    width: 20px;
    height: 20px;
  }

  .container {
    width: min(100% - 48px, 900px);
  }

  .nav {
    min-height: 76px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-links {
    inset: 76px 0 auto 0;
    padding: 14px 24px 22px;
  }

  .nav-links a {
    padding: 13px;
    font-size: 15px;
  }

  .nav-actions .btn {
    min-height: 46px;
    padding: 0 22px;
    font-size: 14px;
  }

  .section,
  .hero,
  .cta {
    padding: 44px 0 58px;
  }

  .hero-grid,
  .about-grid,
  .coverage-grid,
  .contact-grid {
    gap: 42px;
  }

  .hero-visual img {
    width: min(100%, 540px);
    border-radius: 22px;
  }

  .eyebrow {
    margin-bottom: 22px;
    padding: 8px 17px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.1;
  }

  .hero-copy > p {
    margin: 25px 0 22px;
    font-size: 17px;
  }

  .check-list {
    gap: 11px;
    margin-bottom: 30px;
    font-size: 15px;
  }

  .btn {
    min-height: 54px;
    padding: 0 25px;
    font-size: 15px;
  }

  .hero-stats,
  .metric-grid,
  .cta-stats {
    gap: 20px;
    margin-top: 36px;
  }

  .hero-stats article,
  .metric-grid article {
    min-height: 125px;
  }

  .quick-services,
  .service-grid,
  .gallery-grid,
  .testimonial-grid,
  .commitment-grid {
    gap: 24px;
    margin-top: 46px;
  }

  .quick-card {
    min-height: 105px;
    gap: 16px;
    padding: 20px;
  }

  .service-dot {
    width: 52px;
    height: 52px;
  }

  .section-heading {
    max-width: 680px;
  }

  .section-heading p {
    margin-bottom: 16px;
    padding: 8px 16px;
    font-size: 12px;
  }

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

  .section-heading small {
    margin-top: 17px;
    font-size: 17px;
  }

  .service-card,
  .testimonial-card,
  .contact-form,
  .contact-panel {
    padding: 26px;
  }

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

  .service-card h3 {
    font-size: 21px;
  }

  .service-card p {
    font-size: 15px;
  }

  .about-copy > p {
    margin-top: 22px;
    font-size: 16px;
  }

  .commitment-card {
    min-height: 310px;
    padding: 30px;
  }

  .commitment-card p {
    font-size: 16px;
  }

  .gallery-card {
    min-height: 330px;
  }

  .coverage-copy {
    text-align: center;
  }

  .coverage-copy h3 {
    font-size: 42px;
  }

  .coverage-copy p {
    max-width: 620px;
    margin: 20px auto 0;
    font-size: 17px;
  }

  .coverage-card {
    min-height: 155px;
    border-radius: 20px;
    padding: 25px;
  }

  .coverage-card h3 {
    font-size: 19px;
  }

  .coverage-card p {
    font-size: 14px;
  }

  .faq-list {
    max-width: 850px;
    margin-top: 44px;
  }

  .faq-item summary {
    font-size: 17px;
  }

  .faq-item p {
    font-size: 15px;
  }

  .contact-grid {
    margin-top: 48px;
  }

  .contact-panel h3 {
    font-size: 28px;
  }

  .contact-panel > p,
  .contact-items p {
    font-size: 15px;
  }

  input,
  textarea {
    font-size: 15px;
  }

  .cta h2 {
    font-size: 44px;
  }

  .cta p {
    margin-bottom: 38px;
    font-size: 17px;
  }

  .coverage-map {
    padding: 54px 0;
  }

  .coverage-map-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 44px;
  }

  .map-card,
  .map-card iframe {
    min-height: 390px;
  }

  .district-panel {
    padding: 28px;
  }

  .site-footer {
    padding: 52px 0 32px;
  }

  .footer-grid {
    gap: 36px;
    padding-bottom: 38px;
  }

  .footer-grid p,
  .footer-grid a {
    font-size: 15px;
  }
}

@media (max-width: 720px) {
  .brand-logo-full {
    width: min(150px, 54vw);
  }

  .floating-socials {
    right: 10px;
    gap: 5px;
  }

  .floating-socials a {
    width: 34px;
    height: 34px;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.15);
  }

  .floating-socials img,
  .floating-socials svg {
    width: 17px;
    height: 17px;
  }

  .floating-socials span {
    display: none;
  }

  .container {
    width: min(100% - 32px, 1565px);
  }

  .nav {
    min-height: 68px;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    top: 68px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .section,
  .hero,
  .cta {
    padding: 38px 0 52px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual img {
    width: min(100%, 420px);
    border-radius: 20px;
  }

  .eyebrow {
    margin-bottom: 20px;
    padding: 8px 15px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 1.08;
  }

  .hero-copy > p,
  .section-heading small,
  .about-copy > p,
  .coverage-copy p,
  .cta p {
    font-size: 15px;
  }

  .hero-copy > p {
    margin: 23px 0 20px;
  }

  .check-list {
    gap: 10px;
    margin-bottom: 28px;
    font-size: 14px;
  }

  .check-list li {
    gap: 10px;
  }

  .check-list li::before {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }

  .section-heading p {
    margin-bottom: 15px;
    padding: 8px 15px;
    font-size: 12px;
  }

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

  .section-heading small {
    margin-top: 16px;
  }

  .hero-stats,
  .metric-grid,
  .cta-stats,
  .service-grid,
  .gallery-grid,
  .testimonial-grid,
  .commitment-grid,
  .coverage-cards,
  .quick-services,
  .form-row {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    padding: 48px 0;
  }

  .coverage-map-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 34px;
  }

  .map-card,
  .map-card iframe {
    min-height: 320px;
  }

  .map-card,
  .district-panel {
    border-radius: 20px;
  }

  .district-panel {
    padding: 23px;
  }

  .district-panel h3 {
    font-size: 22px;
  }

  .district-panel p {
    font-size: 14px;
  }

  .district-list {
    gap: 8px;
  }

  .district-list span {
    padding: 7px 11px;
    font-size: 12px;
  }

  .coverage-title {
    margin-bottom: 30px;
  }

  .coverage-title h2 {
    font-size: 16px;
  }

  .coverage-grid {
    gap: 32px;
  }

  .coverage-copy {
    text-align: center;
  }

  .coverage-copy h3 {
    font-size: 34px;
  }

  .coverage-copy p {
    margin-top: 18px;
  }

  .coverage-card {
    min-height: auto;
    border-radius: 20px;
    padding: 24px 22px;
  }

  .coverage-card h3 {
    margin-bottom: 11px;
    font-size: 19px;
  }

  .coverage-card p {
    font-size: 14px;
  }

  .faq-list {
    gap: 12px;
    margin-top: 36px;
  }

  .faq-item {
    border-radius: 18px;
    padding: 0 20px;
  }

  .faq-item summary {
    padding: 19px 0 17px 23px;
    font-size: 16px;
  }

  .faq-item summary::before {
    top: 22px;
    font-size: 11px;
  }

  .faq-item p {
    padding-bottom: 20px;
    font-size: 14px;
  }

  .commitment-grid {
    margin-top: 38px;
  }

  .commitment-card {
    min-height: 285px;
    padding: 27px 23px;
  }

  .commitment-card::after {
    left: 23px;
    right: 23px;
    bottom: 27px;
  }

  .commitment-number {
    margin-bottom: 19px;
    font-size: 23px;
  }

  .commitment-quote {
    right: 22px;
    font-size: 58px;
  }

  .commitment-card h3 {
    margin-bottom: 22px;
    font-size: 19px;
  }

  .commitment-card p {
    font-size: 16px;
  }

  .hero-buttons,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
    font-size: 15px;
  }

  .service-card,
  .testimonial-card,
  .contact-form,
  .contact-panel {
    padding: 23px;
  }

  .service-grid,
  .gallery-grid,
  .testimonial-grid,
  .quick-services {
    gap: 22px;
    margin-top: 40px;
  }

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

  .service-card h3 {
    font-size: 21px;
  }

  .service-card p {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .service-card a {
    font-size: 14px;
  }

  .soft-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
  }

  .quick-card {
    min-height: 100px;
    gap: 16px;
    padding: 20px;
  }

  .service-dot {
    width: 52px;
    height: 52px;
  }

  .quick-card strong {
    font-size: 16px;
  }

  .quick-card p {
    font-size: 13px;
  }

  .hero-stats,
  .metric-grid,
  .cta-stats {
    gap: 18px;
    margin-top: 32px;
  }

  .hero-stats article,
  .metric-grid article {
    min-height: 120px;
  }

  .hero-stats strong,
  .cta-stats strong {
    font-size: 31px;
  }

  .metric-grid strong {
    font-size: 28px;
  }

  .about-grid,
  .contact-grid {
    gap: 34px;
  }

  .about-copy > p {
    margin-top: 20px;
  }

  .about-btn {
    min-height: 52px;
    margin-top: 26px;
  }

  .gallery-card {
    min-height: 300px;
  }

  .gallery-card figcaption {
    left: 20px;
    bottom: 17px;
    font-size: 20px;
  }

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

  .testimonial-card > p {
    min-height: auto;
    margin: 21px 0;
    padding-bottom: 21px;
    font-size: 15px;
  }

  .person span {
    width: 54px;
    height: 54px;
  }

  .contact-grid {
    margin-top: 42px;
  }

  .contact-panel,
  .contact-form {
    border-radius: 22px;
  }

  .contact-panel h3 {
    font-size: 27px;
  }

  .contact-panel > p,
  .contact-items p {
    font-size: 15px;
  }

  .contact-items {
    gap: 22px;
  }

  .contact-items article > span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .contact-form {
    gap: 20px;
  }

  input {
    height: 52px;
  }

  input,
  textarea {
    border-radius: 16px;
    font-size: 15px;
  }

  textarea {
    min-height: 130px;
  }

  .urgent-box {
    margin-top: 28px;
    border-radius: 22px;
    padding: 25px 23px;
  }

  .urgent-box h3 {
    font-size: 23px;
  }

  .urgent-box p,
  .urgent-box a {
    font-size: 15px;
  }

  .urgent-box a {
    min-height: 52px;
  }

  .cta h2 {
    font-size: 34px;
  }

  .cta p {
    margin: 18px auto 32px;
  }

  .site-footer {
    padding: 50px 0 30px;
  }

  .footer-grid {
    gap: 34px;
    padding-bottom: 38px;
  }

  .footer-grid p,
  .footer-grid a {
    font-size: 15px;
  }

  .footer-grid h3 {
    margin-bottom: 19px;
    font-size: 19px;
  }

  .footer-bottom,
  .footer-bottom div {
    flex-direction: column;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }

  .telegram-float {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 82px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .telegram-float img {
    width: 28px;
    height: 28px;
  }
}

/* Escala compacta para escritorio */
@media (min-width: 1021px) {
  .brand-logo-full {
    width: min(190px, 24vw);
  }

  .footer-brand .brand-logo-full {
    width: 205px;
  }

  .container {
    width: min(100% - 64px, 1320px);
  }

  .nav {
    min-height: 82px;
  }

  .nav-links {
    gap: 32px;
    font-size: 16px;
  }

  .nav-actions {
    gap: 16px;
    font-size: 15px;
  }

  .btn {
    min-height: 58px;
    border-radius: 15px;
    padding: 0 32px;
    font-size: 16px;
  }

  .btn-small {
    min-height: 50px;
    border-radius: 16px;
    padding: 0 25px;
  }

  .hero {
    padding: 42px 0 56px;
  }

  .hero-grid {
    gap: 52px;
  }

  .eyebrow {
    margin-bottom: 24px;
    padding: 9px 19px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(52px, 5vw, 68px);
    line-height: 1.16;
  }

  .hero-copy > p {
    margin: 27px 0 24px;
    font-size: 20px;
  }

  .check-list {
    gap: 11px;
    margin-bottom: 34px;
    font-size: 16px;
  }

  .check-list li {
    gap: 12px;
  }

  .check-list li::before {
    width: 22px;
    height: 22px;
    border-width: 2px;
  }

  .hero-visual img {
    width: min(100%, 590px);
    border-radius: 24px;
  }

  .hero-stats {
    gap: 24px;
    margin-top: 42px;
  }

  .hero-stats article {
    min-height: 112px;
  }

  .hero-stats strong {
    font-size: 34px;
  }

  .hero-stats span {
    font-size: 14px;
  }

  .quick-services {
    gap: 22px;
    margin-top: 50px;
  }

  .quick-card {
    min-height: 112px;
    gap: 18px;
    padding: 22px;
  }

  .service-dot {
    width: 55px;
    height: 55px;
  }

  .quick-card strong {
    font-size: 17px;
  }

  .quick-card p {
    font-size: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    max-width: 730px;
  }

  .section-heading p {
    margin-bottom: 18px;
    padding: 9px 18px;
    font-size: 13px;
  }

  .section-heading h2 {
    font-size: clamp(36px, 3.5vw, 48px);
  }

  .section-heading small {
    margin-top: 19px;
    font-size: 19px;
  }

  .service-grid,
  .gallery-grid,
  .testimonial-grid,
  .commitment-grid {
    gap: 28px;
    margin-top: 58px;
  }

  .service-card {
    min-height: 330px;
    padding: 30px;
  }

  .service-card h3 {
    margin-bottom: 14px;
    font-size: 23px;
  }

  .service-card p {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .service-card a {
    font-size: 15px;
  }

  .soft-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 26px;
  }

  .about-grid {
    gap: 58px;
  }

  .about-image img {
    max-height: 620px;
    object-fit: cover;
  }

  .about-copy > p {
    margin-top: 24px;
    font-size: 18px;
  }

  .metric-grid {
    gap: 22px;
    margin-top: 32px;
  }

  .metric-grid article {
    min-height: 150px;
  }

  .metric-grid svg {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }

  .metric-grid strong {
    font-size: 30px;
  }

  .metric-grid span {
    font-size: 14px;
  }

  .about-btn {
    min-height: 58px;
    margin-top: 30px;
  }

  .commitment-card {
    min-height: 330px;
    padding: 36px 38px;
  }

  .commitment-card::after {
    left: 38px;
    right: 38px;
    bottom: 38px;
  }

  .commitment-number {
    margin-bottom: 22px;
    font-size: 25px;
  }

  .commitment-quote {
    right: 32px;
    font-size: 65px;
  }

  .commitment-card h3 {
    margin-bottom: 26px;
    font-size: 20px;
  }

  .commitment-card p {
    font-size: 18px;
  }

  .gallery-card {
    min-height: 390px;
  }

  .gallery-card figcaption {
    left: 24px;
    bottom: 20px;
    font-size: 21px;
  }

  .testimonial-card {
    min-height: 320px;
    padding: 30px;
  }

  .stars {
    font-size: 21px;
  }

  .testimonial-card > p {
    min-height: 108px;
    margin: 22px 0;
    padding-bottom: 22px;
    font-size: 16px;
  }

  .person span {
    width: 55px;
    height: 55px;
  }

  .person strong {
    font-size: 16px;
  }

  .person small {
    font-size: 13px;
  }

  .coverage-title {
    margin-bottom: 40px;
  }

  .coverage-title h2 {
    font-size: 17px;
  }

  .coverage-grid {
    gap: 55px;
  }

  .coverage-copy h3 {
    font-size: clamp(40px, 4vw, 56px);
  }

  .coverage-copy p {
    margin-top: 24px;
    font-size: 21px;
  }

  .coverage-cards {
    gap: 20px;
  }

  .coverage-card {
    min-height: 170px;
    border-radius: 22px;
    padding: 30px;
  }

  .coverage-card h3 {
    margin-bottom: 13px;
    font-size: 21px;
  }

  .coverage-card p {
    font-size: 16px;
  }

  .faq-list {
    max-width: 1050px;
    gap: 14px;
    margin-top: 52px;
  }

  .faq-item {
    border-radius: 18px;
    padding: 0 24px;
  }

  .faq-item summary {
    padding: 22px 0 20px 25px;
    font-size: 18px;
  }

  .faq-item summary::before {
    top: 25px;
    font-size: 12px;
  }

  .faq-item p {
    padding-bottom: 23px;
    font-size: 16px;
  }

  .contact-grid {
    gap: 44px;
    margin-top: 58px;
  }

  .contact-panel,
  .contact-form {
    border-radius: 24px;
    padding: 34px;
  }

  .contact-panel h3 {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .contact-panel > p {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .contact-items {
    gap: 22px;
  }

  .contact-items article > span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .contact-items strong,
  .contact-items p {
    font-size: 15px;
  }

  .contact-form {
    gap: 22px;
  }

  .form-row {
    gap: 22px;
  }

  label {
    font-size: 12px;
  }

  input,
  textarea {
    border-radius: 17px;
    font-size: 15px;
  }

  input {
    height: 52px;
  }

  textarea {
    min-height: 140px;
  }

  .urgent-box {
    width: min(100%, 570px);
    border-radius: 24px;
    padding: 32px;
  }

  .urgent-box h3 {
    font-size: 24px;
  }

  .urgent-box p,
  .urgent-box a {
    font-size: 16px;
  }

  .urgent-box a {
    min-height: 56px;
  }

  .cta {
    padding: 82px 0 78px;
  }

  .cta h2 {
    font-size: clamp(40px, 4vw, 58px);
  }

  .cta p {
    max-width: 880px;
    margin: 18px auto 42px;
    font-size: 19px;
  }

  .cta-stats {
    gap: 48px;
    max-width: 850px;
    margin-top: 46px;
  }

  .cta-stats strong {
    font-size: 34px;
  }

  .cta-stats span {
    font-size: 15px;
  }

  .coverage-map {
    padding: 58px 0;
  }

  .coverage-map-grid {
    gap: 28px;
    margin-top: 48px;
  }

  .map-card,
  .map-card iframe {
    min-height: 440px;
  }

  .district-panel {
    padding: 30px;
  }

  .site-footer {
    padding: 58px 0 32px;
  }

  .footer-grid {
    gap: 52px;
    padding-bottom: 44px;
  }

  .footer-grid p,
  .footer-grid a {
    font-size: 15px;
  }

  .footer-grid h3 {
    margin-bottom: 21px;
    font-size: 18px;
  }

  .socials a {
    width: 42px;
    height: 42px;
  }

  .footer-bottom {
    padding-top: 30px;
    font-size: 14px;
  }

  .whatsapp-float {
    width: 64px;
    height: 64px;
  }

  .telegram-float {
    width: 64px;
    height: 64px;
    bottom: 104px;
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }

  .telegram-float img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 1020px) {
  .service-hero-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding: 56px 0 58px;
  }

  .service-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .service-hero {
    padding: 42px 0 44px;
  }

  .service-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .service-hero p {
    font-size: 18px;
  }

  .service-hero-panel,
  .service-content-card,
  .service-related-card {
    border-radius: 22px;
    padding: 24px;
  }

  .service-card-image {
    max-width: none;
    margin-bottom: 22px;
    border-radius: 18px;
  }

  .service-detail,
  .service-related {
    padding: 54px 0;
  }
}
