:root {
  --ink: #172824;
  --muted: #60746d;
  --brand: #31B194;
  --brand-dark: #339881;
  --brand-soft: #e8f5f0;
  --accent: #31B194;
  --coral: #31B194;
  --paper: #f7faf8;
  --white: #ffffff;
  --line: #dce7e1;
  --shadow: 0 22px 60px rgba(12, 42, 34, 0.12);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 200;
}

body.nav-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--brand-dark);
  color: var(--white);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 225, 0.86);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: auto;
  height: 60px;
}

.brand strong,
.footer-brand {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: var(--brand-dark);
  font-weight: 800;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: var(--radius);
  color: #31433e;
  font-size: 15px;
  font-weight: 200;
  padding: 10px 12px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: #ffb700;
  color: #000;
  font-weight: 400;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--brand-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--brand-dark);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  margin: 0 auto;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.nav-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-lines::before {
  transform: translateY(7px) rotate(90deg);
}

.nav-open .nav-toggle-lines::after {
  transform: translateY(-7px);
  opacity: 0;
}

.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 24px 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.hero-content {
  max-width: 640px;
  animation: rise-in 720ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
  color: #343434;
}

h1 {
  margin-bottom: 22px;
  font-size: 54px;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 620;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 620;
}

p {
  color: var(--muted);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 28px;
  font-size: 19px;
  font-weight: 100;
  color: #415650;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 590px;
  margin-top: 30px;
}

.hero-metrics div {
  border-left: 3px solid var(--brand);
  padding-left: 14px;
}

.hero-metrics div:nth-child(2) {
  border-color: var(--accent);
}

.hero-metrics div:nth-child(3) {
  border-color: var(--coral);
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}

.hero-metrics div > span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 150;
}

.hero-metrics [data-counter] {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 200;
  cursor: pointer;
  padding: 11px 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button.primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(16, 132, 106, 0.25);
}

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

.button.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--brand-dark);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(12, 42, 34, 0.08);
}

.button.light {
  background: #ffb700;
  color: #000;
}

.button.small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}

.hero-media {
  position: relative;
  animation: float-in 820ms ease 120ms both;
}

.hero-media-imagen {
  border-radius: 20px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 14% 2% 4% 12%;
  z-index: -1;
  border-radius: 42% 58% 46% 54%;
  background: #dff2ec;
}

.hero-media img {
  width: 100%;
  filter: drop-shadow(0 20px 34px rgba(7, 63, 56, 0.16));
  animation: soft-float 6s ease-in-out infinite;
}

.floating-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-dark);
  box-shadow: 0 16px 38px rgba(7, 63, 56, 0.14);
  font-size: 14px;
  font-weight: 850;
  padding: 8px 12px;
  backdrop-filter: blur(10px);
  animation: label-drift 5.5s ease-in-out infinite;
}

.label-one {
  left: 6%;
  top: 18%;
}

.label-two {
  right: 6%;
  top: 34%;
  animation-delay: 700ms;
}

.label-three {
  left: 24%;
  bottom: 9%;
  animation-delay: 1200ms;
}

.trust-strip {
  max-width: var(--max-width);
  margin: 0 auto 26px;
  padding: 0 24px 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.trust-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 42, 34, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 177, 148, 0.28);
  box-shadow: 0 20px 46px rgba(12, 42, 34, 0.1);
}

