:root {
  --navy: #0a1160;
  --navy-soft: #1c237a;
  --orange: #f7a400;
  --orange-deep: #ef8d00;
  --ink: #1a1a1a;
  --muted: #666;
  --white: #fff;
  --shadow: 0 18px 44px rgba(10, 17, 96, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: #fff;
}

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

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

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

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.topbar-inner,
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-inner {
  position: relative;
  min-height: 36px;
  justify-content: center;
}

.topbar-link {
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.topbar-socials {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
}

.topbar-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  opacity: 0.95;
}

.topbar-socials svg {
  width: 18px;
  height: 18px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 17, 96, 0.08);
}

.navbar-inner {
  min-height: 92px;
  gap: 0;
}

.brand img {
  width: 182px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.main-nav-group {
  display: flex;
  align-items: center;
  gap: 54px;
}

.main-nav a {
  position: relative;
  padding: 8px 0 10px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7, 10, 48, 0.88) 0%, rgba(10, 17, 96, 0.72) 48%, rgba(247, 164, 0, 0.1) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  min-height: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.hero h1,
.section-heading h2,
.copy-card h2,
.service-copy h2 {
  margin: 0 0 18px;
  line-height: 1.02;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
}

.hero p {
  max-width: 640px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.hero-art {
  display: grid;
  gap: 20px;
  justify-items: end;
}

.service-copy,
.copy-card,
.contact-card,
.stat-card,
.feature-card,
.visual-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: radial-gradient(circle at top left, rgba(247, 164, 0, 0.12), transparent 36%), linear-gradient(180deg, #fff 0%, #f7f8fc 100%);
}

.section-dark {
  color: #fff;
  background: linear-gradient(135deg, rgba(10, 17, 96, 0.96), rgba(15, 27, 109, 0.92));
}

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

.section-heading p,
.copy-card p,
.service-copy p,
.contact-card p {
  line-height: 1.8;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.visual-card {
  overflow: hidden;
  background: #fff;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy-card,
.service-copy,
.contact-card {
  padding: 36px;
  background: #fff;
}

.section-dark .copy-card,
.section-dark .contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-grid,
.features-grid,
.stats-grid,
.cards-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.service-grid,
.cards-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card,
.stat-card {
  background: #fff;
  padding: 28px;
  text-align: center;
}

.feature-card img,
.stat-card img {
  margin: 0 auto 18px;
}

.feature-card h3,
.stat-card h3,
.service-copy h3,
.copy-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.banner-strip {
  position: relative;
  padding: 110px 0;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.banner-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 17, 96, 0.9), rgba(10, 17, 96, 0.62));
}

.banner-strip .container {
  position: relative;
  z-index: 1;
}

.banner-strip h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

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

.mini-gallery .visual-card {
  aspect-ratio: 1 / 0.86;
}

.contact-list,
.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li,
.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.contact-card strong {
  color: var(--navy);
}

.map-frame {
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.site-footer {
  color: #fff;
  background: #070c44;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 1.05fr;
  gap: 34px;
  padding: 26px 0 22px;
  align-items: start;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 500;
}

.footer-logo {
  width: 146px;
  margin-top: 18px;
}

.footer-links li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-links a,
.footer-contact-box span,
.footer-contact-box a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a {
  font-size: 13px;
}

.footer-contact-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-box strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 14px;
}

.footer-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  padding: 8px 16px 9px;
  text-align: center;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
}

.media-pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(247, 164, 0, 0.12);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}

body.page-inicio .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
}

body.page-nosotros .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
}

body.page-servicios .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
}

body.page-contactos .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
}

body.page-inicio .navbar {
  position: relative;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}

body.page-nosotros .navbar {
  position: relative;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}

body.page-servicios .navbar {
  position: relative;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}

body.page-contactos .navbar {
  position: relative;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}

body.page-inicio .navbar-inner {
  min-height: 118px;
  gap: 0;
}

body.page-inicio .brand {
  flex: 0 0 auto;
  margin: 0 18px;
}

body.page-nosotros .navbar-inner {
  min-height: 118px;
  gap: 0;
}

body.page-nosotros .brand {
  flex: 0 0 auto;
  margin: 0 18px;
}

body.page-servicios .navbar-inner {
  min-height: 118px;
  gap: 0;
}

body.page-servicios .brand {
  flex: 0 0 auto;
  margin: 0 18px;
}

body.page-contactos .navbar-inner {
  min-height: 118px;
  gap: 0;
}

body.page-contactos .brand {
  flex: 0 0 auto;
  margin: 0 18px;
}

body.page-inicio .main-nav a {
  color: #fff;
}

