:root {
    --navy: #0B1340;
    --navy-mid: #162060;
    --navy-light: #1E2E82;
    --gold: #C8941A;
    --gold-light: #E8AC22;
    --gold-pale: #F5D67A;
    --yellow: #F5C400;
    --white: #FFFFFF;
    --off-white: #F8F6F0;
    --gray-light: #E8E6DE;
    --gray-mid: #9A9888;
    --text-dark: #0D1020;
    --text-body: #2C2E40;
  }


.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
  

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--off-white);
    color: var(--text-body);
    overflow-x: hidden;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--navy);
    border-bottom: 2px solid var(--gold);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }

  .nav-logo-badge {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 18px;
    color: var(--navy);
    letter-spacing: -1px;
  }

  .nav-logo-text {
    display: flex; flex-direction: column;
    font-family: 'Barlow Condensed', sans-serif;
  }

  .nav-logo-text span:first-child {
    font-size: 15px; font-weight: 700;
    color: var(--white); line-height: 1.1; letter-spacing: 0.5px;
  }

  .nav-logo-text span:last-child {
    font-size: 10px; font-weight: 400;
    color: var(--gold-pale); letter-spacing: 1px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex; gap: 0; list-style: none;
  }

  .nav-links a {
    display: block; padding: 22px 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
  }

  .nav-links a:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
  }

  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    margin-left: 8px;
    border-bottom: none !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

  /* ─── HERO ─── */
  #inicio {
    margin-top: 68px;
    min-height: calc(100vh - 68px);
   background: url('images/header.webp') center/cover no-repeat;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
  }

  #inicio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* 👈 AQUÍ controlas la oscuridad */
  z-index: 1;
}

  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(200,148,26,0.04) 40px,
        rgba(200,148,26,0.04) 41px
      );
  }

  .hero-accent-bar {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light), var(--yellow));
  }

  .hero-content {
  position: relative;
  z-index: 2;
  padding: 50px 40px;
  max-width: 700px;

  background: rgba(11, 19, 64, 0.55); /* azul oscuro translúcido */
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,148,26,0.25);
  border-radius: 12px;
}

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block; width: 32px; height: 2px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 8vw, 88px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 8px;
  }

  .hero-title .accent {
    color: var(--gold-light);
    display: block;
  }

  .hero-subtitle {
    font-size: 17px; font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 24px 0 40px;
    max-width: 480px;
  }

  .hero-stats {
    display: flex; gap: 40px;
    margin-bottom: 48px;
  }

  .hero-stat {
    display: flex; flex-direction: column;
  }

  .hero-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px; font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 12px; font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    margin-top: 4px;
  }

  .hero-buttons {
    display: flex; gap: 16px; flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-outline:hover { border-color: var(--gold); background: rgba(200,148,26,0.1); }

  .hero-right {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 45%;
    overflow: hidden;
  }

  .hero-right::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 200px; z-index: 1;
    background: linear-gradient(to right, var(--navy), transparent);
  }

  .hero-right-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: saturate(0.6);
  }

  /* ─── CLIENT STRIP ─── */
  .clients-strip {
    background: var(--navy-mid);
    border-top: 1px solid rgba(200,148,26,0.2);
    border-bottom: 1px solid rgba(200,148,26,0.2);
    padding: 20px 5%;
    display: flex; align-items: center; gap: 16px;
  }

  .clients-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    padding-right: 24px;
    border-right: 1px solid rgba(200,148,26,0.3);
  }

  .clients-logos {
    display: flex; align-items: center; gap: 40px;
    flex-wrap: wrap;
  }

  .client-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
  }

  /* ─── SECTION BASE ─── */
  section { padding: 100px 5%; }

  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-label::before {
    content: '';
    display: block; width: 24px; height: 2px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
    color: var(--navy);
    margin-bottom: 20px;
  }

  .section-title .line2 {
    color: var(--gold);
  }

  /* ─── NOSOTROS ─── */
  #nosotros {
    background: var(--off-white);
  }

  .nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .nosotros-text p {
    font-size: 16px; line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
  }

  .nosotros-highlights {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .highlight-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 24px 20px;
    border-left: 4px solid var(--gold);
  }

  .highlight-card-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px; font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
  }

  .highlight-card-text {
    font-size: 13px; color: rgba(255,255,255,0.65);
    margin-top: 6px; line-height: 1.4;
  }

  .nosotros-visual {
    position: relative;
  }

  .nosotros-img-frame {
    background: var(--navy);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
  }

  .nosotros-img-frame::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(transparent, rgba(11,19,64,0.8));
  }

  .nosotros-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    display: flex; align-items: center; justify-content: center;
  }

  .crane-icon {
    opacity: 0.15;
    font-size: 80px;
  }

  .nosotros-badge {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--gold);
    border-radius: 8px;
    padding: 20px 24px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }

  .nosotros-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px; font-weight: 800;
    color: var(--navy);
    line-height: 1;
  }

  .nosotros-badge-text {
    font-size: 11px; font-weight: 600;
    color: var(--navy-mid);
    text-transform: uppercase; letter-spacing: 1px;
  }

  /* ─── SERVICIOS ─── */
  #servicios {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  #servicios::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      -45deg,
      transparent, transparent 60px,
      rgba(200,148,26,0.03) 60px, rgba(200,148,26,0.03) 61px
    );
  }

  #servicios .section-title { color: var(--white); }

  .servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
  }

  .servicio-card {
    background: rgba(255,255,255,0.04);
    padding: 40px 32px;
    border: 1px solid rgba(200,148,26,0.12);
    transition: background 0.3s;
    cursor: default;
  }

  .servicio-card:hover {
    background: rgba(200,148,26,0.08);
  }

  .servicio-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; color: var(--gold);
    margin-bottom: 20px;
  }

  .servicio-icon {
    width: 48px; height: 48px;
    background: rgba(200,148,26,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }

  .servicio-icon svg { width: 24px; height: 24px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }

  .servicio-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .servicio-desc {
    font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,0.5);
  }

  /* ─── PRODUCTOS ─── */
  #productos {
    background: var(--off-white);
  }

  .productos-intro {
    max-width: 560px;
    font-size: 16px; line-height: 1.7;
    color: var(--gray-mid);
    margin-bottom: 60px;
  }

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

  .producto-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: border-color 0.2s, transform 0.2s;
  }

  .producto-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
  }

  .producto-img {
    height: 140px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .producto-img::before {
    content: attr(data-letter);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px; font-weight: 800;
    color: rgba(255,255,255,0.06);
    position: absolute;
  }

  .producto-img svg {
    width: 40px; height: 40px;
    stroke: var(--gold); fill: none; stroke-width: 1.5;
    position: relative; z-index: 1;
  }

  .producto-label {
    padding: 14px 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--navy);
    line-height: 1.3;
    border-top: 2px solid transparent;
    transition: border-color 0.2s;
  }

  .producto-item:hover .producto-label {
    border-top-color: var(--gold);
    color: var(--gold);
  }

  /* ─── CONTACTO ─── */
  #contacto {
    background: var(--navy);
    position: relative;
  }

  #contacto .section-title { color: var(--white); }

  .contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
  }

  .contacto-info p {
    font-size: 16px; line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
  }

  .contacto-items {
    display: flex; flex-direction: column; gap: 20px;
  }

  .contacto-item {
    display: flex; align-items: flex-start; gap: 16px;
  }

  .contacto-item-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(200,148,26,0.15);
    border-radius: 8px;
    border: 1px solid rgba(200,148,26,0.3);
    display: flex; align-items: center; justify-content: center;
  }

  .contacto-item-icon svg {
    width: 20px; height: 20px;
    stroke: var(--gold); fill: none; stroke-width: 1.5;
  }

  .contacto-item-text {
    display: flex; flex-direction: column;
  }

  .contacto-item-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }

  .contacto-item-value {
    font-size: 15px; color: var(--white);
    text-decoration: none;
  }

  .contacto-redes {
    display: flex; gap: 12px;
    margin-top: 40px;
  }

  .red-social {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 10px 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
  }

  .red-social:hover { border-color: var(--gold); color: var(--gold-light); }

  .contacto-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,148,26,0.2);
    border-radius: 12px;
    padding: 40px;
  }

  .form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px; font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 12px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--gold);
  }

  .form-group textarea { resize: vertical; min-height: 120px; }

  .form-group select option { background: var(--navy); color: var(--white); }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
  }

  .btn-submit:hover { background: var(--gold-light); }

  /* ─── FOOTER ─── */
  footer {
    background: #070D28;
    border-top: 1px solid rgba(200,148,26,0.2);
    padding: 32px 5%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }

  .footer-copy {
    font-size: 13px; color: rgba(255,255,255,0.3);
  }

  .footer-copy strong { color: var(--gold); }

  .footer-links {
    display: flex; gap: 24px;
  }

  .footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  /* ─── SCROLL INDICATOR ─── */
  .scroll-down {
    position: absolute; bottom: 40px; left: 8%;
    display: flex; align-items: center; gap: 12px;
    animation: bounce 2s infinite;
  }

  .scroll-down-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold));
  }

  .scroll-down-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

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

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .nosotros-grid { grid-template-columns: 1fr; gap: 48px; }
    .servicios-grid { grid-template-columns: 1fr; }
    .productos-grid { grid-template-columns: repeat(2, 1fr); }
    .contacto-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { display: none; }
    .nav-links { display: none; }
    .hero-stats { gap: 24px; }
  }

  @media (max-width: 600px) {
    .productos-grid { grid-template-columns: 1fr 1fr; }
    .nosotros-highlights { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    section { padding: 70px 5%; }
  }

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.nosotros-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.servicio-btn {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.servicio-btn:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}


/* Dropdown base */
.nav-dropdown {
  position: relative;
}

/* Menú oculto */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(200,148,26,0.2);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  display: none;
  flex-direction: column;
  z-index: 999;
}