.trust-card-visual {
  min-height: 150px;
  background:
    radial-gradient(circle at 80% 18%, rgba(240, 184, 63, 0.24), transparent 26%),
    linear-gradient(135deg, #f7fbf8 0%, #e7f5ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.trust-card:nth-child(2) .trust-card-visual {
  background:
    radial-gradient(circle at 18% 22%, rgba(240, 184, 63, 0.25), transparent 26%),
    linear-gradient(135deg, #fffaf0 0%, #f3fbf7 100%);
}

.trust-card-accent .trust-card-visual {
  background:
    radial-gradient(circle at 82% 28%, rgba(49, 177, 148, 0.2), transparent 28%),
    linear-gradient(135deg, #eef6ff 0%, #f7fbf8 100%);
}

.trust-card-visual img {
  width: 100%;
  object-fit: contain;
  border-radius: 20px 20px 0px 0px;
}

.trust-card-copy {
  padding: 22px;
}

.trust-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.18;
}

.trust-strip span {
  display: block;
  color: var(--muted);
}

.andalucia-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  padding-top: 58px;
  padding-bottom: 58px;
}

.andalucia-copy {
  max-width: 420px;
}

.andalucia-copy h2 {
  font-size: 34px;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.coverage-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 8px 12px;
  box-shadow: 0 10px 28px rgba(12, 42, 34, 0.06);
}

.andalucia-map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 184, 63, 0.22), transparent 28%),
    linear-gradient(135deg, #f7fbf8 0%, #e4f3ee 100%);
  box-shadow: var(--shadow);
  padding: 28px;
}

.andalucia-map {
  position: relative;
  margin: 0;
  min-height: 390px;
}

.andalucia-map svg {
  width: 100%;
  min-height: 340px;
  overflow: visible;
}

.map-shadow {
  fill: rgba(6, 63, 56, 0.1);
  transform: translateY(12px);
}

.map-shape {
  fill: #ffffff;
  stroke: #31B194;
  stroke-width: 5;
  stroke-linejoin: round;
}

.map-line {
  fill: none;
  stroke: #dce7e1;
  stroke-width: 3;
  stroke-linecap: round;
}

.map-coast {
  fill: none;
  stroke: #f0b83f;
  stroke-width: 6;
  stroke-linecap: round;
}

.map-pins {
  position: absolute;
  inset: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.map-pins li {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.pin-dot {
  --pulse-rgb: 16, 132, 106;
  position: relative;
  display: inline-flex;
  width: 16px;
  height: 16px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(16, 132, 106, 0.3), 0 8px 18px rgba(6, 63, 56, 0.22);
  animation: map-pulse 2.2s ease-out infinite;
  animation-delay: var(--delay);
  flex: 0 0 auto;
}

.pin-dot::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(16, 132, 106, 0.26);
  border-radius: 50%;
  animation: map-ring 2.2s ease-out infinite;
  animation-delay: var(--delay);
}

.pin-label {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(7, 63, 56, 0.12);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  padding: 8px 10px;
  backdrop-filter: blur(10px);
}

.showcase {
  max-width: var(--max-width);
  margin: 24px auto 0;
  padding: 56px 24px 76px;
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  gap: 38px;
}

.showcase-copy {
  max-width: 420px;
}

.showcase-copy h2 {
  font-size: 34px;
}

.showcase-controls {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}

.showcase-dot {
  width: 42px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #cbd9d3;
  cursor: pointer;
  padding: 0;
  transition: width 220ms ease, background 220ms ease, transform 220ms ease;
}

.showcase-dot:hover,
.showcase-dot:focus-visible {
  transform: translateY(-1px);
}

.showcase-dot.is-active {
  width: 64px;
  background: var(--brand);
}

.showcase-stage {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eef7f3;
  box-shadow: var(--shadow);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 520ms ease, transform 760ms ease;
  pointer-events: none;
}

.showcase-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: contain;
  padding: 34px 34px 18px;
}

.showcase-caption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  padding: 22px 26px 26px;
  background: rgba(6, 63, 56, 0.94);
  color: var(--white);
}

.showcase-caption span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #b3f0df;
  font-weight: 850;
}

.showcase-caption h3 {
  margin-bottom: 6px;
  color: var(--white);
}

.showcase-caption p {
  margin-bottom: 0;
  color: #d7ece6;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 76px 24px;
}

.section-two-column-ini {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0px 24px 0px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 42px;
  align-items: start;
}

.section.muted {
  max-width: none;
  background: var(--paper);
}

.section.muted > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

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