body.page-nosotros .main-nav a {
  color: #fff;
}

body.page-servicios .main-nav a {
  color: #fff;
}

body.page-contactos .main-nav a {
  color: #fff;
}

body.page-inicio .main-nav a.is-active {
  color: var(--orange);
}

body.page-nosotros .main-nav a.is-active {
  color: var(--orange);
}

body.page-servicios .main-nav a.is-active {
  color: var(--orange);
}

body.page-contactos .main-nav a.is-active {
  color: var(--orange);
}

.home-hero {
  min-height: 780px;
}

.home-hero::before {
  background: linear-gradient(180deg, rgba(12, 17, 70, 0.55), rgba(12, 17, 70, 0.58));
}

.home-hero-slider {
  overflow: hidden;
}

.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 0.95s ease-in-out, transform 1.6s ease-in-out, visibility 0.95s ease-in-out;
  background-size: cover;
  background-position: center;
  will-change: opacity, transform;
}

.home-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.home-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 17, 70, 0.55), rgba(12, 17, 70, 0.58));
}

.home-slide .container {
  position: relative;
  z-index: 1;
}

.home-slide .home-hero-copy {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.home-slide.is-active .home-hero-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.24s;
}

.home-hero-inner {
  min-height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 156px;
  padding-bottom: 98px;
}

.home-hero-copy {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-hero-kicker {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  width: 100%;
}

.hero-divider {
  width: 70px;
  height: 5px;
  margin: 12px auto 20px;
  border-radius: 999px;
  background: #fff;
}

.home-hero h1 {
  margin: 0 auto 12px;
  max-width: 1040px;
  font-size: clamp(4rem, 5.2vw, 4.8rem);
  line-height: 0.98;
  text-align: center;
  width: 100%;
}

.home-hero-lead {
  margin: 0 0 28px;
  font-size: clamp(1.75rem, 2vw, 2.05rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  width: 100%;
}

.home-button {
  min-width: 188px;
  min-height: 52px;
  border-radius: 8px;
  font-size: 16px;
}

.home-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 44px;
  line-height: 1;
  z-index: 2;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.home-slider-arrow:hover {
  color: #fff;
}

.home-slider-arrow.left {
  left: 6px;
}

.home-slider-arrow.right {
  right: 6px;
}

.home-welcome {
  padding: 56px 0 52px;
}

.home-welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.home-welcome-image {
  max-width: 610px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 34px 34px 0 0;
}

.home-welcome-copy {
  max-width: 472px;
}

.home-section-tag {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.home-section-tag::before {
  content: "";
  width: 8px;
  height: 54px;
  background: var(--orange);
}

.home-section-tag small {
  display: block;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.home-section-tag strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.08;
}

.home-welcome-copy p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.8;
}

.services-band {
  position: relative;
  padding: 18px 0 82px;
  background: var(--navy);
  color: #fff;
}

.services-band::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -58px;
  width: 140px;
  height: 96px;
  background: var(--navy);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.services-band-logo {
  position: absolute;
  left: 50%;
  bottom: -2px;
  z-index: 2;
  width: 76px;
  transform: translateX(-50%);
}

.home-services-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 10px;
}

.home-services-header::before {
  content: "";
  width: 7px;
  height: 58px;
  background: #fff;
}

.home-services-header small {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
}

.home-services-header strong {
  display: block;
  margin-top: 4px;
  font-size: 25px;
  line-height: 1;
}

.services-cards-area {
  padding: 86px 0 72px;
  background: #f7f7f7;
}

.home-services-cards {
  display: flex;
  justify-content: center;
  gap: 116px;
}

.home-service-card {
  width: 380px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: transparent;
  box-shadow: none;
}

.home-service-card-media {
  position: relative;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

.home-service-card-media img {
  width: 100%;
  aspect-ratio: 0.73;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.9);
}

.benefits-area {
  padding: 96px 0 106px;
  background: #fff;
}

.home-how-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 44px 8px;
}

.home-how-header::before {
  content: "";
  width: 8px;
  height: 56px;
  background: var(--orange);
}

.home-how-header small {
  display: block;
  color: var(--navy-soft);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}

.home-how-header strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.02;
}

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

.benefit-card-image img {
  width: 100%;
  max-width: 272px;
  margin: 0 auto;
}

.home-cta {
  min-height: 446px;
  padding: 232px 0 66px;
  background-position: center top;
}

.home-cta::before {
  background: linear-gradient(180deg, rgba(10, 17, 96, 0.18), rgba(10, 17, 96, 0.32));
}

.home-cta .container {
  text-align: center;
  transform: translateY(54px);
}

