:root {
  --blue: #073fc8;
  --blue-soft: #0b55f0;
  --blue-dark: #061942;

  --red: #e30613;
  --red-dark: #a8000b;

  --ink: #07111f;
  --ink-2: #101b2e;
  --white: #ffffff;
  --paper: #f5f7fb;
  --muted: #667085;

  --line: rgba(7, 17, 31, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);

  --shadow: 0 26px 70px rgba(7, 17, 31, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* TOPBAR */

.topbar {
  display: none;
}

.topbar a {
  color: var(--white);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 700;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(7, 17, 31, 0.06);
}

.nav-content {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text strong {
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.nav-links {
  margin-left: auto;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #25324a;
  font-weight: 850;
  font-size: 15px;
  position: relative;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  transform: translateX(-50%);
  transition: 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-whatsapp {
  border: 0;
  cursor: pointer;
  color: var(--white);
  font-weight: 950;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 34px rgba(7, 63, 200, 0.24);
  transition: 0.22s ease;
}

.nav-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--blue-soft), var(--blue));
}

.menu-btn {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
  padding: 10px;
}

.menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--blue-dark);
  border-radius: 999px;
  margin: 5px 0;
  transition: 0.22s ease;
}

/* HERO */

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  background-image: url("assets/hero-security.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  filter: grayscale(100%);
  transform: scale(1.03);

  transition:
    filter 1.45s ease,
    transform 1.45s ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(7, 17, 31, 0.98) 0%,
      rgba(6, 25, 66, 0.86) 42%,
      rgba(7, 63, 200, 0.34) 100%
    ),
    radial-gradient(circle at 75% 20%, rgba(227, 6, 19, 0.22), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(7, 63, 200, 0.25), transparent 34%);

  pointer-events: none;
}

.hero.is-color::before {
  filter: grayscale(0%);
  transform: scale(1.06);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
  padding-bottom: 58px;
  margin-left: 80px;
}

.hero-curve {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -100px;
  height: 185px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
  z-index: 1;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 16px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  margin-bottom: 22px;
  font-weight: 900;
}

.hero p,
.page-hero p {
  max-width: 730px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}



/* BUTTONS */

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 850;
  transition: 0.22s ease;
}

.btn.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(7, 63, 200, 0.28);
}

.btn.primary:hover {
  background: var(--blue-soft);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
}

/* GENERAL */

.section {
  padding: 76px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.image-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.12);
  border: 8px solid var(--white);
  background: var(--white);
}

.image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-weight: 850;
}

p {
  color: var(--muted);
  margin-bottom: 18px;
}

.check-list {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin-bottom: 12px;
  font-weight: 850;
  color: #23314a;
  display: flex;
  gap: 10px;
}

.check-list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 950;
}

/* SERVICES */

.services-preview {
  background:
    linear-gradient(135deg, rgba(7, 63, 200, 0.05), transparent 42%),
    var(--paper);
}

.section-title {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-title p {
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: #111111;
  color: var(--white);
  padding: 28px 26px;
  border-radius: 6px;
  min-height: 220px;
  box-shadow: 0 18px 38px rgba(7, 17, 31, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(227, 6, 19, 0.52);
}

.service-card .icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 850;
}

.service-card p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* DARK SECTION */

.dark-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(227, 6, 19, 0.16), transparent 32%),
    linear-gradient(135deg, var(--ink), var(--blue-dark));
  color: var(--white);
}

.dark-section h2 {
  color: var(--white);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.74);
}

.resource-box {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(18px);
}

.resource-box ul {
  list-style: none;
}

.resource-box li {
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 850;
}

.resource-box li:last-child {
  border-bottom: 0;
}

/* INNER PAGES */

.page-hero {
  padding: 82px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(227, 6, 19, 0.2), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--blue-dark));
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: start;
}

.contact-form,
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 20px;
}

label,
.form-group {
  display: grid;
  gap: 9px;
  font-weight: 900;
  color: var(--blue-dark);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 17, 31, 0.14);
  background: #f8fafc;
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
  color: var(--ink);
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 63, 200, 0.11);
}

textarea {
  resize: vertical;
}

.select-box {
  position: relative;
}

.select-trigger {
  width: 100%;
  border: 1px solid rgba(7, 17, 31, 0.14);
  background: #f8fafc;
  color: var(--ink);
  border-radius: 14px;
  padding: 15px 16px;
  text-align: left;
  cursor: pointer;
  font-weight: 850;
}

.select-options {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
  border: 1px solid var(--line);
}

.select-options.active {
  display: block;
}

.select-options button {
  width: 100%;
  border: 0;
  background: var(--white);
  padding: 15px 16px;
  text-align: left;
  cursor: pointer;
  font-weight: 850;
  color: #26344d;
}