.section-heading p:not(.eyebrow) {
  max-width: 690px;
}

.feature-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.product-card,
.contact-card,
.highlight-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(12, 42, 34, 0.07);
}

.feature-card {
  position: relative;
  min-height: auto;
  padding: 28px;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand);
  border-radius: var(--radius) var(--radius) 0 0;
}

.feature-card:nth-child(2)::before {
  background: var(--accent);
}

.feature-card:nth-child(3)::before {
  background: var(--coral);
}

.feature-card img {
  margin-bottom: 22px;
}

.feature-card p {
  margin-bottom: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-weight: 400;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(3px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1fr);
  align-items: start;
  gap: 42px;
}

.sector-list,
.client-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sector-list span,
.client-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #304740;
  font-weight: 750;
  padding: 9px 13px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 230px;
  border-top: 3px solid var(--brand);
  padding: 24px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.process-list li:nth-child(2) {
  border-color: var(--accent);
}

.process-list li:nth-child(3) {
  border-color: var(--coral);
}

.process-list span,
.timeline span,
.value-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 450;
}

.cta-band {
  padding: 34px;
  width: 1000px;
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--white);
  font-size: 30px;
}

.cta-band .eyebrow {
  color: #98e2d0;
}

.page-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 46px;
}

.page-hero.slim,
.page-hero.contact-hero {
  display: block;
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: 19px;
}

.page-hero img {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(7, 63, 56, 0.13));
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 42px;
  align-items: start;
}

.highlight-panel,
.contact-card {
  padding: 28px;
}

.check-list,
.document-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.document-list li {
  position: relative;
  padding-left: 30px;
  margin-top: 14px;
  color: #425850;
}

.check-list li::before,
.document-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: inset 0 0 0 4px var(--brand-soft);
}

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

.client-grid span {
  min-height: 54px;
}

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

.values-grid article {
  border-left: 4px solid var(--brand);
  padding: 8px 0 8px 22px;
}

.values-grid article:nth-child(2) {
  border-color: var(--accent);
}

.values-grid article:nth-child(3) {
  border-color: var(--coral);
}

.values-grid h2 {
  font-size: 24px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.document-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

.document-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px 24px 24px;
}

.catalog-section {
  padding-top: 58px;
}

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

.product-grid.two {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  max-width: 760px;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #f0f5f1;
}

.product-card h3 {
  margin: 20px 20px 4px;
}

.product-card p {
  margin: 0 20px 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 5px 24px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.contact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list dt {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  color: var(--ink);
}

.contact-list a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  color: #354b45;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd9d3;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(16, 132, 106, 0.13);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--brand-dark);
  font-weight: 760;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 26px;
}

.site-footer {
  margin-top: 40px;
  background: var(--brand-dark);
  color: var(--white);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.1fr);
  gap: 30px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p,
.footer-bottom,
.site-footer a {
  color: #ffffff;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 24px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: #0c352f;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(12, 42, 34, 0.28);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner p {
  margin: 0;
  color: #e6f5f0;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-banner a {
  color: #b3f0df;
}

.has-reveal .reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.has-reveal .feature-card:nth-child(2),
.has-reveal .process-list li:nth-child(2),
.has-reveal .trust-card:nth-child(2) {
  transition-delay: 90ms;
}

.has-reveal .feature-card:nth-child(3),
.has-reveal .process-list li:nth-child(3),
.has-reveal .trust-card:nth-child(3) {
  transition-delay: 180ms;
}

.has-reveal .process-list li:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes map-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--pulse-rgb), 0.42), 0 8px 18px rgba(6, 63, 56, 0.22);
  }
  70%,
  100% {
    box-shadow: 0 0 0 16px rgba(var(--pulse-rgb), 0), 0 8px 18px rgba(6, 63, 56, 0.22);
  }
}

