:root {
  --primary: #56d2e6;
    --primary-soft: #dff8fc;
    --secondary: #82c7d6;
    --dark: #0e1113;
    --text: #24323a;
    --muted: #6b7c86;
    --line: #d9e4e8;
    --white: #ffffff;
    --bg: #f7fafb;
    --shadow: 0 18px 45px rgba(14, 17, 19, 0.08);
    --radius: 22px;
    --container: 1180px;
}
* {
  box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Century Gothic", AppleGothic, Apple Gothic, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
    text-decoration: none;
}
img {
  max-width: 100%;
    display: block;
}
.container {
  width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    margin-top: 0px;
}
.site-header {
  -webkit-backdrop-filter: blur(12px) !important;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(14, 17, 19, 0.08);
}
.brand {
  display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}
.brand__logo {
  width: 240px;
    max-width: 100%;
}
.nav-toggle {
  display: none;
    background: var(--white);
    border: 1px solid rgba(14, 17, 19, 0.12);
    width: 52px;
    height: 52px;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--dark);
    transition: 0.25s ease;
}
.nav-toggle span {
  top: 24px;
}
.nav-toggle::before {
  top: 17px;
}
.nav-toggle::after {
  top: 31px;
}
.site-nav ul {
  display: flex;
    align-items: center;
    gap: 24px; /* Reducido de 30px a 24px para juntar más los lados también */
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-nav a {
  text-align: left;
    display: inline-block;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text);
    position: relative;
    padding: 8px 0;
}
.site-nav a::after {
  content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(14, 17, 19, 0.06);
  background: radial-gradient(circle at top right, rgba(86, 210, 230, 0.18), transparent 32%), 
              linear-gradient(180deg, #ffffff 0%, #f6fbfc 100%);
  padding-top: 20px; 
  padding-bottom: 74px;
  margin-bottom: 0;
}
.hero-card {
  background: var(--white);
    border: 1px solid rgba(14, 17, 19, 0.08);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.hero-top {
  display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.eyebrow {
  display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
    width: 42px;
    height: 2px;
    background: var(--primary);
    display: inline-block;
}
h1,
h2,
h3,
h4,
.brand,
.site-nav a {
  font-family: "Century Gothic", AppleGothic, Apple Gothic, sans-serif;
    font-weight: bold;
    letter-spacing: -0.5px;
}
h1,
h2,
h3,
h4 {
  color: var(--dark);
    line-height: 1.15;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}
h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
h3 {
  font-size: 1.08rem;
    margin-bottom: 12px;
}
p {
  color: var(--text);
    font-size: 1rem;
}
.lead {
  max-width: 820px;
    font-size: 1.08rem;
    color: var(--muted);
    text-align: justify;
}
.badge {
  display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--dark);
    font-weight: 700;
    border: 1px solid rgba(86, 210, 230, 0.3);
}
.hero-grid {
  display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}
.card {
  background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.summary-card {
  background:
      linear-gradient(180deg,
        #ffffff 0%,
        #fbfdfe 100%);
}
.meta-grid {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.meta-item {
  border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    background: #fff;
}
.meta-item span {
  display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 8px;
}
.main-content {
  padding: 36px 0 70px;
}
.layout {
  display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
    align-items: start;
}
.stack {
  display: grid;
    gap: 24px;
}
.section-title {
  display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.section-title::before {
  content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 8px rgba(86, 210, 230, 0.14);
    flex-shrink: 0;
}
.plain-list {
  list-style: none;
    display: grid;
    gap: 14px;
}
.plain-list li {
  padding-left: 20px;
    position: relative;
    color: var(--text);
}
.plain-list li::before {
  content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 10px;
}
.timeline {
  display: grid;
    gap: 18px;
}
.timeline-item {
  border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    background:
      linear-gradient(180deg,
        #ffffff 0%,
        #fbfdfe 100%);
}
.timeline-item__top {
  display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.timeline-item h3 {
  margin-bottom: 4px;
}
.timeline-date {
  font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
}
.job-role {
  color: var(--muted);
    font-weight: 700;
    margin-bottom: 10px;
}
.footer-note {
  margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.95rem;
}
.site-footer {
  background: #fbfdfe;
      background-color: #0a0a0a !important; /* Negro profundo */
      color: #ffffff !important;
      padding: 40px 20px !important;
      font-family: 'Helvetica Neue', Arial, sans-serif;
      text-align: center;
      border-top: 1px solid #1a1a1a;
}
.site-footer__inner {
  justify-content: space-between;
    flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
}
.site-footer p {
  color: var(--muted);
    font-size: 0.94rem;
}
.footer-links {
  flex-wrap: wrap;
      display: flex;
      gap: 20px;
      justify-content: center;
}
.footer-links a {
  font-weight: 700;
      color: #ffffff !important;
      text-decoration: none !important;
      font-size: 12px !important;
      letter-spacing: 1px !important;
      transition: color 0.3s ease;
      opacity: 0.8;
}
@media (max-width: 1080px) {
  .hero-grid,
  .layout {
    grid-template-columns: 1fr;
  }
  .hero__grid,
  .about__grid,
  .integrity__grid {
    grid-template-columns: 1fr;
  }
  .team-grid,
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__grid,
  .cards-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 12px);
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(14, 17, 19, 0.08);
        border-radius: 22px;
        box-shadow: var(--shadow);
        padding: 18px 20px;
        display: none;
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
        align-items: flex-start;
        gap: 10px;
  }
  .site-nav a {
    width: 100%;
        padding: 10px 0;
  }
  .meta-grid {
    grid-template-columns: 1fr;
  }
  .principles,
  .team-grid,
  .stats__grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    flex-direction: column;
  }
  /* Ocultamos el submenú por defecto en móvil */
  .submenu {
    position: static;
        /* Ya no flota sobre el contenido, lo empuja hacia abajo */
        width: 100%;
        max-height: 0;
        /* Lo cerramos */
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        /* Un fondo sutil para diferenciarlo */
        border: none;
        transition: all 0.4s ease;
        padding: 0;
  }
  /* Clase que activaremos con JavaScript al hacer clic */
  .has-submenu.is-active .submenu {
    max-height: 500px;
        /* Suficiente para mostrar todos los servicios */
        opacity: 1;
        visibility: visible;
        padding: 10px 0;
        margin-top: 5px;
  }
  /* Girar la flecha en móvil al abrir */
  .has-submenu.is-active .arrow {
    transform: rotate(180deg);
  }
  .submenu li a {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .site-header__inner {
    min-height: 78px;
  }
  .brand__logo {
    width: 190px;
  }
  .hero {
    padding: 64px 0 56px;
  }
  .hero-card,
  .card {
    padding: 22px;
  }
  .timeline-item {
    padding: 18px;
  }
  .main-content {
    padding: 26px 0 56px;
  }
  .section {
    padding: 70px 0;
  }
  .hero-card,
  .content-card,
  .stat-card,
  .profile-card__body,
  .cta-box {
    padding: 22px;
  }
  .image-placeholder {
    min-height: 260px;
  }
  .hero-card,
  .service-card,
  .content-card,
  .reason-card,
  .cta-box {
    padding: 22px;
  }
}
.has-submenu {
  position: relative;
}
.submenu {
  display: none; /* Se oculta por defecto */
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white, #fff);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 8px 0 !important; /* Espaciado interno del contenedor del submenú */
    min-width: 240px;
    flex-direction: column; /* Alinea los links hacia abajo */
    gap: 0 !important;
    z-index: 100;
    visibility: hidden;
}
.submenu li {
  width: 100%;
}
.submenu li a {
  display: block;
    padding: 12px 20px;
    color: #24323a;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}
.submenu li a:hover {
  background-color: #f7fafb;
    color: #56d2e6;
}
.has-submenu:hover .submenu {
  opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.section {
  scroll-margin-top: 90px;
    padding: 10px 0;
}
.section-header {
  max-width: 760px;
    margin-bottom: 38px;
}
.btn {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: 0.25s ease;
}
.btn-primary {
  background: var(--dark);
    color: var(--white);
    box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: #1f272c;
    transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
    color: var(--dark);
    border-color: rgba(14, 17, 19, 0.18);
}
.btn-secondary:hover {
  color: var(--dark);
    border-color: var(--primary);
    background: var(--primary-soft);
}
.btn-volver-arriba {
  background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease !important;
    cursor: pointer;
    margin-top: auto;
    align-self: center;
}
.btn-volver-arriba:hover {
  background: var(--primary) !important;
    color: var(--dark) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 5px 15px rgba(86, 210, 230, 0.3);
      transform: translateY(-2px);
}
.site-header__inner {
  min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.hero::after {
  content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg,
        rgba(14, 17, 19, 0.02) 0%,
        rgba(86, 210, 230, 0.03) 100%);
    pointer-events: none;
}
.hero__grid {
  margin-top: 0 !important;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px;
}
.hero__content p {
  max-width: 660px;
}
.hero__actions {
  margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.stats__grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.stat-card {
  background: var(--white);
    border: 1px solid rgba(14, 17, 19, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: justify;
}
.stat-card strong {
  display: block;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.stat-card span {
  color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}
.about__grid {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    text-align: justify;
}
.content-card {
  background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}
.check-list {
  list-style: none;
    display: grid;
    gap: 15px;
    margin-top: 24px;
}
.check-list li {
  display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
}
.check-list li::before {
  content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 0 7px rgba(86, 210, 230, 0.14);
}
.integrity__grid {
  display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: stretch;
}
.principles {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}
.principle {
  border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    background:
      linear-gradient(180deg,
        #ffffff 0%,
        #fbfdfe 100%);
}
.principle h4 {
  font-size: 1rem;
    margin-bottom: 10px;
}
.principle p {
  color: var(--muted);
    font-size: 0.96rem;
}
.cta {
  padding-top: 0;
}
.cta-box {
  background: linear-gradient(135deg, var(--dark) 0%, #1a252b 100%);
    color: var(--white);
    border-radius: 28px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    gap: 24px;
    box-shadow: var(--shadow);
}
.cta-box .btn {
  background: rgba(0, 0, 0, 0) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    padding: 12px 28px !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.cta-box .btn:hover {
  background: var(--primary) !important;
    color: var(--dark) !important;
    border-color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(86, 210, 230, 0.3);
}
.cta-box h2 {
  color: var(--white);
    text-align: center;
}
.cta-box p {
  text-align: justify;
    opacity: 0.8;
}
.btn-gradient {
  display: inline-block !important;
    padding: 14px 22px !important;
    background:
      linear-gradient(135deg,
        #56d2e6 0%,
        #82c7d6 100%) !important;
    color: #0e1113 !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(86, 210, 230, 0.25) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    margin-top: 10px !important;
    box-shadow: 0 0 20px rgba(86, 210, 230, 0.4) !important;
}
.btn-gradient:hover {
  box-shadow: 0 0 35px rgba(10, 21, 22, 0.6) !important;
    filter: brightness(1.1);
}
#about.section,
#quienes-somos.section {
  padding-top: 0px !important;
}
.content-card,
.profile-card {
  background: #fff;
    border-radius: 22px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.content-card:hover,
.profile-card:hover {
  transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
h4 {
  font-size: 1rem;
    margin-bottom: 10px;
}
.image-placeholder {
  position: relative;
    border-radius: 22px;
    border: 1.5px dashed rgba(14, 17, 19, 0.18);
    background:
      linear-gradient(135deg,
        rgba(86, 210, 230, 0.12),
        rgba(130, 199, 214, 0.12)), var(--bg);
    min-height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
    color: var(--muted);
    padding: 24px;
}
.image-placeholder::before {
  font-weight: 700;
    letter-spacing: 0.03em;
}
.cards-grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card,
.content-card,
.reason-card {
  background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: justify;
}
.service-card {
  display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.service-card::before {
  content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background:
      linear-gradient(90deg,
        var(--primary),
        var(--secondary));
}
.service-badge {
  display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.service-list {
  list-style: none;
    display: grid;
    gap: 14px;
}
.service-list li {
  position: relative;
    padding-left: 18px;
    color: var(--text);
}
.service-list li::before {
  content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 10px;
}
.why-section {
  padding-top: 20px !important;
    /* Reduce el aire superior al mínimo */
    padding-bottom: 20px;
    background-color: transparent;
    /* O el color de fondo que prefieras */
    margin-top: -30px;
    /* Opcional: un margen negativo lo "succiona" hacia arriba */
}
.reasons-grid {
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.reason-card h4 {
  font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: center;
}
.reason-card p {
  font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: justify;
}
.reason-card ul.card-list {
  list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    text-align: left;
    /* Las listas se leen mejor alineadas a la izquierda */
}
.reason-card ul.card-list li {
  font-size: 0.95rem;
    /* Un poco más pequeña que el h4 */
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}
.reason-card ul.card-list li span {
  color: #56d2e6;
    /* El celeste de tu marca */
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
    /* Evita que el check se achique si el texto es largo */
}
.cta-box h2,
.cta-box p {
  color: var(--white);
}
/* Hero */
/* Stats */
.stats {
  padding-top: 0;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}
/* About */
/* Professionals */
.professionals {
  background: var(--bg);
    margin-top: 30px;
}
.team-grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.profile-card {
  background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.profile-card__image {
  min-height: 260px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
}
.profile-card__body {
  padding: 26px;
    text-align: justify;
}
.profile-card__role {
  display: inline-block;
    margin-bottom: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 700;
}
/* Integrity */
/* CTA */
/* Footer */
/* Responsive */
/* Ajuste para móviles (Responsive) */
li,
span,
label {
  text-align: justify;
    text-justify: inter-word;
}
h2,
h3,
h4,
h5,
h6 {
  text-align: justify;
    text-transform: uppercase;
}
/* --- ESTILOS SECCIÓN METODOLOGÍA MEJORADA --- */
.metodologia-section {
  background-color: #f4f7f6;
    /* Un fondo gris muy suave para que las tarjetas resalten */
    padding: 100px 0;
    /* Un poco más de aire arriba y abajo */
}
.metodologia-header {
  text-align: center;
    margin-bottom: 60px;
    /* Más espacio hacia las tarjetas */
}
.metodologia-title {
  font-size: 3rem;
    /* Título más grande e imponente */
    color: #0e1113;
    font-family: "Century Gothic", AppleGothic, Apple Gothic, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}
.metodologia-subtitle {
  color: #56d2e6;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
/* Grilla mejorada */
.metodologia-grid-enhanced {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Tarjetas un poco más anchas */
    gap: 40px;
    /* Más espacio entre las tarjetas */
    max-width: 1200px;
    /* Limitamos el ancho para que no se vea tan estirado */
    margin: 0 auto;
    /* Centramos la grilla */
    padding: 0 20px;
    /* Un poco de padding a los lados */
}
/* Tarjetas mejoradas */
.metodologia-card-enhanced {
  background: #ffffff;
    padding: 40px;
    /* Más aire interno */
    border-radius: 20px;
    text-align: justify;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Sombra más suave y difusa */
    transition: all 0.3s ease;
    /* Transición para el efecto hover */
    border: 1px solid #eee;
    /* Un borde muy sutil */
}
/* Efecto al pasar el mouse */
.metodologia-card-enhanced:hover {
  transform: translateY(-10px);
    /* La tarjeta sube ligeramente */
    box-shadow: 0 20px 50px rgba(86, 210, 230, 0.2);
    /* Sombra con el color corporativo */
}
.metodologia-number-enhanced {
  font-size: 3rem;
    /* Número más grande */
    color: #56d2e6;
    margin-bottom: 20px;
    font-weight: bold;
    opacity: 0.8;
    /* Un poco más suave */
}
.metodologia-card-title {
  font-size: 1.5rem;
    /* Título más grande */
    color: #0e1113;
    font-weight: 700;
    margin-bottom: 20px;
}
.metodologia-text {
  color: #666;
    font-size: 1rem;
    line-height: 1.6;
    /* Mejor espaciado para lectura */
}
/* --- BOTÓN DE CONTACTO --- */
.contacto-container {
  text-align: center;
    /* Centra el botón en la página */
    margin-top: 50px;
}
.btn-contacto {
  display: inline-block;
    padding: 18px 40px;
    background-color: #56d2e6;
    /* Tu color corporativo */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 50px;
    /* Bordes redondeados modernos */
    box-shadow: 0 10px 20px rgba(86, 210, 230, 0.3);
    transition: all 0.3s ease;
}
.btn-contacto:hover {
  background-color: #0e1113;
    /* Cambia a negro al pasar el mouse */
    transform: translateY(-3px);
    /* Sube un poco */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}
.nota-traslado {
  font-size: 0.85rem;
    /* Tamaño pequeño */
    color: #888888;
    /* Gris claro profesional */
    margin-top: 5px;
    /* Espacio respecto al precio */
    margin-bottom: 15px;
    /* Espacio respecto al párrafo siguiente */
    font-style: italic;
    /* Un toque de elegancia técnica */
    line-height: 1.3;
    text-align: left;
    /* Al ser una nota corta, queda mejor a la izquierda */
}
/* Contenedor Flexible */
.content-flex-container {
  display: flex;
    gap: 60px;
    /* Más espacio entre imagen y texto */
    align-items: center;
    margin-bottom: 80px;
}
/* Imagen a la izquierda */
.contenedor-imagen-estilizada {
  flex: 0 0 45%;
    /* La imagen toma el 45% del ancho */
}
.wrapper-hover {
  position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.img-fluida {
  width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
/* Texto a la derecha */
.bloque-contenido {
  flex: 1;
}
.info-group {
  margin-bottom: 40px;
}
/* Títulos iguales en Negro */
.title-imponente {
  font-family: "Century Gothic", AppleGothic, Apple Gothic, sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    /* Tamaño equilibrado para ambos */
    line-height: 1.1;
    color: #0e1113;
    /* Negro sólido */
    margin-bottom: 15px;
    text-transform: uppercase;
}
.text-lead,
.text-standard {
  color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: justify;
}
/* Hover de la imagen */
.overlay-tecnico {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 17, 19, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.overlay-tecnico span {
  color: #ffffff;
    border: 2px solid #56d2e6;
    padding: 12px 24px;
    font-weight: 800;
    letter-spacing: 1px;
}
.wrapper-hover:hover .img-fluida {
  transform: scale(1.08);
}
.wrapper-hover:hover .overlay-tecnico {
  opacity: 1;
}
/* Responsive */
@media (max-width: 992px) {
  .content-flex-container {
    flex-direction: column;
        /* Imagen arriba, texto abajo en móvil */
        text-align: center;
  }
  .contenedor-imagen-estilizada {
    width: 100%;
        max-width: 500px;
  }
  .machinery-grid {
    grid-template-columns: 1fr;
        /* Una columna en celulares */
        gap: 20px;
  }
  .title-machinery {
    font-size: 2.2rem;
  }
  .card-featured {
    padding: 40px;
  }
  .exp-row,
  .exp-row.reverse {
    flex-direction: column;
        text-align: center;
        gap: 50px;
        margin-bottom: 100px;
  }
  .exp-text,
  .exp-visual {
    flex: 0 0 100%;
  }
  .exp-visual img {
    height: 300px;
  }
  .tech-specs {
    justify-content: center;
  }
  .vision-grid {
    flex-direction: column;
  }
  .offset-up,
  .offset-down {
    transform: translateY(0);
        width: 100%;
  }
}
/* --- ENCABEZADO A LA DERECHA --- */
.section-header-right {
  display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Empuja todo a la derecha */
    gap: 15px;
    margin-bottom: 40px;
    width: 100%;
    margin-top: 30px;
}
.section-header-right .eyebrow {
  font-size: 12px;
    letter-spacing: 2px;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
}
.section-header-right .linea-celeste {
  width: 40px;
    height: 3px;
    background-color: #56d2e6;
    /* Tu color corporativo */
    order: 2;
    /* Esto pone la barrita a la derecha del texto */
}
/* --- SECCIÓN LÍNEAS DE PROYECTACIÓN --- */
.container-proyectos {
  max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid #e1e8ed;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}
.titulo-con-punto {
  display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.punto-celeste {
  width: 18px;
    height: 18px;
    background-color: #56d2e6;
    /* Tu celeste corporativo */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(86, 210, 230, 0.4);
}
.titulo-con-punto h3 {
  font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #0e1113;
}
.intro-proyectacion {
  color: #666;
    margin-left: 33px;
    /* Alineado con el inicio del texto del título */
    margin-bottom: 30px;
    font-size: 1.1rem;
}
/* Grilla de Mini-Tarjetas internas */
.grid-proyectacion {
  display: flex;
    flex-direction: column;
    gap: 15px;
}
.card-proyectacion {
  background: #ffffff;
    padding: 20px 25px;
    border-radius: 20px;
    border: 1px solid #edf2f6;
    transition: all 0.3s ease;
}
.card-proyectacion:hover {
  border-color: #56d2e6;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.subtitulo-proyecto {
  font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    color: #0e1113;
    margin-bottom: 8px;
}
.card-proyectacion p {
  color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}
/* Responsive */
@media (max-width: 768px) {
  .titulo-con-punto h3 {
    font-size: 1.4rem;
  }
  .container-proyectos {
    padding: 20px;
  }
  .grid-especificaciones {
    grid-template-columns: 1fr;
        /* Una columna en celulares */
  }
  .carrusel-slide img {
    height: 300px;
        /* Altura más baja para móviles */
  }
  .carrusel-btn {
    width: 35px;
        height: 35px;
  }
  .info-container {
    flex-direction: column;
        gap: 30px;
        text-align: center;
  }
  .info-lista li {
    justify-content: center;
  }
  .fase-card {
    flex-direction: column;
  }
  .fase-numero {
    border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 10px;
  }
  .fase-items {
    grid-template-columns: 1fr;
        /* 1 columna en móvil */
  }
  .site-footer {
    padding: 30px 15px !important;
  }
  .footer-links {
    flex-direction: column;
            gap: 12px;
  }
  .footer-company {
    font-size: 16px !important;
  }
  .footer-address, .footer-copyright {
    font-size: 10px !important;
  }
  .header-socials {
    justify-content: center;
            padding-left: 0;
            margin-top: 25px; /* Mayor separación en el menú desplegable móvil */
            gap: 30px;
  }
  .header-socials a {
    font-size: 32px !important; /* Tamaño ideal para pantallas táctiles */
            color: #ffffff !important; /* Por si el menú desplegable de Edibor usa fondo oscuro */
  }
  .footer-socials {
    gap: 30px;
            margin: 25px 0;
  }
  .footer-socials .footer-icon {
    font-size: 32px !important; /* Tamaño óptimo para el footer en celulares */
  }
  .fila-boton-central {
    flex-direction: column; /* Se colocan uno abajo del otro en celulares */
            gap: 15px;
            width: 100%;
  }
  .fila-boton-central a {
    width: 100%; /* Ocupan todo el ancho disponible en pantallas táctiles */
            max-width: 320px; /* Para que no se estiren demasiado en pantallas intermedias */
  }
  .contenedor-franja {
    flex-direction: column;
        text-align: center;
        padding: 25px 20px;
  }
  .franja-texto {
    flex-direction: column;
        gap: 8px;
  }
  .franja-separador {
    display: none; /* Ocultamos la línea en móviles */
  }
  .franja-botones {
    width: 100%;
        margin-top: 10px;
  }
  .btn-franja-outline, .btn-franja-wsp {
    flex: 1; /* Los botones ocupan el 50% de la pantalla cada uno */
        justify-content: center;
  }
}
.franja-cotizacion-premium {
  background: linear-gradient(135deg, #1a1e21 0%, #0e1113 100%);
    width: 100%;
    margin-top: 80px;
    background-color: #16181a; /* Ajusta al gris oscuro de tu web */
    padding: 60px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
}
.container-central-line {
  max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* Separación entre el bloque de texto y los botones */
}
/* El contenedor que divide los dos lados */
.split-content {
  justify-content: center;
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    align-items: center; /* Centra verticalmente los elementos */
    gap: 25px; /* Separación entre los textos y la línea central */
}
/* LADO IZQUIERDO: Alineado a la derecha (hacia la línea) */
.side-left {
  flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    text-align: right; /* Alinea el texto hacia la línea */
}
.lista-tecnica-derecha {
  text-align: right;
    /* Texto hacia la línea */
    list-style: none;
    padding: 0;
    margin: 0;
}
.lista-tecnica-derecha li {
  font-family: 'Inter', sans-serif;
    text-align: right;
    color: #9ca3af; /* Gris claro */
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em; /* Separa las letras para un look premium */
    margin-bottom: 6px;
}
/* LA LÍNEA CELESTE CENTRAL */
.center-line {
  /* Altura de la línea */
    box-shadow: 0 0 15px rgba(86, 210, 230, 0.3);
    width: 2px;
    height: 60px;
    background-color: #38bdf8; /* Color cian */
    border-radius: 2px;
}
/* LADO DERECHO: Alineado a la izquierda (hacia la línea) */
.side-right {
  flex: 1;
    padding-left: 40px;
    text-align: left;
}
.texto-cotizacion-slim {
  font-family: 'Inter', sans-serif;
    max-width: 450px;
    text-align: left;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 300; /* Fuente más delgada */
    line-height: 1.2;
    margin: 0;
}
.texto-cotizacion-slim .highlight {
  color: #56d2e6;
    font-weight: 700;
}
/* --- BOTÓN PREMIUM MODERNIZADO --- */
.btn-premium-modern {
  position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 12px 15px 12px 35px;
    background: rgba(86, 210, 230, 0.05);
    /* Fondo sutil */
    color: #56d2e6;
    border: 2px solid rgba(86, 210, 230, 0.3);
    border-radius: 100px;
    /* Forma de cápsula perfecta */
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    /* Necesario para el efecto de brillo */
    backdrop-filter: blur(5px);
    /* Efecto cristal */
}
/* Caja del Icono */
.btn-icon-box {
  width: 42px;
    height: 42px;
    background-color: #56d2e6;
    color: #0e1113;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}
/* Efecto de Brillo (Shine) que cruza el botón */
.btn-shine {
  position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: all 0.6s;
    z-index: 1;
}
/* --- ESTADOS HOVER (La magia) --- */
.btn-premium-modern:hover {
  border-color: #56d2e6;
    color: #ffffff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(86, 210, 230, 0.25);
}
.btn-premium-modern:hover .btn-icon-box {
  background-color: #ffffff;
    transform: rotate(-45deg);
    /* Gira la flecha hacia arriba */
}
.btn-premium-modern:hover .btn-shine {
  left: 100%;
    /* El brillo cruza el botón de lado a lado */
}
/* Click animado */
.btn-premium-modern:active {
  transform: translateY(-2px) scale(0.98);
}
/* Ajuste móvil */
@media (max-width: 850px) {
  .split-content {
    flex-direction: column;
  }
  .center-line {
    width: 60px;
        height: 2.5px;
        /* La línea se vuelve horizontal en móvil */
        margin: 30px 0;
  }
  .side-left,
  .side-right {
    text-align: center;
        justify-content: center;
        padding: 0;
  }
  .lista-tecnica-derecha {
    text-align: center;
  }
}
/* --- LISTA DE EJECUCIÓN TÉCNICA --- */
.servicios-ejecucion {
  max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}
.grid-especificaciones {
  display: grid;
    grid-template-columns: 1fr 1fr;
    /* Dos columnas para que se vea ordenado */
    gap: 25px;
}
.item-especificacion {
  display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #edf2f6;
    transition: all 0.3s ease;
    text-align: justify;
}
.item-especificacion:hover {
  border-color: #56d2e6;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.punto-celeste-mini {
  width: 10px;
    height: 10px;
    background-color: #56d2e6;
    border-radius: 50%;
    margin-top: 6px;
    /* Alinea con el primer título */
    flex-shrink: 0;
}
.contenido-especificacion h4 {
  font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #0e1113;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.contenido-especificacion p {
  font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
/* Responsivo para móviles */
.seccion-carrusel {
  padding: 60px 0;
    background-color: #f9fbfc;
    /* Un fondo muy suave para resaltar */
}
.carrusel-container {
  position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    /* Consistente con tus tarjetas */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.carrusel-track {
  display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.carrusel-slide {
  min-width: 100%;
}
.carrusel-slide img {
  width: 100%;
    height: 500px;
    /* Altura fija para PC */
    object-fit: cover;
    /* Recorta la imagen sin deformarla */
    display: block;
}
/* Botones Flecha */
.carrusel-btn {
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #0e1113;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carrusel-btn:hover {
  background: #56d2e6;
    color: white;
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}
/* Puntos (Dots) */
.carrusel-dots {
  position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.dot {
  width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}
.dot.active {
  background: #56d2e6;
    transform: scale(1.2);
    border-color: white;
}
/* Responsive */
/* --- SECCIÓN MAQUINARIA (ESTILO PREMIUM INDUSTRIAL) --- */
.section-machinery {
  background: #ffffff;
    padding-top: 0px !important;
    /* Elimina el espacio superior interno */
    padding-bottom: 20px !important;
    /* Deja un espacio pequeño al final */
    margin-top: 0px !important;
    /* Asegura que no haya margen externo */
    margin-bottom: 0px !important;
    padding: 100px 20px;
    width: 100%;
    margin-top: 60px;
    /* Reduce espacio superior si es necesario */
}
#maquinaria:first-of-type {
  padding-top: 100px !important;
    /* Ajusta este valor según el alto de tu barra nav */
}
.container-full {
  max-width: 1200px;
    margin: 0 auto;
}
/* --- ENCABEZADO --- */
.section-machinery-header {
  text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    /* Espacio antes de las tarjetas */
    text-align: center;
    margin-top: 0px !important;
    /* Elimina el espacio sobre el título */
    padding-top: 10px !important;
    /* Un toque mínimo de aire */
    margin-bottom: 30px !important;
    /* Espacio con las fotos de abajo */
}
.eyebrow-machinery {
  color: #56d2e6;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0px !important;
    padding-top: 0px !important;
    opacity: 0.8;
}
.title-machinery {
  color: #080707;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: center;
}
.lead-machinery {
  color: rgba(8, 8, 8, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}
/* --- GRID DE TARJETAS --- */
.machinery-grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    /* Alineación vertical perfecta */
}
/* --- TARJETA BASE --- */
.machinery-card {
  position: relative;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(86, 210, 230, 0.1);
    /* Borde sutil celeste */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}
/* Tarjeta Destacada (la del centro) */
.card-featured {
  padding: 50px 40px;
    /* Más aire arriba y abajo */
    border-color: rgba(86, 210, 230, 0.3);
    box-shadow: 0 20px 40px rgba(86, 210, 230, 0.1);
}
/* Efectos Hover */
.machinery-card:hover {
  transform: translateY(-10px) scale(1.02);
    border-color: #56d2e6;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
/* --- ELEMENTOS INTERNOS DE LA TARJETA --- */
.card-icon {
  width: 65px;
    height: 65px;
    background-color: rgba(86, 210, 230, 0.1);
    color: #56d2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s;
}
.featured-icon {
  background-color: #56d2e6;
    color: #0e1113;
}
.machinery-card h3 {
  font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0e1113;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.machinery-card p {
  font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px;
}
/* Línea de acento celeste abajo (micro-interacción) */
.card-accent-line {
  position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #56d2e6;
    transition: 0.4s ease;
}
.machinery-card:hover .card-accent-line {
  width: 100%;
}
/* Badge para la tarjeta destacada */
.card-badge {
  position: absolute;
    top: 25px;
    right: 30px;
    background-color: rgba(14, 17, 19, 0.8);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 50px;
}
/* --- RESPONSIVE --- */
/* --- BENTO GRID SYSTEM --- */
.machinery-bento {
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}
.bento-item {
  position: relative;
    background: #676b6a;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Manejo de Imágenes */
.bento-img {
  width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.bento-item:hover .bento-img {
  transform: scale(1.1);
}
/* Capa de texto sobre imagen */
.bento-overlay {
  position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}
.bento-overlay span {
  color: #56d2e6;
    font-weight: 700;
    font-size: 0.8rem;
}
.bento-overlay h4 {
  margin-top: 5px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}
/* --- DISTRIBUCIÓN DE LAS PIEZAS --- */
.item-grande {
  grid-column: span 2;
    grid-row: span 2;
}
.item-vertical {
  grid-row: span 2;
}
.item-info {
  background: #56d2e6;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.item-horizontal {
  grid-column: span 1;
}
.item-mini {
  background: #56d2e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #f8f8f8;
}
.highlight-number {
  font-size: 3rem;
    font-weight: 500;
    line-height: 1;
}
/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .machinery-bento {
    grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
  }
  .item-grande,
  .item-vertical,
  .item-horizontal {
    grid-column: span 2;
        height: 300px;
  }
}
/* --- THE FLOWING BLUEPRINT EXPERIENCE --- */
.blueprint-experience {
  position: relative;
    padding-bottom: 200px !important;
    padding: 150px 0;
    /* Mucho aire para que floten los elementos */
    background: #ffffff;
    /* Fondo oscuro premium */
    overflow: hidden;
    color: #0c0505;
    font-family: 'Inter', sans-serif;
}
/* Fondo técnico (El Plano) */
.blueprint-bg {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    /* Muy sutil */
    z-index: 1;
}
.blueprint-bg img {
  width: 100%;
    height: 100%;
    object-fit: cover;
}
.exp-content {
  position: relative;
    z-index: 2;
    /* Sobre el plano */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
/* --- ENCABEZADO --- */
.exp-header {
  text-align: center;
    margin-bottom: 120px;
}
.exp-header h2 {
  font-size: 3.2rem;
    color: #0e0a0a;
    line-height: 1.1;
    margin-top: 15px;
    text-align: center;
}
/* --- FILAS DE CONTENIDO (ESTILO FLUJO) --- */
.exp-row {
  display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    /* Gran espacio para el efecto parallax */
    position: relative;
}
.exp-row.reverse {
  flex-direction: row-reverse;
}
/* --- TEXTO --- */
.exp-text {
  flex: 0 0 45%;
    position: relative;
}
.step-num {
  font-size: 1.2rem;
    font-weight: 700;
    color: #13515a;
    /* Tu celeste */
    opacity: 0.7;
    margin-bottom: 15px;
    display: block;
}
.exp-text h3 {
  font-size: 2.5rem;
    color: #0a0808;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.highlight-exp {
  color: #05535f;
}
.exp-text p {
  color: rgba(14, 10, 10, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}
/* Mini etiquetas técnicas (explicativas) */
.tech-specs {
  display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.spec-tag {
  background: rgba(86, 210, 230, 0.1);
    border: 1px solid rgba(86, 210, 230, 0.3);
    color: #000000;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* --- VISUALES (EFECTO FLOTANTE) --- */
.exp-visual {
  flex: 0 0 45%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(86, 210, 230, 0.2);
    /* Borde técnico sutil */
    transition: all 0.5s ease;
}
.exp-visual img {
  width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
/* Parallax Sutil al hacer hover (se puede hacer automático con JS avanzado) */
.exp-row:hover .exp-visual {
  transform: translateY(-20px) scale(1.03);
    border-color: #56d2e6;
}
/* Posiciones asimétricas (Originalidad) */
.float-image-1 {
  transform: translateY(50px);
}
.float-image-2 {
  transform: translateY(-30px);
}
.float-image-3 {
  transform: translateY(80px);
}
/* --- RESPONSIVE --- */
.technical-vision {
  padding-top: 40px !important;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}
.technical-vision,
.section-machinery {
  padding-top: 20px;
    /* Reducimos solo el inicio de estas secciones */
}
.machinery-bento,
.vision-grid {
  margin-top: 30px;
    gap: 30px;
    /* Asegura espacio entre los elementos internos */
}
.vision-container {
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.vision-header {
  margin-bottom: 40px !important;
    text-align: left;
}
.vision-tag {
  color: #56d2e6;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
}
.vision-header h2 {
  font-size: 3rem;
    color: #0e1113;
    font-weight: 800;
}
.accent-text {
  color: transparent;
    -webkit-text-stroke: 1px #0e1113;
    /* Texto en contorno para estilo técnico */
}
/* --- GRID DINÁMICO --- */
.vision-grid {
  display: flex;
    gap: 30px;
    align-items: center;
    perspective: 1000px;
    /* Prepara para efectos 3D */
}
.vision-item {
  position: relative;
    border-radius: 4px;
    /* Bordes más rectos = más técnico */
    overflow: hidden;
    box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.vision-item img {
  width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: 0.6s;
}
/* Bloque Principal */
.main-block {
  flex: 2;
    height: 550px;
}
.offset-up {
  flex: 1;
    height: 400px;
    transform: translateY(-40px);
}
.offset-down {
  flex: 1;
    height: 400px;
    transform: translateY(40px);
}
/* --- ELEMENTOS DE INGENIERÍA (DÉCOR) --- */
.technical-frame {
  position: absolute;
    inset: 20px;
    border: 1px solid rgba(86, 210, 230, 0.3);
    z-index: 2;
    pointer-events: none;
}
.corner-tl,
.corner-tr,
.corner-bl,
.corner-br {
  position: absolute;
    color: #56d2e6;
    font-weight: bold;
    font-size: 1.2rem;
}
.corner-tl {
  top: -10px;
    left: -10px;
}
.corner-tr {
  top: -10px;
    right: -10px;
}
.corner-bl {
  bottom: -10px;
    left: -10px;
}
.corner-br {
  bottom: -10px;
    right: -10px;
}
.tech-coords {
  position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.65rem;
    color: #ffffff;
    background: #0e1113;
    padding: 4px 8px;
    z-index: 3;
}
/* --- HOVER EFFECTS --- */
.vision-item:hover {
  transform: scale(1.02) translateY(0);
    box-shadow: 30px 30px 60px rgba(86, 210, 230, 0.2);
    z-index: 10;
}
.vision-item:hover img {
  filter: grayscale(0%);
    transform: scale(1.05);
}
.vision-info {
  position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    color: rgb(6, 179, 223);
}
.vision-label {
  position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    color: #0e1113;
    padding: 8px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
/* Responsive */
.faq-section {
  padding: 100px 20px;
    background-color: #fcfdfe;
    font-family: 'Inter', sans-serif;
}
.container-faq {
  max-width: 900px;
    margin: 0 auto;
}
.faq-header {
  text-align: center;
    margin-bottom: 60px;
}
.faq-eyebrow {
  color: #56d2e6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}
.faq-header h2 {
  font-size: 2.8rem;
    color: #0e1113;
    margin-top: 10px;
    text-align: center;
}
/* Categorías */
.faq-category h3 {
  display: flex;
    align-items: center;
    gap: 10px;
    color: #0e1113;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f4f7;
}
/* Items del Acordeón */
.faq-item {
  background: #ffffff;
    border: 1px solid #edf2f6;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.faq-question {
  width: 100%;
    padding: 25px;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
}
.faq-icon {
  color: #56d2e6;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
/* Contenido de la respuesta */
.faq-answer {
  max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 25px 25px;
    color: #64748b;
    line-height: 1.6;
}
/* Estado Activo */
.faq-item.active {
  border-color: #56d2e6;
    box-shadow: 0 10px 25px rgba(86, 210, 230, 0.1);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
    color: #0e1113;
}
.faq-item.active .faq-answer {
  max-height: 300px;
    /* Ajusta según el largo de tus textos */
}
/* Botón de cierre */
.faq-footer {
  margin-top: 80px;
    text-align: center;
    padding: 40px;
    background: #0e1113;
    border-radius: 20px;
    color: #fff;
}
.btn-faq {
  display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: #56d2e6;
    color: #0e1113;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-faq:hover {
  transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(86, 210, 230, 0.3);
}
/* Sección "Llave en Mano" */
.info-experiencia {
  padding: 80px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.info-container {
  max-width: 1140px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    /* Permite que baje en móviles */
    gap: 60px;
    align-items: center;
}
/* Imagen con bordes redondeados */
.info-image {
  flex: 1;
    min-width: 300px;
}
.info-image img {
  width: 100%;
    height: auto;
    border-radius: 28px;
    /* Mismo radio que tu cta-box */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}
/* Bloque de texto */
.info-content {
  flex: 1;
    min-width: 300px;
}
.info-titulo {
  font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a252b;
    /* O var(--dark) */
    margin-bottom: 25px;
    text-transform: uppercase;
}
.info-texto {
  font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}
/* Lista estilizada */
.info-lista {
  list-style: none;
    padding: 0;
}
.info-lista li {
  margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
}
.info-lista .check {
  color: #56d2e6;
    /* El celeste de Edibor */
    margin-right: 15px;
    font-weight: bold;
    font-size: 1.2rem;
}
/* Ajuste para pantallas pequeñas */
.fases-proyectos {
  max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}
.fases-header {
  margin-bottom: 40px;
    text-align: left;
}
.fases-titulo {
  font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.fases-lista {
  display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Tarjeta de Fase */
.fase-card {
  display: flex;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.fase-card:hover {
  transform: translateX(10px);
    /* Efecto sutil hacia la derecha */
    border-color: #56d2e6;
}
/* Círculo/Número de fase */
.fase-numero {
  background: #f8f9fa;
    color: #56d2e6;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
    min-width: 80px;
}
/* Contenido de la tarjeta */
.fase-content {
  padding: 25px 30px;
    flex: 1;
}
.fase-content h3 {
  font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a252b;
    text-transform: uppercase;
}
/* Lista interna */
.fase-items {
  list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Divide la lista en 2 columnas para ahorrar espacio */
    gap: 10px;
}
.fase-items li {
  font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
}
.fase-items li::before {
  content: "•";
    color: #56d2e6;
    font-weight: bold;
    margin-right: 10px;
}
/* Responsive */
/* Footer Negro Estilizado - EDIBOR */
/* Bloque de Información */
.footer-brand-info {
  margin-bottom: 10px;
}
.footer-company {
  font-size: 18px !important;
      font-weight: 700 !important;
      letter-spacing: 2px !important;
      text-transform: uppercase;
      margin: 0 0 6px 0 !important;
      color: #ffffff !important;
}
.footer-address {
  font-size: 11px !important;
      font-weight: 400 !important;
      letter-spacing: 1px !important;
      color: #aaaaaa !important; /* Gris claro elegante */
      margin: 0 0 12px 0 !important;
      text-transform: uppercase;
}
.footer-copyright {
  font-size: 11px !important;
      color: #666666 !important; /* Gris oscuro sutil para el copyright */
      margin: 0 !important;
}
/* Enlaces del Footer */
.footer-links a:hover {
  opacity: 1;
      color: #cccccc !important; /* Efecto sutil al pasar el mouse */
}
/* Ajuste Responsivo para Celulares */
/* --- ESTILOS REDES SOCIALES EN EL HEADER (MÁS GRANDES) --- */
.header-socials {
  display: flex;
      align-items: center;
      gap: 20px; /* Más espacio entre ellos */
      padding-left: 20px;
}
.header-socials a {
  font-size: 24px !important; /* Aumentado de 18px a 24px */
      color: #222222; /* Color sofisticado e intenso para el menú superior */
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animación más fluida */
}
/* Efecto hover en el Header (Crecen y cambian a su color de marca) */
.header-socials a.icon-whatsapp:hover {
  color: #25D366 !important;
      transform: scale(1.15) translateY(-2px);
}
.header-socials a.icon-instagram:hover {
  color: #E1306C !important;
      transform: scale(1.15) translateY(-2px);
}
/* --- ESTILOS REDES SOCIALES EN EL FOOTER NEGRO (MÁS GRANDES) --- */
.footer-socials {
  display: flex;
      gap: 25px; /* Más separación en el pie de página */
      justify-content: center;
      margin: 20px 0; /* Más espacio arriba y abajo de los íconos */
}
.footer-socials .footer-icon {
  font-size: 28px !important; /* Aumentado de 22px a 28px para que destaquen en el fondo negro */
      color: #ffffff !important;
      opacity: 0.75; /* Ligeramente transparentes para no saturar, pero bien visibles */
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* Efectos hover en el Footer (Se iluminan al 100%, crecen y toman color) */
.footer-socials .footer-icon:hover {
  opacity: 1;
      transform: scale(1.2);
}
.footer-socials .icon-whatsapp:hover {
  color: #25D366 !important;
}
.footer-socials .icon-instagram:hover {
  color: #E1306C !important;
}
/* --- AJUSTE RESPONSIVO PARA MÓVILES (FÁCILES DE TOCAR CON EL DEDO) --- */
/* --- CONTENEDOR DE BOTONES ALINEADOS --- */
.fila-boton-central {
  display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px; /* Espacio de separación entre ambos botones */
      margin-top: 40px;
      flex-wrap: wrap; /* Permite adaptarse a pantallas pequeñas */
}
/* Forzar que los enlaces se comporten como bloques flex idénticos */
.fila-boton-central a {
  text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 240px; /* Asegura que ambos tengan el mismo ancho mínimo */
      padding: 14px 28px;
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      border-radius: 4px; /* Opcional: cámbialo a 0px si usas un estilo 100% cuadrado */
      transition: all 0.3s ease;
}
/* --- ESTILO ESTILIZADO BOTÓN DE WHATSAPP PREMIUM --- */
.btn-cotizar-whatsapp {
  background-color: #25D366 !important;
      color: #ffffff !important;
      border: 1px solid #25D366;
      gap: 10px; /* Espacio entre el icono de WhatsApp y el texto */
}
.btn-cotizar-whatsapp i {
  font-size: 18px; /* Tamaño del icono */
}
/* Efecto Hover para WhatsApp */
.btn-cotizar-whatsapp:hover {
  background-color: #1ebd59 !important;
      border-color: #1ebd59;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
/* Mantener el comportamiento hover de tu botón de correo original */
/* --- OPTIMIZACIÓN RESPONSIVA PARA MÓVILES --- */
/* Fondo oscuro general de la sección */
/* --- BLOQUE SUPERIOR (Textos y Línea) --- */
.lista-tecnica-derecha li:last-child {
  margin-bottom: 0;
}
/* La línea divisoria cian */
/* --- BLOQUE INFERIOR (Botones) --- */
.botones-cotizacion {
  display: flex;
    gap: 15px;
    align-items: stretch;
}
.btn-dark {
  background-color: transparent;
    color: #ffffff;
    border: 1px solid #3f3f46;
    background-color: #27272a;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}
.btn-dark:hover {
  background-color: #3f3f46;
}
.btn-whatsapp {
  background-color: #25D366; /* Verde oficial de WhatsApp */
    color: #ffffff;
    padding: 10px 40px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.btn-whatsapp:hover {
  transform: scale(1.05);
}
/* --- CONTENEDOR PRINCIPAL --- */
.franja-contacto-compacta {
  background-color: #16181a;
    border-top: 1px solid #27272a;
    border-bottom: 1px solid #27272a;
    padding: 20px 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 60px;
    margin-bottom: 60px;
}
.contenedor-franja {
  max-width: 1100px; /* Esto mantiene el texto alineado con el resto de tu web */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
/* --- TEXTOS --- */
.franja-texto {
  display: flex;
    align-items: center;
    gap: 15px;
}
.franja-destacado {
  color: #38bdf8; /* El cian que usas, pero solo en este pequeño texto */
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.franja-separador {
  width: 1px;
    height: 20px;
    background-color: #3f3f46; /* Una pequeña línea separadora gris */
}
.franja-mensaje {
  color: #d4d4d8; /* Gris claro */
    font-size: 1rem;
    font-weight: 300;
}
.franja-mensaje strong {
  color: #ffffff;
    font-weight: 600;
}
/* --- BOTONES COMPACTOS --- */
.franja-botones {
  display: flex;
    gap: 12px;
}
.btn-franja-outline {
  background-color: transparent;
    color: #ffffff;
    border: 1px solid #52525b;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
.btn-franja-outline:hover {
  background-color: #27272a;
}
.btn-franja-wsp {
  background-color: #25D366;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}
.btn-franja-wsp:hover {
  opacity: 0.85;
}
/* --- RESPONSIVE PARA MÓVILES --- */
