
@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #1f3a78;
  --ink-deep: #10255c;
  --turquoise: #b8ec35;
  --turquoise-bright: #caff45;
  --mint: #f2fbdc;
  --surface: #f8faef;
  --white: #ffffff;
  --muted: #52606c;
  --line: #dfe8c8;
}

/* Testimonios reales de Google */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(210, 255, 34, 0.28), transparent 27%),
    linear-gradient(180deg, #ffffff, var(--surface));
}

.testimonials-section::before {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  border: 44px solid rgba(184, 239, 0, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.testimonials-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 46px;
}

.testimonials-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(40px, 5vw, 66px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.testimonials-heading h2 span {
  color: #779d00;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  padding: 17px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(15, 37, 89, 0.1);
}

.google-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #4285f4;
  font-size: 25px;
  font-weight: 900;
  background: #f5f7fb;
  border-radius: 14px;
}

.google-rating strong,
.google-rating small {
  display: block;
}

.google-rating strong {
  color: var(--ink-deep);
  font-size: 20px;
}

.google-rating .rating-stars {
  font-size: 13px;
}

.google-rating small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.testimonials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  display: flex;
  min-height: 310px;
  padding: 38px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 22px 52px rgba(15, 37, 89, 0.1);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.testimonial-card-accent {
  background: linear-gradient(145deg, var(--ink-deep), #193675);
  border-color: var(--ink-deep);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 64px rgba(15, 37, 89, 0.16);
}

.testimonial-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rating-stars {
  color: #f4b400;
  font-size: 19px;
  letter-spacing: 0.1em;
}

.verified-review {
  padding: 7px 10px;
  color: #617328;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--mint);
  border-radius: 999px;
}

.testimonial-card blockquote {
  margin: 46px 0 42px;
  color: var(--ink-deep);
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.testimonial-card-accent blockquote {
  color: var(--white);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}

.review-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink-deep);
  font-weight: 900;
  background: var(--turquoise-bright);
  border-radius: 50%;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: var(--ink-deep);
  font-size: 15px;
}

.testimonial-author small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.testimonial-card-accent .testimonial-author strong {
  color: var(--white);
}

.testimonial-card-accent .testimonial-author small {
  color: rgba(255, 255, 255, 0.66);
}

.testimonials-action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding: 25px 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.testimonials-action p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 850px) {
  .testimonials-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .google-rating {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    min-height: 280px;
    padding: 28px 24px;
  }

  .testimonial-topline,
  .testimonials-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-card blockquote {
    margin: 36px 0;
  }

  .testimonials-action .button {
    width: 100%;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.brand-name,
.button,
.header-call {
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: min(100% - 64px, 1320px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 104px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(31, 58, 120, 0.08);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-logo {
  display: block;
  width: 72px;
  height: 68px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.5vw, 52px);
  font-size: 15px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 2px;
  background: var(--turquoise);
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.header-call {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  color: var(--ink-deep);
  font-weight: 750;
  background: linear-gradient(135deg, var(--turquoise-bright), var(--turquoise));
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(184, 236, 53, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-call svg,
.button svg {
  width: 23px;
  height: 23px;
}

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

.header-call:focus-visible,
.button:focus-visible,
.desktop-nav a:focus-visible {
  outline: 3px solid rgba(184, 236, 53, 0.46);
  outline-offset: 4px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  grid-template-columns: minmax(520px, 50.5%) 1fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(184, 236, 53, 0.13), transparent 28%),
    linear-gradient(120deg, #fff 0%, var(--surface) 58%, #f2f9df 100%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  width: min(650px, calc(100% - 64px));
  margin-right: 38px;
  margin-left: max(32px, calc((100vw - 1320px) / 2));
  padding-bottom: 90px;
  animation: hero-copy-in 500ms ease both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  color: #789b15;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::after {
  width: 42px;
  height: 3px;
  background: var(--turquoise);
  border-radius: 99px;
  content: "";
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(58px, 5.7vw, 88px);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--turquoise);
}

.hero-description {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 800;
  border: 2px solid var(--turquoise);
  border-radius: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  color: var(--ink-deep);
  background: linear-gradient(135deg, var(--turquoise-bright), var(--turquoise));
  box-shadow: 0 12px 30px rgba(184, 236, 53, 0.32);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(184, 236, 53, 0.42);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.button-secondary:hover {
  background: var(--mint);
}

.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e8efcf;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%, 0 76%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  animation: hero-media-in 800ms ease both;
}

.hero-accent {
  position: absolute;
  z-index: 2;
  top: -8%;
  bottom: -8%;
  left: 7.6%;
  width: 18px;
  background: linear-gradient(var(--turquoise-bright), #9fce22);
  border-radius: 30px;
  transform: rotate(27deg);
  transform-origin: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.trust-strip {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 92px;
  grid-template-columns: 1fr 1fr 1.35fr;
  align-items: center;
  padding: 0 44px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(31, 58, 120, 0.08);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -8px 35px rgba(31, 58, 120, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 34px;
  color: var(--ink-deep);
  font-size: 16px;
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--turquoise);
  background: var(--mint);
  border-radius: 50%;
}

.trust-icon svg {
  width: 26px;
  height: 26px;
}

#servicios,
#resultados,
#nosotros,
#contacto {
  scroll-margin-top: 24px;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.section-heading .eyebrow,
.contact-card .eyebrow {
  margin-bottom: 22px;
}

.section-heading h2,
.about-panel h2,
.contact-card h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading h2 span,
.about-panel h2 span,
.contact-card h2 span {
  color: var(--turquoise);
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.services-section {
  background: var(--white);
}

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

.service-card {
  position: relative;
  min-height: 470px;
  padding: 36px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(184, 236, 53, 0.17), transparent 68%);
  content: "";
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 236, 53, 0.7);
  box-shadow: 0 22px 45px rgba(31, 58, 120, 0.1);
}

.featured-card {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-18px);
  box-shadow: 0 22px 55px rgba(31, 58, 120, 0.2);
}

.featured-card:hover {
  transform: translateY(-24px);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 62px;
}

.service-number {
  color: #7b9298;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.featured-card .service-number {
  color: rgba(255, 255, 255, 0.55);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--turquoise);
  background: var(--mint);
  border-radius: 18px;
}

.service-icon svg {
  width: 29px;
  height: 29px;
}

.featured-card .service-icon {
  color: var(--white);
  background: rgba(184, 236, 53, 0.2);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-deep);
  font-size: 27px;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.featured-card h3 {
  color: var(--white);
}

.service-card > p {
  position: relative;
  z-index: 1;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.featured-card > p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3e5367;
  font-size: 14px;
  font-weight: 700;
}

.featured-card li {
  color: rgba(255, 255, 255, 0.86);
}

.service-card li::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--turquoise);
  font-size: 11px;
  background: var(--mint);
  border-radius: 50%;
  content: "✓";
}

.featured-card li::before {
  color: var(--white);
  background: rgba(184, 236, 53, 0.2);
}

.service-card-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 13px 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  background: var(--ink-deep);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 37, 89, 0.16);
  transition: gap 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  gap: 15px;
  color: var(--ink-deep);
  text-decoration: none;
  background: var(--turquoise-bright);
  transform: translateY(-2px);
}