@keyframes map-ring {
  0% {
    opacity: 0.7;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes label-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 13px 14px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero,
  .page-hero,
  .two-column,
  .document-section,
  .contact-layout,
  .split-section,
  .andalucia-section,
  .showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .showcase {
    padding-top: 42px;
  }

  .showcase-copy {
    max-width: 700px;
  }

  .andalucia-copy {
    max-width: 700px;
  }

  .trust-strip,
  .feature-grid.three,
  .process-list,
  .timeline,
  .values-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 19px;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    height: 45px;
  }

  .brand small {
    max-width: 170px;
  }

  .hero,
  .page-hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 36px;
    gap: 32px;
  }

  .floating-label {
    display: none;
  }

  .hero-lead,
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,

  .trust-strip {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-grid.three,
  .process-list,
  .timeline,
  .values-grid,
  .product-grid,
  .product-grid.two,
  .client-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .andalucia-section {
    padding-top: 44px;
  }

  .andalucia-copy h2 {
    font-size: 26px;
  }

  .andalucia-map-card {
    padding: 18px;
  }

  .andalucia-map {
    min-height: 350px;
  }

  .andalucia-map svg {
    min-height: 310px;
  }

  .map-pins li {
    flex-direction: column;
    gap: 5px;
  }

  .pin-label {
    font-size: 11px;
    padding: 6px 7px;
  }

  .showcase {
    padding: 34px 16px 56px;
  }

  .showcase-copy h2 {
    font-size: 26px;
  }

  .showcase-stage {
    min-height: 520px;
  }

  .showcase-slide img {
    min-height: 280px;
    padding: 18px;
  }

  .showcase-caption {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .showcase-caption span {
    grid-row: auto;
    margin-bottom: 12px;
  }

  .feature-card,
  .contact-form,
  .contact-card,
  .highlight-panel {
    padding: 22px;
  }

  .product-card img {
    height: 190px;
  }

  .cta-band {
    margin-left: 16px;
    margin-right: 16px;
    padding: 26px;
    width: auto;
  }

  .cta-band h2 {
    font-size: 24px;
  }

  .footer-inner,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner div {
    justify-content: space-between;
  }

  .section-two-column-ini{

    grid-template-columns: minmax(300px, 410px);
  }

  .coverage-layout h1{
    padding-left: 15px;
  }
}

@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;
  }

  .has-reveal .reveal-item {
    opacity: 1;
    transform: none;
  }
}

.coverage-section{
  position: relative;
  overflow: hidden;

  padding: 50px 32px;

  background:
    radial-gradient(circle at top left,
      rgba(22,163,74,.10),
      transparent 32%),
    linear-gradient(180deg,
      #ffffff 0%,
      #f8fafc 100%);

  border: 1px solid rgba(15,23,42,.06);
}

.coverage-section::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      135deg,
      transparent 0%,
      rgba(255,255,255,.5) 100%
    );

  pointer-events:none;
}

.coverage-header{
  position: relative;
  z-index: 2;

  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.coverage-header h2{
  margin-bottom: 22px;

  font-size: 38px;
  line-height: 1.05;
  letter-spacing: 0;

  color: #0f172a;
}

.coverage-description{
  font-size: 1.08rem;
  line-height: 1.8;

  color: #475569;
}

.coverage-content{
  position: relative;
  z-index: 2;

  max-width: 1100px;
  margin: 70px auto 0;
}

.coverage-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;

  margin-bottom: 42px;
}