.select-options button:hover {
  background: rgba(7, 63, 200, 0.08);
  color: var(--blue);
}

.contact-card h2 {
  font-size: 34px;
}

.contact-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* FOOTER */

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 34px 0;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 4px 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-link {
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;

  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;
  background: #25d366;

  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);

  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 620px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .nav-content {
    min-height: 78px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text span {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-whatsapp {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 4%;
    right: 4%;
    margin-left: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(7, 63, 200, 0.08);
  }

  .nav-links a::after {
    display: none;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
  min-height: 560px;
}

.hero::before {
  background-position: center;
}
}

@media (max-width: 620px) {
  .topbar {
    display: none;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .hero {
  min-height: 540px;
}

.hero-content {
  margin-left: 0;
}

  .hero-actions {
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .image-card img {
    height: 320px;
  }

  .contact-form,
  .contact-card {
    padding: 24px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

.drone-video-card {
  overflow: hidden;
  border-radius: 0;
}

.drone-video {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;

  filter: grayscale(100%);
  transform: scale(1);

  transition:
    filter 1.2s ease,
    transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Imagen en blanco y negro por defecto */
.operation-tools-image {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;

  filter: grayscale(100%);
  transform: scale(1);

  transition:
    filter 1.2s ease,
    transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.operation-section:has(#operationMeetingBtn:hover) .operation-tools-image {
  filter: grayscale(0%);
  transform: scale(1.035);
}

.operation-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  gap: 72px;
}

.operation-image-card {
  width: 100%;
  max-width: 480px;
  justify-self: end;
}


@media (max-width: 768px) {
  .operation-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .operation-image-card {
    max-width: 100%;
    justify-self: stretch;
  }
}

.hover-zone:has(.hover-trigger:hover) .hover-image {
  filter: grayscale(0%);
  transform: scale(1.035);
}

.featured-services {
  grid-template-columns: repeat(3, 1fr);
}

.trusted-section {
  padding: 72px 0;
  background: #ffffff;
  overflow: hidden;
}

.trusted-title {
  text-align: center;
  margin-bottom: 34px;
}

.trusted-title h2 {
  margin-bottom: 0;
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: marqueeMove 28s linear infinite;
}

.brand-track span {
  min-width: 190px;
  height: 74px;
  padding: 0 24px;
  border-radius: 8px;
  background: #f5f7fb;
  border: 1px solid rgba(7, 17, 31, 0.1);
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  letter-spacing: -0.3px;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.06);
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .featured-services {
    grid-template-columns: 1fr;
  }

  .brand-track span {
    min-width: 160px;
    height: 66px;
    font-size: 14px;
  }
}

/* ============================= */
/* SERVICIOS PAGE */
/* ============================= */


.service-detail-section {
  padding: 92px 0;
  background: var(--white);
}

.service-detail-section.alt {
  background:
    linear-gradient(135deg, rgba(7, 63, 200, 0.045), transparent 48%),
    var(--paper);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.service-detail-grid.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.service-detail-image {
  border: 8px solid var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 62px rgba(7, 17, 31, 0.16);
  background: var(--white);
}

.service-detail-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1);
  transition:
    filter 1.2s ease,
    transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-detail-section:hover .service-detail-image img {
  filter: grayscale(0%);
  transform: scale(1.035);
}

.service-detail-content h2 {
  max-width: 650px;
}

.service-detail-content p {
  max-width: 680px;
  font-size: 16px;
}

.airport-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(227, 6, 19, 0.16), transparent 32%),
    linear-gradient(135deg, var(--ink), var(--blue-dark));
  color: var(--white);
}

.airport-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 54px;
  align-items: center;
}

.airport-content h2 {
  color: var(--white);
}

.airport-content p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 780px;
}

.airport-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.airport-list .check-list li {
  color: rgba(255, 255, 255, 0.9);
}

.airport-image {
  border-radius: 8px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
}

.airport-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter 1.2s ease,
    transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.airport-section:hover .airport-image img {
  filter: grayscale(0%);
  transform: scale(1.035);
}

.habilitations-section {
  padding: 88px 0;
  background: var(--white);
}

.habilitations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.habilitation-card {
  min-height: 150px;
  padding: 24px;
  background: #f8fafc;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(7, 17, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blue-dark);
  transition: 0.22s ease;
}

.habilitation-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 63, 200, 0.3);
  box-shadow: 0 22px 46px rgba(7, 17, 31, 0.13);
}

.habilitation-card strong {
  font-size: 16px;
  font-weight: 950;
  line-height: 1.35;
}