.home-cta-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48px;
  background: var(--navy);
}

.home-cta-top::after {
  display: none;
}

.home-cta-kicker {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.home-cta-kicker::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: #fff;
}

.home-cta-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(3.05rem, 4.35vw, 4.2rem);
  font-weight: 800;
  line-height: 1.04;
}

.home-cta-subtitle {
  margin: 0 0 32px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
}

.home-news {
  padding: 88px 0 110px;
}

.home-news {
  padding: 26px 0 32px;
}

.home-news-spacer {
  height: 26px;
  background: #fff;
}

.home-news-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.home-news-copy {
  display: flex;
  justify-content: flex-start;
}

.home-news-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.home-news-label::before {
  content: "";
  width: 7px;
  height: 46px;
  background: var(--orange);
}

.home-news-label small {
  display: block;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.home-news-label strong {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.04;
}

.home-news-cta {
  display: flex;
  justify-content: flex-end;
}

.home-news-cta img {
  width: 308px;
}

.about-hero {
  min-height: 510px;
}

.about-hero::before {
  background: linear-gradient(180deg, rgba(12, 17, 70, 0.62), rgba(12, 17, 70, 0.52));
}

.about-hero-inner {
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 126px 0 56px;
}

.about-hero-copy {
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-kicker {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 4vw, 4.15rem);
  line-height: 1.05;
}

.about-intro {
  padding: 46px 0 0;
  background: #fff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 1250px;
}

.about-intro-image {
  overflow: hidden;
  max-width: 610px;
  margin-left: auto;
  border-radius: 34px 34px 0 0;
}

.about-intro-image img {
  width: 100%;
}

.about-intro-copy p,
.about-promise-card p {
  margin: 0;
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.8;
}

.about-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.about-label::before {
  content: "";
  width: 8px;
  height: 54px;
  background: var(--orange);
}

.about-label small,
.about-band-label small {
  display: block;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.about-label strong,
.about-band-label strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.08;
}

.about-band {
  position: relative;
  margin-top: 36px;
  padding: 18px 0 82px;
  background: var(--navy);
  color: #fff;
}

.about-band::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -58px;
  width: 170px;
  height: 118px;
  background: var(--navy);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.about-band-logo {
  position: absolute;
  left: 50%;
  bottom: 8px;
  z-index: 2;
  width: 122px;
  transform: translateX(-50%);
}

.about-band-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 10px;
}

.about-band-label::before {
  content: "";
  width: 7px;
  height: 58px;
  background: #fff;
}

.about-band-label-light small,
.about-band-label-light strong {
  color: #fff;
}

.about-band-label-light small {
  font-size: 15px;
}

.about-band-label-light strong {
  font-size: 25px;
}

.about-promise {
  padding: 148px 0 84px;
  background: #fff;
}

.about-promise-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.about-promise-card img {
  width: 132px;
  margin: 0 auto 20px;
}

.about-experience {
  padding: 20px 0 86px;
  background: #fff;
}

.about-experience .about-label,
.about-work .about-label {
  margin-left: 12px;
}

.about-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 820px;
  margin: 0 auto;
}

.about-stat-image img,
.about-reason-image img {
  width: 100%;
}

.about-reasons {
  padding: 138px 0 114px;
  background: #fff;
}

.about-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 96px;
  max-width: 470px;
  margin: 0 auto;
}

.about-work {
  padding: 10px 0 42px;
  background: #fff;
}

.about-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 950px;
  margin: 0 auto;
}

.about-video-card {
  overflow: hidden;
  background: #0b0f50;
}

.about-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  background: #000;
}

.services-hero {
  min-height: 600px;
}

.services-hero::before {
  background: linear-gradient(180deg, rgba(12, 17, 70, 0.62), rgba(12, 17, 70, 0.54));
}

.services-hero-inner {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 136px 0 64px;
}

.services-hero-copy {
  max-width: 860px;
  margin: 0 auto;
}

.services-hero-kicker {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.services-hero h1 {
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(3rem, 4.6vw, 4.4rem);
  line-height: 1.03;
}

.services-hero-lead {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 2.1vw, 2.35rem);
  font-weight: 600;
  text-transform: uppercase;
}

.services-intro {
  padding: 50px 0 58px;
  background: #fff;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  max-width: 1240px;
}

.services-intro-image {
  max-width: 620px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 32px 32px 0 0;
}

.services-intro-image img,
.services-visual-card img {
  width: 100%;
}

.services-intro-copy {
  max-width: 520px;
  text-align: center;
}

.services-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.services-label::before {
  content: "";
  width: 8px;
  height: 54px;
  background: var(--orange);
}