.stat-card{
  padding: 34px 28px;

  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(15,23,42,.06);
  border-radius: 24px;

  text-align: center;

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.stat-card:hover{
  transform: translateY(-4px);

  border-color: rgba(22,163,74,.22);

  box-shadow:
    0 10px 30px rgba(15,23,42,.08);
}

.stat-card strong{
  display:block;

  margin-bottom: 10px;

  font-size: 42px;
  line-height: 1;

  color: #31B194;
}

.stat-card span{
  font-size: .98rem;
  color: #475569;
}

.coverage-provinces{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 14px;
}

.coverage-provinces span{
  padding: 14px 20px;

  border-radius: 999px;

  background: #ffffff;

  border: 1px solid rgba(15,23,42,.08);

  font-weight: 600;
  font-size: .95rem;

  color: #0f172a;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.coverage-provinces span:hover{
  transform: translateY(-2px);

  border-color: #31B194;

  background: #f0fdf4;
}

@media (max-width: 860px){

  .coverage-section{
    padding: 80px 22px;
    border-radius: 24px;
  }

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

  .coverage-description{
    font-size: 1rem;
  }
}

.coverage-section {
  position: relative;
  overflow: hidden;
  max-width: none;
  padding: 10px 24px 12px;
  border-radius: 0;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

.coverage-section::before {
  content: "";
  position: absolute;
  inset: 44px 0 58px;
  z-index: 0;
  background:
    radial-gradient(ellipse at 78% 52%, rgba(49, 177, 148, 0.13) 0%, rgba(49, 177, 148, 0.065) 34%, rgba(49, 177, 148, 0) 68%),
    radial-gradient(ellipse at 16% 28%, rgba(240, 184, 63, 0.045) 0%, rgba(240, 184, 63, 0) 56%);
  pointer-events: none;
}

.coverage-header h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: 0;
}

.coverage-description {
  max-width: 720px;
  margin-left: 0;
  margin-right: 0;
  color: var(--muted);
}

.coverage-header {
  max-width: var(--max-width);
  text-align: left;
}

.coverage-layout {
  position: relative;
  z-index: 2;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  max-width: 1400px;
}

.coverage-layout-1 {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}



.coverage-copy-panel {
  border: 0;
  border-left: 4px solid #31B194;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 4px 0 4px 24px;
  backdrop-filter: none;
}

.coverage-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 400;
  padding: 7px 11px;
}

.coverage-copy-panel h3 {
  font-size: 24px;
  line-height: 1.18;
}

.coverage-copy-panel p {
  margin-bottom: 0;
}

.coverage-map-panel {
  position: relative;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.coverage-map-panel::before {
  display: none;
}

.coverage-map-image {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  filter: none;
}

.province-points {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 0;
  margin: 0;
  list-style: none;
}

.province-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
}

.province-pulse {
  --pulse-rgb: 255, 255, 255;
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid #063f38;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(6, 63, 56, 0.26);
  animation: map-pulse 2.2s ease-out infinite;
  animation-delay: var(--delay);
}

.province-pulse::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  animation: map-ring 2.2s ease-out infinite;
  animation-delay: var(--delay);
}

.province-name {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(7, 63, 56, 0.12);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  padding: 7px 9px;
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.province-point:hover .province-name,
.province-point:focus-within .province-name {
  opacity: 1;
  transform: translateY(-50%) translateX(2px);
}

@media (max-width: 860px) {
  .coverage-section {
    margin: 18px 0 58px;
    padding: 56px 16px;
    border-radius: 0;
  }

  .coverage-header h2 {
    font-size: 30px;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .coverage-copy-panel {
    padding: 22px;
  }

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

  .province-pulse {
    width: 15px;
    height: 15px;
  }

  .province-name {
    display: none;
  }
}



.services-section{
  position: relative;
  overflow: hidden;

  padding: 80px 24px;
  border-radius: 28px;

  background:
    linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);

  border: 1px solid rgba(15,23,42,.06);
  isolation: isolate;
}

.services-bg{
  position:absolute;
  inset:0;

  background:
    radial-gradient(circle at top left,
    rgba(34,197,94,.06),
    transparent 28%),
    radial-gradient(circle at bottom right,
    rgba(14,165,233,.06),
    transparent 30%);

  z-index:0;
}

.services-header{
  position: relative;
  z-index: 2;

  max-width: 700px;
  margin: 0 auto 50px;

  text-align:center;
}

.services-eyebrow{
  margin-bottom: 12px;

  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;

  color:#16a34a;
}

.services-header h2{
  margin-bottom: 16px;

  font-size: 42px;
  line-height: 1.1;

  color:#0f172a;
}

.services-description{
  font-size: 1rem;
  line-height: 1.7;
  color:#64748b;
}

.services-grid{
  position: relative;
  z-index: 2;

  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:20px;

  max-width: 1100px;
  margin:0 auto;
}

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

  background: rgba(255,255,255,.86);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(15,23,42,.06);

  transition: .25s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15,23,42,.07);
}

