:root {
  --navy: #082b40;
  --navy-2: #0d3d57;
  --navy-3: #061f30;
  --sea: #0899aa;
  --sea-light: #dff5f6;
  --orange: #ee6a1a;
  --orange-dark: #d9560b;
  --white: #ffffff;
  --off-white: #f7fafb;
  --mist: #e2ecef;
  --text: #122b3a;
  --muted: #59707d;
  --success: #14875a;
  --radius: 16px;
  --radius-small: 10px;
  --shadow: 0 18px 50px rgba(7, 36, 53, 0.1);
  --shadow-strong: 0 24px 70px rgba(4, 24, 37, 0.24);
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Playfair Display", Georgia, serif;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

body.menu-open .mobile-sticky-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

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

a {
  color: inherit;
}

button {
  border: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 20000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--sea));
}

/* Cabecera */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(8, 43, 64, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease;
}

.navbar.scrolled {
  box-shadow: 0 8px 28px rgba(5, 31, 47, 0.12);
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
}

.navbar .brand {
  z-index: 1002;
}

.brand-logo {
  width: 212px;
  height: auto;
  display: block;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(6, 31, 48, 0.18);
}

.brand-mark > i {
  margin-top: -5px;
  font-size: 1.28rem;
}

.brand-mark > span {
  position: absolute;
  right: 7px;
  bottom: 8px;
  left: 7px;
  height: 7px;
  border-top: 3px solid #5bd2dc;
  border-bottom: 3px solid rgba(91, 210, 220, 0.7);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 7px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.brand-name strong {
  color: var(--sea);
}

.menu-button {
  position: absolute;
  left: 0;
  z-index: 1003;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--mist);
  border-radius: 10px;
  font-size: 1.35rem;
  cursor: pointer;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 1001;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: 112px 32px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow-y: auto;
  color: var(--navy);
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-100%);
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    visibility 0.35s;
}

.nav-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-menu a {
  font-size: 1.18rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-phone,
.nav-email,
.nav-cta {
  min-width: 230px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 9px;
}

.nav-phone {
  color: var(--orange);
  border: 2px solid var(--orange);
}

.nav-email {
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--mist);
}

.nav-cta {
  color: var(--white);
  background: var(--orange);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-3);
}

.hero-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 680px;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 26, 40, 0.48), rgba(4, 26, 40, 0.42) 34%, rgba(4, 26, 40, 0.88) 54%, var(--navy-3) 72%),
    linear-gradient(90deg, rgba(4, 26, 40, 0.22), transparent);
}

.hero-layout {
  position: relative;
  z-index: 1;
  padding-block: 66px 72px;
  display: grid;
  gap: 42px;
}

.hero-copy {
  color: var(--white);
  text-align: center;
}