.services-label-right {
  justify-content: center;
}

.services-label small {
  display: block;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.services-label strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.08;
}

.services-intro-copy p,
.services-detail-copy p {
  margin: 0 0 18px;
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.8;
}

.services-detail {
  padding: 36px 0 70px;
  background: #fff;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  max-width: 1180px;
}

.services-detail-grid.reverse .services-visual-wrap {
  order: 1;
}

.services-detail-grid.reverse .services-detail-copy {
  order: 2;
}

.services-detail-copy {
  max-width: 470px;
  text-align: center;
}

.services-visual-wrap {
  position: relative;
  padding-top: 90px;
}

.services-visual-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 170px;
  height: 170px;
  background: var(--navy);
  transform: translateX(-50%) rotate(45deg);
  display: grid;
  place-items: center;
}

.services-visual-divider img {
  width: 98px;
  transform: rotate(-45deg);
}

.services-visual-card {
  max-width: 470px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px 32px 20px 20px;
  box-shadow: 0 18px 42px rgba(10, 17, 96, 0.12);
}

.services-work {
  padding: 26px 0 56px;
  background: #fff;
}

.services-work .services-label {
  margin-left: 12px;
}

.services-work-heading {
  padding: 26px 0 34px;
  background: #fff;
}

.services-work-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-left: 12px;
}

.services-work-label::before {
  content: "";
  width: 8px;
  height: 54px;
  background: var(--orange);
}

.services-work-label small {
  display: block;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.services-work-label strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.08;
}

.services-work-label-centered {
  justify-content: center;
  margin: 0 0 28px;
  text-align: center;
}

.services-showcase {
  padding: 20px 0 48px;
  background: #fff;
}

.services-cta-box {
  position: relative;
  max-width: 980px;
  min-height: 438px;
  margin: 0 auto;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.services-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 96, 0.18), rgba(10, 17, 96, 0.32));
}

.services-cta-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 88px;
  background: var(--navy);
  z-index: 2;
}

.services-cta-notch {
  position: absolute;
  left: 50%;
  top: 58px;
  width: 168px;
  height: 116px;
  background: var(--navy);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  place-items: start center;
  padding-top: 4px;
}

.services-cta-notch img {
  width: 88px;
}

.services-cta-content {
  position: relative;
  z-index: 2;
  min-height: 438px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 122px 24px 52px;
}

.services-cta-kicker {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.services-cta-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(3rem, 4.4vw, 4rem);
  line-height: 1.02;
}

.services-cta-subtitle {
  margin: 0 0 28px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.15;
}

.contact-hero {
  min-height: 600px;
}

.contact-hero::before {
  background: linear-gradient(180deg, rgba(12, 17, 70, 0.62), rgba(12, 17, 70, 0.54));
}

.contact-hero-inner {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 136px 0 64px;
}

.contact-hero-copy {
  max-width: 820px;
  margin: 0 auto;
}

.contact-hero-kicker {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(3rem, 4.6vw, 4.4rem);
  line-height: 1.03;
}

.contact-hero-lead {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 2.1vw, 2.35rem);
  font-weight: 600;
  text-transform: uppercase;
}

.contact-main {
  padding: 40px 0 70px;
  background: #fff;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  max-width: 980px;
}

.contact-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-heading::before {
  content: "";
  width: 8px;
  height: 54px;
  background: var(--orange);
}

.contact-heading small {
  display: block;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-heading strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.08;
}

.contact-card-stack {
  display: grid;
  gap: 16px;
}

.contact-image-card img {
  width: 100%;
}

.contact-map-box {
  overflow: hidden;
  min-height: 522px;
}

.contact-map-box iframe {
  width: 100%;
  height: 522px;
  border: 0;
}

.services-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.services-video-card {
  overflow: hidden;
  background: #0b0f50;
}

.services-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  background: #000;
}