.service-card.featured{
  background:
    linear-gradient(
      135deg,
      rgba(22,163,74,.05),
      rgba(255,255,255,.95)
    );
}

.service-icon{
  width:56px;
  height:56px;

  margin-bottom:18px;

  border-radius:16px;

  font-size:1.5rem;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    linear-gradient(
      135deg,
      #dcfce7,
      #ecfeff
    );
}

.service-tag{
  display:inline-block;

  margin-bottom:12px;
  padding:6px 12px;

  font-size:.72rem;
  font-weight:700;

  border-radius:999px;

  background:rgba(22,163,74,.1);
  color:#15803d;
}

.service-card h3{
  margin-bottom:12px;

  font-size:1.25rem;
  line-height:1.25;

  color:#0f172a;
}

.service-card p{
  margin-bottom:18px;

  font-size:.95rem;
  line-height:1.6;

  color:#64748b;
}

.service-card ul{
  margin:0;
  padding:0;
  list-style:none;

  display:flex;
  flex-direction:column;
  gap:10px;
}

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

  font-size:.9rem;
  color:#334155;
}

.service-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;

  width:7px;
  height:7px;

  border-radius:50%;
  background:#16a34a;
}

@media (max-width: 900px){
  .services-section{
    padding: 70px 18px;
  }

  .services-header h2{
    font-size: 32px;
  }

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

  .service-card{
    padding:24px;
  }
}

.section.process-section{
  padding: 0px 24px 5px 24px;
  max-width: 1400px;
}


.services-checks{
  display:grid;
  gap:1rem;
  margin:1rem 0 2rem;
}

.form-status{
  margin-top:1.5rem;
  padding:1rem;
  border-radius:12px;
  background:#eef7f1;
  color:#14532d;
}


.form-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 22px;
  background: #fff;
}

.form-section legend {
  padding: 0 10px;
  color: var(--brand-dark);
  font-size: 16px;
}

.form-section .form-grid {
  margin-top: 14px;
}

.sectors-band {
  padding-top: 54px;
  padding-bottom: 54px;

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbf9 100%
    );
}

.sectors-band-copy {
  max-width: 560px;
}

.sectors-band-copy h2 {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.15;
}

.sectors-band-copy p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--muted);
}