.video-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(184, 236, 53, 0.2), transparent 28%),
    var(--surface);
}

.video-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.video-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  align-items: end;
  column-gap: 70px;
}

.video-copy h2 {
  grid-column: 1;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.video-copy h2 span {
  color: #7fa71c;
}

.video-copy > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.video-notes {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.video-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: var(--ink-deep);
  font-size: 12px;
  font-weight: 800;
  background: rgba(184, 236, 53, 0.22);
  border: 1px solid rgba(127, 167, 28, 0.2);
  border-radius: 999px;
}

.video-notes span::before {
  color: #719b0d;
  content: "✓";
}

.video-copy .eyebrow {
  grid-column: 1;
}

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

.video-result-card {
  min-width: 0;
}

.video-result-featured {
  grid-column: 1 / -1;
}

.video-result-card h3 {
  margin: 24px 4px 0;
  color: var(--ink-deep);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.video-frame {
  position: relative;
  padding: 14px;
  background: var(--ink-deep);
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(31, 58, 120, 0.22);
  transform: none;
}

.video-frame::before {
  position: absolute;
  z-index: -1;
  top: 26px;
  right: -22px;
  bottom: -22px;
  left: 24px;
  background: var(--turquoise);
  border-radius: 28px;
  content: "";
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #111;
  border-radius: 17px;
}

.video-result-featured .video-frame video {
  aspect-ratio: 16 / 8.2;
}

.video-badge {
  position: absolute;
  top: 34px;
  left: 34px;
  padding: 10px 15px;
  color: var(--ink-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--turquoise-bright);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(16, 37, 92, 0.18);
  pointer-events: none;
}

@media (max-width: 900px) {
  .video-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-copy > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 700px) {
  .video-showcase {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .video-result-featured {
    grid-column: auto;
  }

  .video-result-featured .video-frame video,
  .video-frame video {
    aspect-ratio: 16 / 10;
  }

  .video-frame {
    padding: 8px;
    border-radius: 20px;
  }

  .video-frame::before {
    right: -10px;
    bottom: -10px;
    left: 12px;
  }

  .video-badge {
    top: 22px;
    left: 22px;
  }
}

.about-section {
  color: var(--white);
  background:
    radial-gradient(circle at 4% 0%, rgba(202, 255, 69, 0.17), transparent 31%),
    var(--ink-deep);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 120px;
}

.light-eyebrow {
  color: var(--turquoise-bright);
}

.about-panel h2 {
  color: var(--white);
}

.about-intro {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding-bottom: 7px;
  color: var(--white);
  font-weight: 800;
  border-bottom: 2px solid var(--turquoise);
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 20px;
  color: var(--turquoise-bright);
}

.values-list {
  display: grid;
}

.values-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.values-list article:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.values-list article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--turquoise-bright);
  font-size: 13px;
  font-weight: 850;
  background: rgba(184, 236, 53, 0.14);
  border-radius: 14px;
}

.values-list h3 {
  margin: 0 0 9px;
  color: var(--white);
  font-size: 21px;
  font-weight: 800;
}

.values-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: #f2f8df;
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 60px solid rgba(184, 236, 53, 0.12);
  border-radius: 50%;
  content: "";
}