.services-final-cta {
  padding: 90px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(227, 6, 19, 0.2), transparent 32%),
    linear-gradient(135deg, var(--ink), var(--blue-dark));
}

.final-cta-box {
  text-align: center;
  max-width: 850px;
}

.final-cta-box h2 {
  color: var(--white);
}

.final-cta-box p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 30px;
}

.final-cta-box .hero-actions {
  justify-content: center;
}

/* Responsive servicios */

@media (max-width: 980px) {
  .service-detail-grid,
  .service-detail-grid.reverse,
  .airport-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-detail-grid.reverse .service-detail-content {
    order: 2;
  }

  .service-detail-grid.reverse .service-detail-image {
    order: 1;
  }

  .airport-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .habilitations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-section {
    padding: 78px 0;
  }
}

@media (max-width: 620px) {
 

  .service-detail-section {
    padding: 66px 0;
  }

  .service-detail-grid,
  .service-detail-grid.reverse {
    gap: 30px;
  }

  .service-detail-image img,
  .airport-image img {
    height: 310px;
  }

  .habilitations-grid {
    grid-template-columns: 1fr;
  }

  .habilitation-card {
    min-height: 120px;
  }

  .airport-section,
  .habilitations-section,
  .services-final-cta {
    padding: 70px 0;
  }
}

.services-page-hero {
  min-height: 560px;
}

.services-page-hero::before {
  background-image: url("assets/hero-security.jpeg");
  background-position: center right;
}

.services-page-hero .hero-content {
  max-width: 760px;
  margin-left: 80px;
  padding-bottom: 58px;
}

.services-page-hero h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  margin-bottom: 22px;
  font-weight: 900;
}

.services-page-hero p {
  max-width: 730px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 34px;
}

@media (max-width: 620px) {
  .services-page-hero .hero-content {
    margin-left: 0;
  }
}

/* ============================= */
/* NOSOTROS PAGE */
/* ============================= */

.nosotros-page-hero {
  min-height: 560px;
}

.nosotros-page-hero::before {
  background-image: url("assets/nosotros-hero.jpeg");
  background-position: center right;
}

.nosotros-page-hero .hero-content {
  max-width: 760px;
  margin-left: 40px;
  padding-bottom: 58px;
}

.nosotros-page-hero h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  margin-bottom: 22px;
  font-weight: 900;
}

.nosotros-page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 34px;
}

@media (max-width: 620px) {
  .nosotros-page-hero .hero-content {
    margin-left: 0;
  }

  .nosotros-page-hero {
    min-height: 540px;
  }

  .nosotros-page-hero::before {
    background-position: center;
  }
}

@media (max-width: 768px) {
  .hero,
  .page-hero {
    min-height: auto;
    padding: 46px 22px 96px;
    overflow: hidden;
  }

  .hero .container,
  .page-hero .container,
  .hero-content,
  .page-hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .hero-eyebrow,
  .section-kicker,
  .page-hero-eyebrow {
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(42px, 12vw, 54px);
    line-height: 0.98;
    letter-spacing: -2px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .hero p,
  .page-hero p {
    font-size: 20px;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-actions,
  .page-hero-actions {
    width: 100%;
    display: grid;
    gap: 16px;
    margin-top: 34px;
  }

  .hero-actions .btn,
  .page-hero-actions .btn,
  .btn {
    width: 100%;
    min-height: 64px;
    font-size: 18px;
    justify-content: center;
  }

  .hero-curve,
  .page-hero-curve {
    height: 70px;
    border-radius: 100% 100% 0 0;
    left: -20%;
    width: 140%;
  }
}

@media (max-width: 420px) {
  .hero,
  .page-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 46px;
  }

  .hero p,
  .page-hero p {
    font-size: 19px;
  }
}

.image-service-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 0;
  border-radius: 16px;
  background: #07111f;
  isolation: isolate;
}

.image-service-card img {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: grayscale(100%);
  transform: scale(1.02);
  transition: filter 0.75s ease, transform 0.75s ease;
}

.image-service-card .service-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.image-service-card .service-content {
  position: relative;
  z-index: 3;

  min-height: 270px;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 32px;
}

.image-service-card h3 {
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
}

.image-service-card p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
}

.image-service-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* MOBILE: apenas entran en pantalla, pasan a color */
@media (max-width: 768px) {
  .image-service-card {
    min-height: 245px;
  }

  .image-service-card .service-content {
    min-height: 245px;
    padding: 26px;
  }

  .image-service-card h3 {
    font-size: 1.45rem;
  }

  .image-service-card p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .image-service-card.is-visible img {
    filter: grayscale(0%);
    transform: scale(1.06);
  }
}