.sectors-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sectors-tags span {
  display: inline-flex;
  align-items: center;

  min-height: 40px;
  padding: 10px 14px;

  border-radius: 999px;

  background: rgba(255,255,255,.9);

  border: 1px solid rgba(12,42,34,.08);

  color: #304740;

  font-size: 14px;
  font-weight: 500;

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.sectors-tags span:hover {
  transform: translateY(-2px);

  border-color: rgba(49,177,148,.35);

  box-shadow:
    0 10px 24px rgba(12,42,34,.06);
}

@media (max-width: 980px) {
  .sectors-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sectors-band-copy h2 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .sectors-band {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .sectors-tags {
    gap: 10px;
  }

  .sectors-tags span {
    font-size: 13px;
    padding: 9px 12px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 58px;
  padding: 0 18px;

  border-radius: 999px;

  background: #25D366;
  color: #fff;

  box-shadow:
    0 12px 30px rgba(37, 211, 102, .28);

  font-size: 15px;
  font-weight: 600;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);

  background: #1ebe5d;

  box-shadow:
    0 18px 38px rgba(37, 211, 102, .34);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;

    min-height: 54px;
    padding: 0 16px;
  }

  .whatsapp-float span {
    display: none;
  }
}

.site-footer{
  margin-top: 80px;

  background:
    linear-gradient(
      180deg,
      #13312b 0%,
      #0f2722 100%
    );

  color:#fff;
}

.footer-inner{
  max-width: var(--max-width);
  margin:0 auto;

  padding: 64px 24px 42px;

  display:grid;
  grid-template-columns: minmax(280px,.95fr) minmax(420px,1fr);
  gap: 70px;
}

.footer-company{
  max-width: 420px;
}

.footer-logo{
  display:inline-flex;
  margin-bottom: 22px;
}

.footer-logo img{
  width:auto;
  height:58px;
}

.footer-description{
  margin-bottom: 28px;

  color: rgba(255,255,255,.78);

  line-height:1.8;
}

.footer-contact{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-contact a,
.footer-contact span{
  display:flex;
  align-items:flex-start;
  gap:12px;

  color: rgba(255,255,255,.84);

  font-size:15px;
  line-height:1.6;
}

.footer-contact i{
  margin-top:4px;
}

.footer-links{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:40px;
}

.footer-links h3{
  margin-bottom:18px;

  font-size:15px;
  font-weight:600;

  color:#ffffff;
}

.footer-links nav{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-links a{
  color: rgba(255,255,255,.72);

  transition:
    color .2s ease,
    transform .2s ease;
}

.footer-links a:hover{
  color:#ffffff;
  transform:translateX(2px);
}

.footer-bottom{
  max-width: var(--max-width);
  margin:0 auto;

  padding: 22px 24px 28px;

  border-top:1px solid rgba(255,255,255,.08);

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  color: rgba(255,255,255,.55);

  font-size:14px;
}

@media (max-width: 980px){

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

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

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

@media (max-width: 640px){

  .site-footer{
    margin-top:60px;
  }

  .footer-inner{
    padding: 54px 16px 34px;
  }

  .footer-links{
    grid-template-columns:1fr;
    gap:32px;
  }

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


.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;

  border: 0;
  background: transparent;
  cursor: pointer;

  border-radius: var(--radius);
  color: #31433e;
  font-size: 15px;
  font-weight: 200;
  padding: 10px 12px;

  transition:
    background 180ms ease,
    color 180ms ease;
}

.dropdown-toggle::after {
  font-size: 12px;
}

.dropdown-toggle:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;

  min-width: 240px;

  display: flex;
  flex-direction: column;
  gap: 4px;

  padding: 10px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
  box-shadow: var(--shadow);

  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);

  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;

  z-index: 20;
}

.dropdown-menu a {
  width: 100%;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 980px) {

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    display: none;
    position: static;
    margin-top: 6px;
    box-shadow: none;
    border: 1px solid var(--line);
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex;
  }
}


.imgcont{
  border-radius: 20px;
  height: auto;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(12, 42, 34, 0.07);
}

.sectors-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sector-item {
  position: relative;

  min-height: 150px;

  padding: 24px;

  border: 1px solid var(--line);
  border-radius: 0px 0px 10px 10px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbf9 100%
    );

  box-shadow:
    0 12px 30px rgba(12, 42, 34, 0.05);

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.sector-item:hover {
  transform: translateY(-4px);

  border-color: rgba(49, 177, 148, 0.28);

  box-shadow:
    0 20px 42px rgba(12, 42, 34, 0.10);
}

.sector-item::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 4px;

  border-radius: var(--radius) var(--radius) 0 0;

  background: var(--brand);
}

.sector-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  margin-bottom: 22px;

  border-radius: 14px;

  background: var(--brand-soft);

  color: var(--brand-dark);
}

.sector-item h3 {
  margin: 0;

  font-size: 18px;
  line-height: 1.35;

  color: #304740;
}

@media (max-width: 980px) {
  .sectors-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sectors-cards {
    grid-template-columns: 1fr;
  }

  .sector-item {
    min-height: auto;
  }
}

/* =========================
   GRID URNAS
========================= */