.hero-badge {
  margin-bottom: 24px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #b9f1f3;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}

.hero-copy h1 {
  max-width: 750px;
  margin: 0 auto 22px;
  font-family: var(--display);
  font-size: clamp(2.35rem, 10.5vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.hero-copy h1 em {
  color: #72dbe2;
  font-style: normal;
}

.hero-copy > p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.button {
  min-height: 58px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(238, 106, 26, 0.3);
}

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

.button-whatsapp {
  color: var(--white);
  background: #25d366;
}

.hero-trust {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  width: 21px;
  height: 21px;
  display: grid;
  flex: 0 0 21px;
  place-items: center;
  color: #72dbe2;
  background: rgba(114, 219, 226, 0.12);
  border: 1px solid rgba(114, 219, 226, 0.38);
  border-radius: 50%;
  font-size: 0.62rem;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.quote-card {
  width: min(100%, 560px);
  margin-inline: auto;
  padding: 28px 22px;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.quote-header {
  margin-bottom: 22px;
  text-align: center;
}

.quote-header > span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quote-header h2 {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1.2;
}

.quote-header p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-form {
  display: grid;
  gap: 17px;
}

.botcheck {
  position: absolute;
  left: -9999px;
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-group label {
  margin-bottom: 8px;
  display: block;
  color: var(--text);
  font-size: 0.91rem;
  font-weight: 800;
}

.form-group label b {
  color: var(--orange);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--text);
  background: #f8f8f7;
  border: 1px solid #dfe3e3;
  border-radius: 11px;
  font-size: 1rem;
  outline: 0;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input {
  min-height: 54px;
}

.form-group textarea {
  min-height: 118px;
  line-height: 1.55;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #737b80;
  opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
  background: var(--white);
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(8, 153, 170, 0.13);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #d95d4c;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: var(--sea);
}

.required-star {
  margin-left: 2px;
  color: var(--orange);
  font-weight: 900;
}

.link-button {
  padding: 0;
  color: var(--sea);
  background: transparent;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.submit-button {
  min-height: 56px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.submit-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-note {
  color: var(--muted);
  font-size: 0.73rem;
  text-align: center;
}

.form-status {
  display: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.form-status.success {
  display: block;
  color: #0a633e;
  background: #e3f8ef;
}

.form-status.error {
  display: block;
  color: #9b2f23;
  background: #fff0ed;
}

.form-status a {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #075e54;
  font-weight: 800;
  text-decoration: underline;
}

/* Confianza */
.trust-bar {
  padding-block: 34px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8f9 100%);
  border-block: 1px solid var(--mist);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.trust-grid article {
  --trust-accent: var(--sea);
  --trust-soft: #eefafb;
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 19px 17px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, var(--white) 55%, var(--trust-soft) 100%);
  border: 1px solid color-mix(in srgb, var(--trust-accent) 22%, var(--mist));
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(5, 35, 52, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-grid article::after {
  position: absolute;
  top: -24px;
  right: -22px;
  width: 78px;
  height: 78px;
  background: var(--trust-soft);
  border: 1px solid color-mix(in srgb, var(--trust-accent) 14%, transparent);
  border-radius: 50%;
  content: "";
}

.trust-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 34px rgba(5, 35, 52, 0.11);
}

.trust-google {
  --trust-accent: #d9970d;
  --trust-soft: #fff7df;
}

.trust-guarantee {
  --trust-accent: #0799aa;
  --trust-soft: #e9f8fa;
}

.trust-visit {
  --trust-accent: #ee6a1a;
  --trust-soft: #fff0e7;
}

.trust-grid article > i {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--trust-accent);
  border-radius: 14px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--trust-accent) 28%, transparent);
  font-size: 1.08rem;
}

.trust-grid article > div {
  position: relative;
  z-index: 1;
}

.trust-grid small,
.trust-grid strong,
.trust-grid span {
  display: block;
  line-height: 1.35;
}

.trust-grid small {
  margin-bottom: 3px;
  color: var(--trust-accent);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.trust-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

/* Secciones */
.section {
  padding-block: 76px;
}

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

.section-heading > span,
.mini-label {
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.process-intro h2,
.coverage h2,
.final-cta h2 {
  margin-top: 8px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2.15rem, 9vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-heading p,
.process-intro > p,
.coverage p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Servicios */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  align-items: start;
  gap: 24px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-image {
  position: relative;
  height: 235px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image > span {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 11px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-content {
  position: relative;
  padding: 31px 24px 27px;
}

.service-content > i {
  position: absolute;
  top: -27px;
  right: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--sea);
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(6, 36, 53, 0.12);
  font-size: 1.35rem;
}

.service-content h3 {
  padding-right: 45px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.2;
}

.service-content p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-content ul {
  margin-top: 17px;
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.87rem;
  list-style: none;
}

.service-content li i {
  margin-right: 8px;
  color: var(--sea);
  font-size: 0.75rem;
}

/* Soluciones por tipo de inmueble */
.segments {
  background: var(--off-white);
}

.segments-grid {
  display: grid;
  align-items: start;
  gap: 24px;
}

.segment-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.segment-card > img {
  width: 100%;
  height: 225px;
  object-fit: cover;
}

.segment-content {
  position: relative;
  padding: 29px 23px 27px;
}

.segment-number {
  position: absolute;
  top: -21px;
  right: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--sea);
  border: 4px solid var(--white);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.segment-card h3 {
  padding-right: 35px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.47rem;
  line-height: 1.22;
}

.segment-card ul {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.5;
  list-style: none;
}

.segment-card li {
  position: relative;
  padding-left: 20px;
}

.segment-card li::before {
  content: "\f054";
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--sea);
  font-family: "Font Awesome 6 Free";
  font-size: 0.7rem;
  font-weight: 900;
}

/* Proyectos */
.projects {
  color: var(--white);
  background: var(--navy-3);
}

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

.section-heading-light p {
  color: rgba(255, 255, 255, 0.68);
}

.projects-grid {
  display: grid;
  gap: 22px;
}

.project-card {
  overflow: hidden;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.project-card > img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.project-card > div {
  padding: 22px 22px 24px;
}

.project-card span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-top: 5px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.2;
}

.project-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.projects-cta {
  margin-top: 28px;
  padding: 25px 23px;
  display: grid;
  gap: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.projects-cta strong,
.projects-cta span {
  display: block;
}

.projects-cta strong {
  font-family: var(--display);
  font-size: 1.35rem;
}

.projects-cta span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

/* Proceso */
.process {
  background:
    radial-gradient(circle at 8% 15%, rgba(8, 153, 170, 0.08), transparent 26%),
    var(--off-white);
}

.process-layout {
  display: grid;
  gap: 36px;
}

.process-intro h2 {
  margin-top: 9px;
}

.text-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}

.process-steps {
  display: grid;
  gap: 14px;
  list-style: none;
}

.process-steps li {
  position: relative;
  overflow: hidden;
  padding: 22px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 15px;
  box-shadow: 0 8px 26px rgba(5, 35, 52, 0.05);
}

.process-steps li::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--sea), #72dbe2);
  content: "";
}

.process-steps > li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(5, 35, 52, 0.16);
  font-weight: 900;
}

.process-steps h3 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.3;
}

.process-steps p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Opiniones */
.reviews {
  background: var(--white);
}

.reviews-layout {
  display: grid;
  gap: 28px;
}

.reviews-grid {
  display: grid;
  gap: 18px;
}

.reviews-summary {
  padding: 31px 24px;
  text-align: center;
  background: var(--off-white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
}

.reviews-summary h2 {
  margin-top: 8px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.14;
}

.reviews-summary > strong {
  margin-top: 20px;
  display: block;
  color: #111;
  font-size: 1.4rem;
}

.review-stars,
.review-rating {
  color: #f9b000;
  letter-spacing: 0.05em;
}

.review-stars {
  margin-top: 3px;
  font-size: 2rem;
  line-height: 1.2;
}

.reviews-summary > p {
  color: #232323;
  font-size: 0.91rem;
}

.google-word {
  margin-top: 2px;
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1.2;
}

.google-word span:nth-child(1),
.google-word span:nth-child(4) {
  color: #4285f4;
}

.google-word span:nth-child(2),
.google-word span:nth-child(6) {
  color: #ea4335;
}

.google-word span:nth-child(3) {
  color: #fbbc05;
}

.google-word span:nth-child(5) {
  color: #34a853;
}

.google-review {
  padding: 22px 20px;
  align-self: stretch;
  background: var(--white);
  border: 1px solid #dadce0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(60, 64, 67, 0.12);
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--sea), var(--navy));
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
}

.avatar-orange {
  background: #ff5722;
}

.avatar-navy {
  background: var(--navy);
}

.avatar-purple {
  background: #a847bd;
}

.review-author strong,
.review-author > span {
  display: block;
}

.review-author strong {
  color: #202124;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.3;
}

.review-source {
  margin-top: 1px;
  color: #5f6368;
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
}

.review-google-logo {
  margin-right: 2px;
  display: inline-block !important;
  background: conic-gradient(from -40deg, #4285f4 0 28%, #34a853 28% 48%, #fbbc05 48% 69%, #ea4335 69% 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
}

.review-meta {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  font-family: Arial, sans-serif;
}

.review-date {
  color: #5f6368;
  font-size: 0.78rem;
}

.review-rating {
  margin-top: 0;
  color: #f9ab00;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.google-review blockquote {
  margin-top: 12px;
  color: #202124;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.52;
}

/* Cobertura */
.coverage {
  padding-block: 72px;
  background: var(--white);
}

.coverage-layout {
  display: grid;
  gap: 30px;
}

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

.coverage-list span {
  min-height: 54px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--mist);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.coverage-list i {
  color: var(--orange);
}

/* CTA final */
.final-cta {
  padding-block: 68px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sea), #087b92);
}

.final-cta-inner {
  display: grid;
  gap: 28px;
  text-align: center;
}

.final-cta-inner > div:first-child > span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.final-actions {
  display: grid;
  gap: 13px;
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.final-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
  text-decoration: none;
}

/* Pie */
.footer {
  padding-top: 60px;
  color: rgba(255, 255, 255, 0.72);
  background: #051925;
}

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

.brand-footer {
  position: static;
  z-index: auto;
  width: fit-content;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 12px;
}

.brand-footer .brand-logo {
  width: 225px;
}

.footer-brand p {
  max-width: 460px;
  margin-top: 17px;
  font-size: 0.9rem;
}

.footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.92rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer a,
.footer-link {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 0.86rem;
  text-decoration: none;
  cursor: pointer;
}

.footer-bottom {
  padding-block: 20px 105px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom .container {
  display: grid;
  gap: 5px;
  font-size: 0.7rem;
}

/* Documentos legales */
.legal-body {
  background: #f2f6f7;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--mist);
}

.legal-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.legal-logo img {
  width: 216px;
  height: auto;
}

.legal-back {
  min-height: 44px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--mist);
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-main {
  padding-block: 42px 80px;
}

.legal-hero {
  padding: clamp(34px, 7vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 15%, rgba(114, 219, 226, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), #0a5368);
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
}

.legal-hero span {
  color: #8fe9ed;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 720px;
  margin-top: 8px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.2rem, 8vw, 4rem);
  line-height: 1.08;
}

.legal-hero p {
  max-width: 700px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
}

.legal-document {
  position: relative;
  width: min(calc(100% - 24px), 940px);
  margin: -22px auto 0;
  padding: clamp(26px, 6vw, 54px);
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(5, 35, 52, 0.1);
}

.legal-document h2 {
  margin-top: 34px;
  padding-bottom: 9px;
  color: var(--navy);
  border-bottom: 1px solid var(--mist);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.25;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document h3 {
  margin-top: 23px;
  color: var(--navy);
  font-size: 1rem;
}

.legal-document p,
.legal-document li {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.legal-document ul {
  padding-left: 20px;
}

.legal-document a {
  color: var(--sea);
  font-weight: 700;
}

.legal-highlight {
  padding: 18px;
  background: var(--sea-light);
  border-left: 4px solid var(--sea);
  border-radius: 0 10px 10px 0;
}

.legal-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--mist);
  border-radius: 10px;
}

.legal-document table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.legal-document th,
.legal-document td {
  padding: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--mist);
  text-align: left;
  vertical-align: top;
}

.legal-document th {
  color: var(--navy);
  background: var(--off-white);
}

.legal-footer {
  padding-block: 26px;
  color: rgba(255, 255, 255, 0.66);
  background: #051925;
}

.legal-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  font-size: 0.75rem;
}

.legal-footer a {
  color: rgba(255, 255, 255, 0.76);
}

/* Acciones flotantes de llamada y WhatsApp */
.phone-float,
.wa-fab {
  position: fixed;
  bottom: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
}

.phone-float {
  left: 24px;
  background: var(--orange);
  box-shadow: 0 4px 20px rgba(238, 106, 26, 0.42);
  font-size: 1.55rem;
}

.wa-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
}

.wa-fab {
  position: relative;
  bottom: auto;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.42);
  font-size: 2rem;
  animation: whatsapp-pulse 2s infinite;
}

.wa-close {
  display: none;
  font-size: 1.35rem;
}

.wa-widget.open .wa-open {
  display: none;
}

.wa-widget.open .wa-close {
  display: block;
}

.wa-widget.open .wa-fab {
  background: #128c7e;
  animation: none;
}

@keyframes whatsapp-pulse {
  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.68), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

.wa-chat {
  position: absolute;
  right: -8px;
  bottom: 76px;
  width: calc(100vw - 32px);
  max-width: 370px;
  overflow: hidden;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.wa-widget.open .wa-chat {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-chat-header {
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 44px 1fr 34px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: #075e54;
}

.wa-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: #075e54;
  border-radius: 50%;
  font-weight: 900;
}

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

.wa-chat-header strong {
  font-size: 0.92rem;
}

.wa-chat-header span {
  margin-top: 2px;
  font-size: 0.68rem;
  opacity: 0.85;
}

.wa-chat-header span i {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: #75e48d;
  border-radius: 50%;
}

.wa-chat-header button {
  width: 34px;
  height: 34px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.wa-chat-body {
  min-height: 150px;
  padding: 22px 16px;
  background: #efeae2;
}

.wa-message {
  max-width: 82%;
  padding: 10px 12px;
  color: #2b373e;
  background: var(--white);
  border-radius: 4px 10px 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wa-message p {
  font-size: 0.84rem;
  line-height: 1.5;
}

.wa-message time {
  display: block;
  color: #829097;
  font-size: 0.62rem;
  text-align: right;
}

.wa-form {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  background: #f7f7f7;
}

.wa-form input {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #e1e5e6;
  border-radius: 999px;
  outline: 0;
  font-size: 0.8rem;
}

.wa-form button {
  width: 42px;
  height: 42px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  cursor: pointer;
}

/* Barra de contacto fija en móvil */
.mobile-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12500;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid rgba(5, 35, 52, 0.12);
  box-shadow: 0 -12px 32px rgba(5, 35, 52, 0.14);
  backdrop-filter: blur(12px);
}

.mobile-sticky-cta a {
  min-height: 52px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.mobile-sticky-cta i {
  font-size: 1.18rem;
}

.mobile-sticky-call {
  background: var(--orange);
  box-shadow: 0 7px 18px rgba(238, 106, 26, 0.24);
}

.mobile-sticky-whatsapp {
  background: #1faf5b;
  box-shadow: 0 7px 18px rgba(31, 175, 91, 0.2);
}

/* Modales */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 15000;
  padding: 18px;
  display: grid;
  place-items: center;
  background: rgba(4, 24, 36, 0.76);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.promo-card,
.legal-card {
  position: relative;
  width: min(100%, 460px);
  max-height: min(88vh, 720px);
  overflow-y: auto;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.25s ease;
}

.modal-overlay.visible .promo-card,
.modal-overlay.visible .legal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--mist);
  border-radius: 50%;
  cursor: pointer;
}

.promo-card {
  width: min(100%, 500px);
  padding: 42px 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(9, 53, 76, 0.1);
  border-radius: 24px;
  text-align: center;
}

.promo-card .modal-close {
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-color: #d8e3e8;
  box-shadow: 0 5px 16px rgba(7, 40, 58, 0.08);
}

.promo-icon {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 21px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: #fff0e6;
  border: 1px solid #ffe2cf;
  border-radius: 50%;
  font-size: 1.65rem;
}

.promo-icon::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(238, 106, 26, 0.12);
  border-radius: inherit;
}

.promo-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--sea);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-card h2 {
  max-width: 440px;
  margin: 10px auto 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.95rem, 5vw, 2.25rem);
  line-height: 1.13;
}