.contact-section::before {
  top: -210px;
  right: -110px;
}

.contact-section::after {
  bottom: -250px;
  left: -140px;
}

.contact-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: 90px;
  padding: 72px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(31, 58, 120, 0.1);
}

.contact-card h2 {
  max-width: 680px;
  font-size: clamp(42px, 4.3vw, 64px);
}

.contact-card > div:first-child > p:last-child {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-option {
  position: relative;
  display: grid;
  min-height: 84px;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-content: center;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-option:hover,
.contact-option:focus-visible {
  transform: translateX(4px);
  border-color: var(--turquoise);
  box-shadow: 0 10px 30px rgba(31, 58, 120, 0.08);
}

.contact-option > span {
  display: grid;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--turquoise);
  background: var(--mint);
  border-radius: 14px;
}

.contact-option svg {
  width: 24px;
  height: 24px;
}

.contact-option small {
  align-self: end;
  color: #71878e;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-option strong {
  align-self: start;
  overflow-wrap: anywhere;
  color: var(--ink-deep);
  font-size: 16px;
}

.whatsapp-button {
  width: 100%;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.whatsapp-button:hover {
  background: #294a91;
}

.site-footer {
  padding: 54px 0 92px;
  color: rgba(255, 255, 255, 0.78);
  background: #0c1d4a;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

.site-footer .brand {
  color: var(--white);
  font-size: 20px;
}

.site-footer .brand-logo {
  width: 62px;
  height: 58px;
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
}

.footer-inner > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--turquoise-bright);
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--white);
  background: #1fbf9b;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(16, 37, 92, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 38px rgba(16, 37, 92, 0.31);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes hero-media-in {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
}

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

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero {
    grid-template-columns: 54% 46%;
  }

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

  .trust-strip {
    padding-inline: 20px;
  }

  .trust-item {
    padding-inline: 18px;
  }

  .section-heading {
    gap: 40px;
  }

  .video-layout {
    gap: 42px;
  }

  .about-layout {
    gap: 60px;
  }

  .contact-card {
    gap: 50px;
    padding: 52px;
  }

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

  .footer-inner > p {
    display: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 92px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

  .featured-card,
  .featured-card:hover {
    transform: none;
  }

  .service-card-top {
    margin-bottom: 42px;
  }

  .video-layout,
  .about-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .video-frame {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .contact-card {
    gap: 46px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 36px, 1320px);
  }

  .site-header {
    height: 82px;
  }

  .brand {
    gap: 9px;
    font-size: 20px;
  }

  .brand-logo {
    width: 52px;
    height: 50px;
  }

  .header-call {
    width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .header-call span {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    overflow: visible;
  }

  .hero-copy {
    order: 1;
    width: auto;
    margin: 0;
    padding: 64px 18px 40px;
  }

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

  .hero h1 {
    font-size: clamp(50px, 14.8vw, 67px);
    line-height: 0.96;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    order: 2;
    height: 390px;
    clip-path: polygon(0 10%, 18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-accent {
    top: -20%;
    bottom: auto;
    left: -6%;
    width: 120%;
    height: 12px;
    transform: rotate(-7deg);
  }

  .trust-strip {
    position: relative;
    order: 3;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 16px 24px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .trust-item {
    min-height: 66px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

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

  .section-heading h2,
  .video-copy h2,
  .about-panel h2,
  .contact-card h2 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .service-card {
    padding: 28px;
    border-radius: 20px;
  }

  .service-card-top {
    margin-bottom: 34px;
  }

  .video-layout {
    gap: 40px;
  }

  .video-frame {
    padding: 9px;
    border-radius: 20px;
    transform: none;
  }

  .video-frame::before {
    top: 15px;
    right: -8px;
    bottom: -12px;
    left: 12px;
    border-radius: 20px;
  }

  .video-frame video {
    border-radius: 13px;
  }

  .video-badge {
    top: 22px;
    left: 22px;
  }

  .about-layout {
    gap: 54px;
  }

  .values-list article {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .values-list article > span {
    width: 44px;
    height: 44px;
  }

  .contact-card {
    width: calc(100% - 28px);
    gap: 38px;
    padding: 38px 24px;
    border-radius: 24px;
  }

  .contact-option {
    grid-template-columns: 46px 1fr;
    padding-inline: 14px;
  }

  .contact-option > span {
    width: 42px;
    height: 42px;
  }

  .whatsapp-button {
    min-height: 70px;
    padding-inline: 18px;
    text-align: center;
  }

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

  .footer-links {
    justify-items: start;
  }

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

/* Zonas locales y páginas SEO */
.local-seo-section {
  background: linear-gradient(180deg, var(--white), var(--mint));
  border-top: 1px solid var(--line);
}

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

.local-area-card {
  position: relative;
  display: block;
  min-height: 310px;
  padding: 38px;
  overflow: hidden;
  color: var(--ink-deep);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(15, 37, 89, 0.1);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.local-area-card:hover {
  text-decoration: none;
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 37, 89, 0.16);
}

.local-area-card > span {
  display: inline-block;
  padding: 7px 11px;
  color: var(--ink-deep);
  font-size: 12px;
  font-weight: 900;
  background: var(--turquoise-bright);
  border-radius: 999px;
}

.local-area-card h3 {
  max-width: 520px;
  margin: 42px 0 14px;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.local-area-card p {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.65;
}

.local-area-card strong {
  display: block;
  margin-top: 28px;
  color: #6f9500;
}

.local-area-card-dark {
  color: var(--white);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.local-area-card-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.local-area-card-dark strong {
  color: var(--turquoise-bright);
}

.coverage-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 24px;
  padding: 34px 38px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(15, 37, 89, 0.14);
}

.coverage-intro > div {
  max-width: 760px;
}

.coverage-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 11px;
  color: var(--ink-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--turquoise-bright);
  border-radius: 999px;
}

.coverage-intro h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(27px, 3vw, 40px);
  letter-spacing: -0.04em;
}

.coverage-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.coverage-intro .button {
  flex: 0 0 auto;
}

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

.coverage-card {
  min-height: 250px;
  padding: 32px;
  color: var(--ink-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(15, 37, 89, 0.08);
}

.coverage-card > span {
  color: #6f9500;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.coverage-card h3 {
  margin: 34px 0 14px;
  font-size: clamp(25px, 2.8vw, 35px);
  letter-spacing: -0.04em;
}

.coverage-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.coverage-card-dark {
  color: var(--white);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.coverage-card-dark > span,
.coverage-card-dark p {
  color: var(--turquoise-bright);
}

.coverage-card-lime {
  background: var(--turquoise-bright);
  border-color: var(--turquoise-bright);
}

.coverage-card-lime > span,
.coverage-card-lime p {
  color: var(--ink-deep);
}

.coverage-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.coverage-links a {
  padding: 8px 12px;
  color: var(--ink-deep);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  background: var(--mint);
  border-radius: 999px;
}

.seo-page {
  background: var(--surface);
}

.seo-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 82% 20%, rgba(210, 255, 34, 0.38), transparent 29%),
    linear-gradient(135deg, #fff, #efffc1);
}

.seo-hero h1 {
  max-width: 970px;
  margin: 15px 0 24px;
  color: var(--ink-deep);
  font-size: clamp(48px, 7vw, 82px);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.seo-hero h1 span {
  color: #719700;
}

.seo-hero p:not(.eyebrow) {
  max-width: 750px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.seo-content {
  padding: 86px 0;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 70px;
}

.seo-copy h2 {
  margin: 0 0 24px;
  color: var(--ink-deep);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.05em;
}

.seo-copy h3 {
  margin: 42px 0 14px;
  color: var(--ink-deep);
  font-size: 25px;
}

.seo-copy p,
.seo-copy li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.seo-copy ul {
  padding-left: 22px;
}

.seo-copy li {
  margin-bottom: 9px;
  list-style: disc;
}

.seo-contact-box {
  position: sticky;
  top: 120px;
  height: fit-content;
  padding: 34px;
  color: var(--white);
  background: var(--ink-deep);
  border-top: 8px solid var(--turquoise-bright);
  border-radius: 24px;
}

.seo-contact-box h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 30px;
}

.seo-contact-box p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.seo-contact-box .button {
  width: 100%;
  margin-top: 12px;
}

.seo-breadcrumbs {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 13px;
}

.seo-breadcrumbs a {
  color: var(--ink-deep);
}

@media (max-width: 850px) {
  .local-area-grid,
  .coverage-grid,
  .seo-content-grid {
    grid-template-columns: 1fr;
  }

  .coverage-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-contact-box {
    position: static;
  }
}

@media (max-width: 600px) {
  .local-area-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .seo-hero {
    padding: 125px 0 64px;
  }
}

/* Hora y tiempo en directo */
.live-info-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(210, 255, 34, 0.22), transparent 32%),
    var(--ink-deep);
}

.live-info-section::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 56px solid rgba(210, 255, 34, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.live-info-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.live-info-heading .eyebrow {
  color: var(--lime);
}

.live-info-heading h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 58px);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.live-info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
}

.live-card {
  min-height: 230px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.live-card-label {
  display: block;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-clock {
  display: block;
  margin: 18px 0 8px;
  color: var(--white);
  font-size: clamp(48px, 7vw, 82px);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.live-date,
.weather-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.weather-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.weather-icon {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border-radius: 24px;
  background: var(--lime);
  box-shadow: 0 15px 30px rgba(210, 255, 34, 0.18);
  font-size: 54px;
}

.weather-temperature {
  display: block;
  margin: 8px 0 2px;
  color: var(--white);
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
}

.weather-details {
  min-width: 112px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.weather-details span,
.weather-details strong {
  display: block;
}

.weather-details span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.weather-details strong {
  color: var(--white);
  font-size: 18px;
}

@media (max-width: 850px) {
  .live-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .live-info-section {
    padding: 62px 0;
  }

  .live-card {
    min-height: auto;
    padding: 27px 24px;
  }

  .weather-card {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .weather-icon {
    width: 76px;
    height: 76px;
    border-radius: 19px;
    font-size: 39px;
  }

  .weather-details {
    grid-column: 1 / -1;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
}

/* Movimiento suave al recorrer la página */
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

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

.service-card:nth-child(2),
.values-list article:nth-child(2) {
  transition-delay: 110ms;
}

.service-card:nth-child(3),
.values-list article:nth-child(3) {
  transition-delay: 220ms;
}

.service-card,
.contact-option,
.button,
.location-card {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.015);
}

.machinery-image > img,
.video-frame video {
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.machinery-image:hover > img {
  transform: scale(1.045);
}

.hero-main-logo {
  animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Ubicación y horario */
.location-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 90% 0, rgba(210, 255, 34, 0.24), transparent 34%),
    var(--white);
}

.location-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.location-heading .eyebrow {
  margin-bottom: 14px;
}

.location-heading h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(40px, 5vw, 66px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.location-link {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  min-height: 530px;
  overflow: hidden;
  background: var(--ink-deep);
  border: 6px solid var(--turquoise);
  border-radius: 30px;
  box-shadow: 0 28px 65px rgba(15, 37, 89, 0.16);
}

.map-frame {
  min-height: 530px;
  background: var(--surface);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 530px;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 42px;
  color: var(--white);
}

.location-logo {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  padding: 7px;
  background: var(--turquoise-bright);
  border-radius: 22px;
}

.location-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.location-detail {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 14px;
}

.location-detail > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink-deep);
  background: var(--turquoise-bright);
  border-radius: 13px;
  font-size: 23px;
}

.location-detail small {
  display: block;
  margin-bottom: 5px;
  color: var(--turquoise-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.location-detail strong {
  font-size: 15px;
  line-height: 1.55;
}

.location-detail p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.location-info .button {
  width: 100%;
}

@media (max-width: 900px) {
  .location-card {
    grid-template-columns: 1fr;
  }

  .location-info {
    padding: 38px;
  }
}

@media (max-width: 600px) {
  .location-section {
    padding: 68px 0;
  }

  .location-heading {
    align-items: start;
    flex-direction: column;
  }

  .location-card {
    border-width: 4px;
    border-radius: 22px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
  }

  .location-info {
    padding: 30px 24px;
  }
}

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

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 420px) {
  .brand-name {
    display: none;
  }
}

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

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

/* Identidad visual refinada: azul corporativo, verde limón y blanco */
:root {
  --ink: #17316b;
  --ink-deep: #0f2559;
  --turquoise: #b9ef00;
  --turquoise-bright: #caff18;
  --mint: #f3ffd3;
  --surface: #f9ffec;
  --white: #ffffff;
  --muted: rgba(23, 49, 107, 0.68);
  --line: #dceda5;
}

body {
  background: var(--white);
}

.site-header {
  height: 110px;
  border-bottom: 4px solid var(--turquoise);
  box-shadow: 0 8px 28px rgba(15, 37, 89, 0.07);
}

.brand-logo {
  width: 80px;
  height: 74px;
}

.brand-name {
  color: var(--ink-deep);
  font-size: 26px;
  font-weight: 850;
}

.header-call,
.button-primary {
  color: var(--ink-deep);
  background: var(--turquoise-bright);
  border-color: var(--turquoise-bright);
  box-shadow: 0 10px 26px rgba(185, 239, 0, 0.28);
}

.header-call:hover,
.button-primary:hover {
  background: var(--turquoise);
  box-shadow: 0 14px 30px rgba(185, 239, 0, 0.35);
}

.hero {
  background:
    radial-gradient(circle at 20% 14%, rgba(202, 255, 24, 0.22), transparent 29%),
    var(--white);
}

.hero h1 span,
.section-heading h2 span,
.video-copy h2 span,
.about-panel h2 span,
.contact-card h2 span {
  color: #8fbc00;
}

.eyebrow {
  color: #6f9200;
}

.hero-accent {
  background: var(--turquoise-bright);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.45);
}

.trust-strip {
  border-top: 4px solid var(--turquoise);
  box-shadow: 0 -10px 32px rgba(15, 37, 89, 0.08);
}

.trust-icon,
.service-icon,
.contact-option > span {
  color: var(--ink-deep);
  background: var(--turquoise-bright);
}

.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border: 2px solid var(--line);
  box-shadow: 0 14px 36px rgba(15, 37, 89, 0.06);
}

.service-card:hover {
  border-color: var(--turquoise);
  box-shadow: 0 22px 45px rgba(15, 37, 89, 0.11);
}

.featured-card {
  color: var(--white);
  background: var(--ink-deep);
  border: 4px solid var(--turquoise);
  box-shadow: 0 24px 52px rgba(15, 37, 89, 0.2);
}

.service-card li::before,
.featured-card li::before {
  color: var(--ink-deep);
  background: var(--turquoise-bright);
}

.video-section {
  background:
    linear-gradient(120deg, rgba(202, 255, 24, 0.16), transparent 58%),
    var(--surface);
}

.video-notes span {
  color: var(--ink-deep);
  background: var(--mint);
  border-color: var(--turquoise);
}

.video-frame {
  background: var(--ink-deep);
  box-shadow: 0 28px 60px rgba(15, 37, 89, 0.2);
}

.video-frame::before,
.video-badge {
  color: var(--ink-deep);
  background: var(--turquoise-bright);
}

.about-section {
  background:
    radial-gradient(circle at 7% 5%, rgba(202, 255, 24, 0.16), transparent 31%),
    var(--ink-deep);
  border-top: 10px solid var(--turquoise);
}

.values-list article > span {
  color: var(--ink-deep);
  background: var(--turquoise-bright);
}

.contact-section {
  background: var(--mint);
}

.contact-section::before,
.contact-section::after {
  border-color: rgba(185, 239, 0, 0.24);
}

.contact-card {
  border: 3px solid var(--turquoise);
  box-shadow: 0 28px 62px rgba(15, 37, 89, 0.12);
}

.contact-option {
  background: var(--surface);
  border-color: var(--line);
}

.whatsapp-button {
  color: var(--ink-deep);
  background: var(--turquoise-bright);
  border-color: var(--turquoise-bright);
}

.whatsapp-button:hover {
  background: var(--turquoise);
}

.site-footer {
  padding: 72px 0 100px;
  color: var(--white);
  background: var(--ink-deep);
  border-top: 12px solid var(--turquoise-bright);
}

.footer-inner {
  grid-template-columns: 240px 1fr auto;
  gap: 56px;
}

.footer-logo-lockup {
  display: grid;
  place-items: center;
  width: 220px;
  min-height: 176px;
  padding: 12px;
  background: var(--white);
  border: 5px solid var(--turquoise-bright);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease;
}

.footer-logo-lockup:hover,
.footer-logo-lockup:focus-visible {
  transform: translateY(-4px);
}

.footer-main-logo {
  display: block;
  width: 174px;
  height: 145px;
  object-fit: contain;
}

.footer-message strong {
  display: block;
  max-width: 480px;
  color: var(--turquoise-bright);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}

.footer-message p {
  max-width: 500px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.footer-links {
  gap: 14px;
  color: var(--white);
  font-size: 15px;
}

.footer-links a:first-child {
  color: var(--turquoise-bright);
  font-size: 24px;
  font-weight: 900;
}

.floating-whatsapp {
  color: var(--ink-deep);
  background: var(--turquoise-bright);
  border-color: var(--white);
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 220px 1fr;
  }

  .footer-links {
    grid-column: 2;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 88px;
  }

  .brand-logo {
    width: 58px;
    height: 54px;
  }

  .brand-name {
    font-size: 20px;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-inner {
    display: flex;
    align-items: center;
    text-align: center;
  }

  .footer-logo-lockup {
    width: 210px;
    min-height: 170px;
  }

  .footer-message strong,
  .footer-message p {
    margin-inline: auto;
  }

  .footer-links {
    justify-items: center;
  }
}

/* Información principal y presupuesto destacado */
.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 24px 0 0;
  padding: 10px 16px;
  color: var(--ink-deep);
  background: var(--turquoise-bright);
  border-radius: 999px;
  font-size: 16px;
  line-height: 1.2;
}

.experience-badge strong {
  font-weight: 900;
}

.hero .hero-actions {
  margin-top: 20px;
}

.hero .hero-description {
  margin-top: 22px;
}

.quick-contact {
  padding: 32px 0;
  color: var(--white);
  background: var(--ink-deep);
  border-bottom: 7px solid var(--turquoise-bright);
}

.quick-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.quick-contact .eyebrow {
  margin-bottom: 10px;
  color: var(--turquoise-bright);
}

.quick-contact h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.quick-contact p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.quick-contact-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.quick-phone {
  display: grid;
  gap: 2px;
  color: var(--white);
  white-space: nowrap;
}

.quick-phone small {
  color: var(--turquoise-bright);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quick-phone strong {
  font-size: 22px;
}

.footer-links span {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}

@media (max-width: 900px) {
  .quick-contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .quick-contact {
    padding: 28px 0;
  }

  .quick-contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-phone {
    justify-items: center;
    text-align: center;
  }

  .footer-links span {
    text-align: center;
  }
}

/* Identidad visual verde limón y logotipo protagonista */
:root {
  --turquoise: #b8ef00;
  --turquoise-bright: #d2ff22;
  --mint: #f2ffd0;
  --surface: #f8ffe8;
  --line: #d9ebae;
}

.site-header {
  background: rgba(248, 255, 232, 0.97);
  border-bottom: 4px solid var(--turquoise);
}

.brand-logo {
  width: 78px;
  height: 72px;
  mix-blend-mode: normal;
}

.hero {
  background:
    radial-gradient(circle at 15% 17%, rgba(210, 255, 34, 0.42), transparent 31%),
    linear-gradient(120deg, #ffffff 0%, #f6ffd9 58%, #e5ff83 100%);
}

.hero-brand-panel {
  display: grid;
  place-items: center;
  align-content: center;
  padding: 64px 72px 140px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.88) 0 38%, transparent 72%),
    linear-gradient(145deg, #f8ffe8, #eaf8c6);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
}

.hero-brand-panel::before,
.hero-brand-panel::after {
  display: none;
}

.hero-main-logo {
  position: relative;
  z-index: 2;
  width: min(88%, 570px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(15, 37, 89, 0.1));
}

.hero-brand-note {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  padding: 10px 18px;
  color: var(--ink-deep);
  background: rgba(210, 255, 34, 0.54);
  border: 1px solid rgba(119, 157, 0, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-contact {
  background:
    linear-gradient(100deg, rgba(210, 255, 34, 0.12), transparent 55%),
    var(--ink-deep);
  border-top: 7px solid var(--turquoise-bright);
  border-bottom-width: 7px;
}

.services-section {
  background: linear-gradient(180deg, var(--white), var(--surface));
}

.machinery-section {
  padding-top: 84px;
  padding-bottom: 84px;
  background: var(--mint);
  border-top: 8px solid var(--turquoise);
}

.machinery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  align-items: center;
  gap: 64px;
}

.machinery-image {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--ink-deep);
  border: 8px solid var(--turquoise-bright);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(15, 37, 89, 0.17);
}

.machinery-image > img {
  display: block;
  width: 100%;
  min-height: 470px;
  height: 100%;
  object-fit: cover;
}

.machinery-logo {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  padding: 8px;
  background: rgba(210, 255, 34, 0.94);
  border: 3px solid var(--white);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(15, 37, 89, 0.24);
}

.machinery-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.machinery-copy h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.machinery-copy h2 span {
  display: block;
  margin-top: 8px;
  color: #779d00;
}

.machinery-copy > p:last-of-type {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.footer-main-logo {
  mix-blend-mode: normal;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

@media (max-width: 1000px) {
  .hero-brand-panel {
    padding-inline: 30px;
  }

  .machinery-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 760px) {
  .hero-brand-panel {
    min-height: 520px;
    padding: 54px 28px 128px;
    clip-path: none;
  }

  .hero-main-logo {
    width: min(92%, 440px);
  }

  .machinery-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .machinery-image,
  .machinery-image > img {
    min-height: 320px;
  }
}

/* Rediseño profesional: tipografía, servicios y cobertura insular */
body,
h1,
h2,
h3,
.brand-name,
.button,
.header-call {
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

h1,
h2,
h3,
.brand-name {
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.about-panel h2,
.contact-card h2,
.machinery-copy h2,
.testimonials-heading h2 {
  letter-spacing: -0.038em;
}

.section-heading h2,
.about-panel h2,
.contact-card h2 {
  font-weight: 700;
  line-height: 1.03;
}

.services-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f1 100%);
}

.service-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin: -12px 0 24px;
  padding: 21px 24px;
  color: var(--white);
  background: var(--ink-deep);
  border-left: 6px solid var(--turquoise-bright);
}

.service-group-heading > div {
  display: grid;
  gap: 4px;
}

.service-group-heading span {
  color: var(--turquoise-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-group-heading strong {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}

.service-group-heading p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}

.service-grid {
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 460px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid #d8e0c7;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 37, 89, 0.065);
}

.service-card::after {
  width: 150px;
  height: 150px;
  opacity: 0.65;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(15, 37, 89, 0.11);
}

.featured-card,
.featured-card:hover {
  border: 1px solid var(--ink-deep);
  border-top: 6px solid var(--turquoise-bright);
  border-radius: 12px;
  transform: none;
}

.service-card-top {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 37, 89, 0.12);
}

.featured-card .service-card-top {
  border-color: rgba(255, 255, 255, 0.16);
}

.service-number {
  font-weight: 700;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--ink-deep);
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--turquoise-bright);
  border-radius: 6px;
}

.service-card h3 {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.service-card > p {
  margin: 14px 0 20px;
  line-height: 1.58;
}

.service-card ul {
  gap: 9px;
}

.service-card li {
  font-weight: 600;
}

.service-card li::before,
.featured-card li::before {
  border-radius: 4px;
}

.service-card-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.service-card-meta span {
  padding: 6px 9px;
  color: #49601a;
  font-size: 11px;
  font-weight: 600;
  background: #eef7d8;
  border: 1px solid #d8e8ae;
  border-radius: 4px;
}

.featured-card .service-card-meta span {
  color: var(--white);
  background: rgba(210, 255, 34, 0.1);
  border-color: rgba(210, 255, 34, 0.34);
}

.service-card-link {
  width: fit-content;
  margin-top: auto;
  padding: 12px 15px;
  padding-top: 12px;
  font-weight: 700;
  border-radius: 5px;
  box-shadow: none;
}

.service-card-link-light {
  color: var(--ink-deep);
  background: var(--turquoise-bright);
}

.service-standard-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 37, 89, 0.05);
}

.service-standard-bar > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 12px;
  padding: 22px 24px;
}

.service-standard-bar > div + div {
  border-left: 1px solid var(--line);
}

.service-standard-bar span {
  grid-row: 1 / 3;
  color: #779d00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-standard-bar strong {
  color: var(--ink-deep);
  font-size: 15px;
  font-weight: 700;
}

.service-standard-bar small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.local-seo-section {
  background: #f4f7ed;
}

.coverage-intro {
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(15, 37, 89, 0.11);
}

.coverage-kicker,
.coverage-intro .button {
  border-radius: 5px;
}

.coverage-grid {
  gap: 20px;
}

.coverage-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d9e1cb;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(15, 37, 89, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 37, 89, 0.12);
}

.coverage-media {
  position: relative;
  height: 230px;
  margin: 0;
  overflow: hidden;
  background: var(--ink-deep);
}

.coverage-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 21, 54, 0.76));
  content: "";
}

.coverage-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.coverage-card:first-child .coverage-media img,
.coverage-card:nth-child(3) .coverage-media img {
  object-position: center 42%;
}

.coverage-card:hover .coverage-media img {
  transform: scale(1.045);
}

.coverage-media figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.coverage-card-body {
  position: relative;
  min-height: 225px;
  padding: 27px 28px 30px;
  border-top: 5px solid var(--turquoise-bright);
}

.coverage-number {
  color: #6f9500;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.coverage-card h3 {
  margin: 10px 0 12px;
  color: var(--ink-deep);
  font-size: clamp(23px, 2.4vw, 31px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.coverage-card p,
.coverage-card-dark p,
.coverage-card-lime p {
  color: var(--muted);
  line-height: 1.65;
}

.coverage-links {
  margin-top: 18px;
}

.coverage-links a {
  color: var(--ink-deep);
  font-weight: 600;
  background: #eff7da;
  border: 1px solid #dae9b1;
  border-radius: 4px;
}

.photo-credits {
  margin-top: 42px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.photo-credits summary {
  width: fit-content;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 600;
}

.photo-credits p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.photo-credits a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1000px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card-link {
    margin-top: 28px;
  }

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

  .service-standard-bar > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .service-group-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-group-heading p {
    text-align: left;
  }

  .service-card {
    padding: 24px;
  }

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

  .coverage-media {
    height: 210px;
  }

  .coverage-card-body {
    min-height: 0;
    padding: 24px;
  }
}