.urnas-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  margin-top:3rem;
}

.urna-card{
  background:#fff;
  border:1px solid #e7e7e7;
  border-radius:22px;
  overflow:hidden;
  transition:all .25s ease;
  box-shadow:0 8px 30px rgba(0,0,0,.04);
}

.urna-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.urna-image{
  aspect-ratio:1/1;
  overflow:hidden;
  background:#f8f8f8;
}

.urna-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.urna-card:hover img{
  transform:scale(1.04);
}

.urna-content{
  padding:1.4rem;
}

.urna-content h3{
  margin-bottom:1rem;
  font-size:1.15rem;
}

.urna-details{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:.65rem;
}

.urna-details li{
  color:#5f5f5f;
  font-size:.95rem;
  line-height:1.5;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){

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

}

@media (max-width:640px){

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

}

/* ===== SAGA 2026 Upgrade ===== */
:root{
 --radius:20px;
 --shadow:0 30px 80px rgba(0,0,0,.12);
}

body{
 background:
 radial-gradient(circle at top right, rgba(49,177,148,.12), transparent 30%),
 radial-gradient(circle at top left, rgba(49,177,148,.08), transparent 25%),
 #ffffff;
}

.site-header{
 background:rgba(255,255,255,.75);
 backdrop-filter:blur(24px);
}

.hero,.hero-section,header.hero{
 position:relative;
 overflow:hidden;
}

section, .card, .feature-card, .service-card{
 border-radius: 5px;
}

.card,.feature-card,.service-card{
 background:rgba(255,255,255,.7);
 backdrop-filter:blur(20px);
 transition:.35s ease;
}

.card:hover,.feature-card:hover,.service-card:hover{
 transform:translateY(-6px);
}

h1{
 font-size:clamp(3rem,6vw,5rem)!important;
 line-height:.95;
 letter-spacing:-.04em;
}

.btn,.button,.nav-cta{
 border-radius:999px!important;
}

section{
 scroll-margin-top:120px;
}


.cta-band-pre{
max-width: 100%;
align-content: center;
align-items: center;
 height: 250px;
    background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../img/band-cont.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
margin-bottom: 75px;
}

.cta-band-pre-empresa{
max-width: 100%;
align-content: center;
align-items: center;
 height: 250px;
    background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../img/card-atencion-cercana.png');
    background-repeat: no-repeat;
    background-position: center 25%;
    background-size: cover;
margin-bottom: 75px;
}

.cta-band-pre-pr{
max-width: 100%;
align-content: center;
align-items: center;
 height: 250px;
    background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../img/proteccion-radiologica.png');
    background-repeat: no-repeat;
    background-position: center 25%;
    background-size: cover;
margin-bottom: 75px;
}

.cta-band-pre-pd{
max-width: 100%;
align-content: center;
align-items: center;
 height: 250px;
    background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../img/proteccion-datos.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
margin-bottom: 75px;
}

.cta-band-pre-prl{
max-width: 100%;
align-content: center;
align-items: center;
 height: 250px;
    background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../img/prevencion-riesgos.png');
    background-repeat: no-repeat;
    background-position: center 25%;
    background-size: cover;
margin-bottom: 75px;
}

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

.colaboraciones {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 75px;
}

.item {
    width: 350px;              /* mismo ancho para ambas */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.item img {
    height: 150px;
    object-fit: contain;
}

.item p {
    margin: 10px 0 3px;
    min-height: 60px;          /* reserva espacio para alinear */
    display: flex;
    align-items: center;
    justify-content: center;
}


/* carrusel clientes */
.clientes {
    padding: 60px 0;
    text-align: center;
}

.clientes h2 {
    margin-bottom: 40px;
}

.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.slide-track img {
    height: 80px;
    width: auto;
    margin: 0 40px;
    filter: grayscale(100%);
    opacity: .7;
    transition: .3s ease;
}

.slide-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Desvanecido lateral opcional */
.slider::before,
.slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.slider::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}