.promo-card .promo-intro {
  max-width: 420px;
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.62;
}

.promo-call {
  min-height: 60px;
  margin-top: 23px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: var(--orange);
  border-radius: 11px;
  box-shadow: 0 12px 28px rgba(238, 106, 26, 0.24);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.promo-call i {
  font-size: 1rem;
}

.promo-call strong {
  font-size: 1.04rem;
}

.promo-reassurance {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 15px;
  color: #42606f;
  font-size: 0.7rem;
  font-weight: 800;
}

.promo-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.promo-reassurance i {
  color: var(--success);
}

.promo-budget {
  margin-top: 18px;
  display: inline-block;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(9, 53, 76, 0.32);
  text-underline-offset: 4px;
}

.promo-card .promo-note {
  margin-top: 12px;
  color: #718692;
  font-size: 0.65rem;
  font-weight: 700;
}

.promo-call,
.promo-budget,
.promo-card .modal-close {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.promo-call:hover,
.promo-call:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.promo-budget:hover,
.promo-budget:focus-visible {
  color: var(--orange-dark);
  text-decoration-color: var(--orange);
}

.promo-card .modal-close:hover,
.promo-card .modal-close:focus-visible {
  background: #edf3f5;
}

.promo-call:focus-visible,
.promo-budget:focus-visible,
.promo-card .modal-close:focus-visible {
  outline: 3px solid rgba(18, 157, 169, 0.28);
  outline-offset: 2px;
}

.legal-card {
  padding: 42px 26px 28px;
}

.legal-card h2 {
  padding-right: 40px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.8rem;
}

.legal-card h3 {
  margin-top: 20px;
  color: var(--navy);
  font-size: 1rem;
}

.legal-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (min-width: 620px) {
  .container {
    width: min(calc(100% - 48px), 1200px);
  }

  .hero-actions {
    grid-template-columns: auto auto;
    justify-content: center;
  }

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

  .quote-card {
    padding: 34px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid article {
    min-height: 138px;
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .segment-card:last-child {
    grid-column: 1 / -1;
  }

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

  .google-review:last-child {
    grid-column: 1 / -1;
  }

  .projects-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .coverage-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .coverage-list span:last-child {
    grid-column: auto;
  }

  .final-actions {
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }

  .footer-bottom {
    padding-bottom: 24px;
  }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1000px) {
  :root {
    --header-height: 88px;
  }

  .nav-container {
    justify-content: space-between;
  }

  .brand-name {
    font-size: 1.48rem;
  }

  .brand-logo {
    width: 232px;
  }

  .menu-button {
    display: none;
  }

  .nav-menu {
    position: static;
    z-index: auto;
    width: auto;
    height: auto;
    padding: 0;
    flex-direction: row;
    gap: 20px;
    overflow: visible;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    font-size: 0.84rem;
    font-weight: 700;
  }

  .nav-phone,
  .nav-email,
  .nav-cta {
    min-width: auto;
    padding: 10px 15px;
  }

  .nav-email {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-bg {
    inset: 0;
    height: auto;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(4, 26, 40, 0.78) 0%, rgba(4, 26, 40, 0.62) 52%, rgba(4, 26, 40, 0.33) 100%);
  }

  .hero-bg img {
    object-position: center 48%;
  }

  .hero-layout {
    min-height: 760px;
    padding-block: 70px;
    grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
    align-items: center;
    gap: 72px;
  }

  .hero-copy {
    text-align: left;
  }

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

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .google-review:last-child {
    grid-column: auto;
  }

  .hero-copy h1,
  .hero-copy > p {
    margin-left: 0;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 4.4vw, 4.25rem);
  }

  .hero-copy > p {
    font-size: 1.12rem;
  }

  .hero-actions {
    justify-content: start;
  }

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

  .section {
    padding-block: 96px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .service-image,
  .project-card > img {
    height: 285px;
  }

  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .segment-card:last-child {
    grid-column: auto;
  }

  .segment-card > img {
    height: 230px;
  }

  .service-content {
    padding: 35px 30px 31px;
  }

  .project-card > div {
    padding: 26px 28px 29px;
  }

  .process-layout {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 78px;
  }

  .coverage-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1.55fr repeat(3, 0.8fr);
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .modal-overlay {
    padding: 14px;
    place-items: center;
  }

  .promo-card {
    max-height: calc(100dvh - 28px);
    padding: 39px 22px calc(24px + env(safe-area-inset-bottom));
  }

  .promo-card h2 {
    font-size: 1.85rem;
  }

  .promo-card .promo-intro {
    margin-top: 12px;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .promo-call {
    margin-top: 20px;
  }

  .navbar {
    background: var(--white);
    backdrop-filter: none;
  }

  .hero-bg {
    height: 520px;
  }

  .hero-bg img {
    object-position: 58% center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(4, 26, 40, 0.42), rgba(4, 26, 40, 0.55) 34%, rgba(4, 26, 40, 0.9) 65%, var(--navy-3) 82%),
      linear-gradient(90deg, rgba(4, 26, 40, 0.18), transparent);
  }

  .hero-layout {
    padding-block: 38px 56px;
    gap: 25px;
  }

  .hero-badge {
    margin-bottom: 15px;
  }

  .hero-copy h1 {
    max-width: 560px;
    margin-bottom: 15px;
    font-size: clamp(2.1rem, 7.8vw, 2.85rem);
  }

  .hero-copy > p {
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .button-whatsapp,
  .hero-trust {
    display: none;
  }

  .quote-card {
    padding-top: 24px;
  }

  .phone-float,
  .wa-widget {
    display: none;
  }

  .footer-bottom {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none;
  }
}

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

  .navbar .brand {
    max-width: calc(100% - 104px);
  }

  .navbar .brand-logo {
    width: min(194px, 100%);
  }

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

  .hero-layout {
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: 2.12rem;
  }

  .hero-badge {
    font-size: 0.7rem;
  }

  .quote-card {
    padding-inline: 18px;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .coverage-list span:last-child {
    grid-column: auto;
  }

  .phone-float {
    left: 18px;
  }

  .wa-widget {
    right: 18px;
  }

  .promo-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }

  .promo-call {
    padding-inline: 13px;
  }

  .promo-call strong {
    font-size: 0.9rem;
  }

  .promo-reassurance {
    display: grid;
    justify-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