/* Items */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

/* Hover */
.dropdown-menu a:hover {
  background: rgba(200,148,26,0.1);
  color: var(--gold-light);
}

/* Mostrar menú */
.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

.hero-servicio {
  position: relative;
  height: 50vh;
  background: url('../images/servicio-gruas.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-servicio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-servicio-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  color: white;
  max-width: 600px;
}

.servicio-detalle,
.servicio-beneficios,
.servicio-cta {
  padding: 80px 5%;
}


/* ─── HERO LIMPIO ─── */
.servicio-hero-clean {
  background: var(--off-white);
  padding: 140px 5% 80px;
  text-align: center;
}

.servicio-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.servicio-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-mid);
  margin-top: 20px;
}

/* ─── CONTENEDOR ─── */
.servicio-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ─── DETALLE ─── */
.servicio-detalle-clean {
  padding: 80px 5%;
}

.servicio-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 30px;
}

.servicio-lista {
  list-style: none;
  padding: 0;
}

.servicio-lista li {
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--text-body);
}

/* ─── GALERÍA ─── */
.servicio-galeria {
  background: var(--gray-light);
  padding: 80px 5%;
}

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

.galeria-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.galeria-grid img:hover {
  transform: scale(1.05);
}

/* ─── BENEFICIOS ─── */
.servicio-beneficios-clean {
  padding: 80px 5%;
}

.beneficios-grid-clean {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.beneficios-grid-clean div {
  background: var(--navy);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  font-size: 14px;
}

/* ─── CTA ─── */
.servicio-cta-clean {
  background: var(--navy);
  text-align: center;
  padding: 80px 5%;
}

.servicio-cta-clean h2 {
  color: var(--white);
  margin-bottom: 20px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .beneficios-grid-clean {
    grid-template-columns: 1fr;
  }
}



.map-container {
  width: 100%;
  height: 350px;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200,148,26,0.2);
}