@media (max-width: 980px) {
  .hero,
  .hero-grid,
  .home-hero,
  .home-hero-inner {
    min-height: auto;
  }

  .hero-grid,
  .two-col,
  .service-grid,
  .features-grid,
  .stats-grid,
  .cards-grid,
  .contact-grid,
  .footer-grid,
  .mini-gallery,
  .home-welcome-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  body.page-inicio .site-header {
    position: static;
  }

  body.page-nosotros .site-header {
    position: static;
  }

  body.page-servicios .site-header {
    position: static;
  }

  body.page-contactos .site-header {
    position: static;
  }

  body.page-inicio .navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(10, 17, 96, 0.08);
  }

  body.page-nosotros .navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(10, 17, 96, 0.08);
  }

  body.page-servicios .navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(10, 17, 96, 0.08);
  }

  body.page-contactos .navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(10, 17, 96, 0.08);
  }

  body.page-inicio .navbar-inner {
    min-height: 84px;
    justify-content: space-between;
    gap: 24px;
  }

  body.page-nosotros .navbar-inner {
    min-height: 84px;
    justify-content: space-between;
    gap: 24px;
  }

  body.page-servicios .navbar-inner {
    min-height: 84px;
    justify-content: space-between;
    gap: 24px;
  }

  body.page-contactos .navbar-inner {
    min-height: 84px;
    justify-content: space-between;
    gap: 24px;
  }

  body.page-inicio .main-nav {
    display: none;
  }

  body.page-nosotros .main-nav {
    display: none;
  }

  body.page-servicios .main-nav {
    display: none;
  }

  body.page-contactos .main-nav {
    display: none;
  }

  body.page-inicio .main-nav a {
    color: var(--navy);
  }

  body.page-nosotros .main-nav a {
    color: var(--navy);
  }

  body.page-servicios .main-nav a {
    color: var(--navy);
  }

  body.page-contactos .main-nav a {
    color: var(--navy);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 14px 16px 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(10, 17, 96, 0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav-group {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .main-nav .brand {
    display: none;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: rgba(10, 17, 96, 0.08);
    color: var(--navy);
    font: inherit;
    font-weight: 700;
  }

  .home-hero-inner {
    padding-top: 90px;
    padding-bottom: 84px;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .home-hero-lead {
    font-size: clamp(1.25rem, 4vw, 1.7rem);
  }

  .home-services-cards {
    display: grid;
    gap: 34px;
  }

  .about-intro-grid,
  .about-experience-grid,
  .about-reasons-grid,
  .about-video-grid,
  .services-intro-grid,
  .services-detail-grid,
  .services-video-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-main-grid {
    max-width: 100%;
  }

  .services-detail-grid.reverse .services-visual-wrap,
  .services-detail-grid.reverse .services-detail-copy {
    order: initial;
  }

  .services-intro-copy,
  .services-detail-copy {
    max-width: 100%;
  }

  .services-intro-image {
    margin: 0 auto;
  }

  .about-reasons-grid {
    max-width: 320px;
    gap: 24px;
  }

  .about-promise {
    padding-top: 112px;
  }

  .services-visual-wrap {
    padding-top: 74px;
  }

  .services-visual-divider {
    width: 126px;
    height: 126px;
  }

  .services-visual-divider img {
    width: 74px;
  }

  .services-cta-box {
    min-height: 360px;
  }

  .services-cta-top {
    height: 70px;
  }

  .services-cta-notch {
    top: 46px;
    width: 132px;
    height: 94px;
  }

  .services-cta-notch img {
    width: 66px;
  }

  .services-cta-content {
    min-height: 360px;
    padding-top: 108px;
  }

  .contact-map-box,
  .contact-map-box iframe {
    min-height: 360px;
    height: 360px;
  }

  .home-service-card {
    width: 100%;
    max-width: 356px;
    margin: 0 auto;
  }

  .home-how-header {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 8px 0;
  }

  .topbar-link {
    position: static;
  }

  .topbar-socials {
    position: static;
    transform: none;
  }

  .copy-card,
  .service-copy,
  .contact-card,
  .feature-card,
  .stat-card {
    padding: 24px;
  }

  .section,
  .home-news {
    padding: 74px 0;
  }

  .home-news-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-news-cta {
    justify-content: flex-start;
  }

  .services-band {
    padding-bottom: 72px;
  }

  .services-band::after {
    width: 110px;
    height: 82px;
    bottom: -48px;
  }

  .about-band::after {
    width: 110px;
    height: 82px;
    bottom: -48px;
  }

  .about-band-logo {
    width: 74px;
    bottom: 4px;
  }

  .services-band-logo {
    width: 60px;
  }

  .home-cta {
    min-height: auto;
    padding: 184px 0 78px;
  }

  .home-cta .container {
    transform: translateY(28px);
  }

  .about-hero-inner {
    min-height: 420px;
    padding-top: 88px;
  }

  .services-hero-inner {
    min-height: 440px;
    padding-top: 90px;
  }

  .about-intro {
    padding-top: 48px;
  }

  .services-hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  .services-hero-lead {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
  }

  .contact-hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  .contact-hero-lead {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
  }

  .services-cta-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .services-cta-subtitle {
    font-size: clamp(1.2rem, 4.6vw, 1.6rem);
  }

  .about-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

}