@media (max-width: 768px) {

  .mobile-color {
    filter: grayscale(0%) !important;
  }

}

.habilitaciones-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 46px;
}

.habilitacion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 260px;
  padding: 34px 26px;

  text-align: center;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(7, 17, 31, 0.08);
  box-shadow: 0 22px 55px rgba(7, 17, 31, 0.08);

  transform: scale(1);
  transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}

.habilitacion-card:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(7, 17, 31, 0.14);
}

.habilitacion-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.habilitacion-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.habilitacion-card h3 {
  margin: 0;
  max-width: 260px;

  color: #07111f;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
}

/* MÓVIL */
@media (max-width: 768px) {
  .habilitaciones-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 34px;
  }

  .habilitacion-card {
    min-height: 230px;
    padding: 30px 22px;
  }

  .habilitacion-logo {
    width: 130px;
    height: 130px;
    margin-bottom: 20px;
  }

  .habilitacion-card.mobile-grow {
    transform: scale(1.04);
  }
}
/* Logo Buenos Aires Ciudad */
.habilitacion-card:nth-child(2) .habilitacion-logo img {
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .service-detail-image.mobile-service-visible img,
  .airport-image.mobile-service-visible img {
    filter: grayscale(0%) !important;
    transform: scale(1.06) !important;
  }
}

/* HERO SERVICIOS / NOSOTROS: imagen a color + zoom suave */
.services-page-hero::before,
.nosotros-page-hero::before {
  filter: grayscale(100%);
  transform: scale(1.03);
  transition:
    filter 1.45s ease,
    transform 1.45s ease;
}

/* PC: se activa al apoyar el mouse sobre textos, botones o hero */
.services-page-hero:hover::before,
.nosotros-page-hero:hover::before,
.services-page-hero:has(.page-hero-trigger:hover)::before,
.nosotros-page-hero:has(.page-hero-trigger:hover)::before,
.services-page-hero.is-color::before,
.nosotros-page-hero.is-color::before {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* MÓVIL: apenas aparece el hero, se pone a color y se acerca */
@media (max-width: 768px) {
  .services-page-hero.is-visible::before,
  .nosotros-page-hero.is-visible::before {
    filter: grayscale(0%);
    transform: scale(1.08);
  }
}

.mission-vision-section h2 {
  max-width: 780px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 36px;
}

.mission-vision-grid h3 {
  color: var(--blue-dark);
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.mission-vision-grid p {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* CONTACTO HERO */
.contact-page-hero {
  min-height: 560px;
}

.contact-page-hero::before {
  background-image: url("assets/contacto-hero.jpeg");
  background-position: center right;
  filter: grayscale(100%);
  transform: scale(1.03);
  transition:
    filter 1.45s ease,
    transform 1.45s ease;
}

.contact-page-hero:hover::before,
.contact-page-hero:has(.page-hero-trigger:hover)::before,
.contact-page-hero.is-visible::before {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.contact-page-hero .hero-content {
  max-width: 760px;
  margin-left: 80px;
  padding-bottom: 58px;
}

/* CONTACTO CARD WHATSAPP */
.contact-whatsapp-card {
  position: sticky;
  top: 110px;
}

.contact-whatsapp-card h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.contact-whatsapp-card .btn {
  margin-top: 8px;
}

/* MOBILE CONTACTO */
@media (max-width: 768px) {
  .contact-page-hero {
    min-height: 540px;
  }

  .contact-page-hero::before {
    background-position: center;
  }

  .contact-page-hero .hero-content {
    margin-left: 0;
  }

  .contact-page-hero.is-visible::before {
    filter: grayscale(0%);
    transform: scale(1.08);
  }

  .contact-whatsapp-card {
    position: static;
  }
}

/* CONTACTO: ajuste de formulario y WhatsApp */
.contact-section {
  padding: 88px 0 92px;
}

.contact-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.contact-form,
.contact-card {
  border-radius: 18px;
}

.contact-form {
  padding: 38px;
}

.contact-card {
  padding: 38px;
}

.contact-whatsapp-card {
  position: static !important;
}

.contact-whatsapp-card h2 {
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.contact-whatsapp-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.contact-whatsapp-card .btn {
  min-height: 54px;
  border-radius: 8px;
}

.contact-note {
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea,
.select-trigger {
  border-radius: 10px;
}

.contact-form .btn {
  min-height: 54px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-card {
    padding: 28px;
  }
}

.success-message {
  display: none;

  margin-bottom: 24px;
  padding: 22px 24px;

  border-radius: 14px;

  background: #e9fff0;
  border: 1px solid #5ad57d;

  color: #0d5c26;

  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.success-message strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.success-message p {
  margin: 0;
  color: #0d5c26;
}
