@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800;900&display=swap");

:root {
  --orange: #f36f21;
  --orange-dark: #d95d16;
  --white: #ffffff;
  --gray-50: #f6f7f9;
  --gray-100: #eceff3;
  --gray-500: #68707c;
  --gray-800: #1e2630;
  --shadow: 0 18px 45px rgba(20, 27, 36, .12);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}
body {
  margin: 0;
  color: var(--gray-800);
  width: 100%;
  max-width: 100%;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
body :not(i):not(.fa):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-brands):not(svg):not(path) {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6, button, input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 90px 0; }
.center { text-align: center; margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.16); }
.btn--small { min-height: 34px; padding: 7px 14px; font-size: .86rem; }
.btn--orange { color: var(--white) !important; background: var(--orange); }
.btn--orange:hover { background: var(--orange-dark); }
.btn--white { color: var(--orange); background: var(--white); }
.btn--ghost { color: var(--white); border: 1px solid rgba(255,255,255,.65); }

.site-header { position: sticky; top: 0; z-index: 50; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.topbar { background: var(--white); font-size: 1.15rem; }
.topbar__inner, .topbar__contact, .topbar__actions { display: flex; align-items: center; }
.topbar__inner { min-height: 96px; justify-content: space-between; gap: 26px; }
.topbar__contact, .topbar__actions { gap: 32px; }
.topbar a { color: #414954; font-weight: 600; transition: color .25s ease; }
.topbar a:hover { color: var(--orange); }
.topbar__info-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  white-space: nowrap;
}
.topbar__info-link i { color: var(--orange) !important; margin-right: 12px; font-size: 1.65rem; vertical-align: middle; }
.topbar__logo { display: inline-flex; align-items: center; margin-right: 4px; }
.topbar__logo img { width: 224px; max-height: 76px; object-fit: contain; }
.icon { color: var(--orange); margin-right: 9px; font-size: 1.35rem; line-height: 1; }
/* Social Icons Header */
.social-header { display: flex; align-items: center; gap: 20px; }
.social-icon {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  background: #f0f2f5; color: var(--orange); font-size: 1.5rem;
  transition: all .3s ease;
}
.social-icon:hover { transform: translateY(-3px); background: var(--orange); box-shadow: 0 10px 20px rgba(243, 111, 33, 0.2); }
.social-icon:hover i { color: var(--white); }

.mainnav { background: var(--orange); color: var(--white); }
.mainnav__inner { min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 168px; max-height: 52px; object-fit: contain; }
.nav-menu { display: flex; justify-content: center; align-items: center; gap: 34px; font-weight: 700; }
.nav-menu > a, .mega-trigger { position: relative; color: var(--white); opacity: .95; padding: 14px 0; background: none; border: 0; font: inherit; cursor: pointer; }
.nav-menu > a::after, .mega-trigger::after {
  content: ""; position: absolute; left: 0; bottom: 8px; width: 0; height: 2px; background: var(--white); transition: width .25s ease;
}
.nav-menu > a:hover::after, .mega-trigger:hover::after { width: 100%; }
.has-mega { position: relative; }
.mega-menu {
  position: absolute; top: 100%; left: 50%; width: 620px;
  transform: translateX(-50%) translateY(12px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  padding: 22px; border-radius: 0 0 8px 8px;
  background: var(--white); color: var(--gray-800);
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: .25s ease;
}
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-menu a { padding: 12px; border-radius: 6px; color: #303944; }
.mega-menu a:hover { color: var(--orange); background: var(--gray-50); }
.nav-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; }
.nav-toggle span { display: block; height: 2px; margin: 7px 0; background: var(--white); transition: .25s ease; }

.hero { min-height: 76vh; }
.hero-slider { position: relative; min-height: 76vh; overflow: hidden; background: #111821; }
.hero-slide {
  position: absolute; inset: 0; display: grid; align-items: center;
  opacity: 0; transform: scale(1.03); transition: opacity .75s ease, transform 1.2s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-slide__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,13,20,.78), rgba(8,13,20,.46), rgba(8,13,20,.18)); }
.hero-slide__content { position: relative; z-index: 2; color: var(--white); max-width: var(--container); padding: 32px 0 54px; }
.eyebrow, .section-kicker { color: var(--orange); text-transform: uppercase; font-weight: 800; font-size: .82rem; letter-spacing: 0; }
.hero h1 {
  max-width: 820px;
  margin: 14px 0 16px;
  font-size: clamp(2.3rem, 5.5vw, 4.75rem);
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.hero p { max-width: 650px; margin: 0; font-size: 1.18rem; color: rgba(255,255,255,.88); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.45); border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--white); font-size: 2.2rem; cursor: pointer;
  padding: 0; line-height: 1;
  transition: all .25s ease;
}
.hero-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
}
.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }
.hero-dots { position: absolute; z-index: 3; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dots button { width: 11px; height: 11px; padding: 0; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer; }
.hero-dots button.is-active { background: var(--orange); }

.footer p { color: var(--gray-500); margin: 0; }

.about {
  position: relative;
  overflow: hidden;
  color: var(--gray-800);
  background:
    radial-gradient(circle at 8% 12%, rgba(243, 111, 33, .08), transparent 30%),
    linear-gradient(180deg, var(--white), var(--gray-50));
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(90deg, rgba(30,38,48,.06) 1px, transparent 1px),
    linear-gradient(rgba(30,38,48,.05) 1px, transparent 1px);
  background-size: 52px 52px;
}
.about .container { position: relative; z-index: 1; }
.about-heading { max-width: 870px; margin: 0 auto 58px; }
.about-heading h2 {
  margin: 8px 0 12px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
}
.about-heading__line {
  width: 96px;
  height: 4px;
  display: block;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffb071);
}
.about-heading p { margin: 0; color: var(--gray-500); font-size: 1.16rem; }
.about-main { margin-bottom: 46px; }
.about-copy {
  padding: 34px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 60px rgba(20,27,36,.1);
}
.about-copy p { margin: 0 0 16px; color: #4d5866; }
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 10px;
  padding: 13px 24px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 30px rgba(243,111,33,.24);
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}
.about-btn:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 18px 42px rgba(243,111,33,.34); }
.about-stats { margin-top: 10px; margin-bottom: 54px; }
.about-stat-card {
  height: 100%;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(20,27,36,.09);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.about-stat-card:hover,
.about-value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243,111,33,.45);
  background: linear-gradient(180deg, rgba(243,111,33,.08), var(--white));
}
.about-stat-card i,
.about-value-card i {
  color: var(--orange);
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.about-stat-card strong {
  display: block;
  color: var(--gray-800);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}
.about-stat-card:not(.about-stat-card--text) strong::before { content: "+"; color: var(--orange); }
.about-stat-card p { margin: 10px 0 0; color: var(--gray-500); font-weight: 700; }
.about-value-card {
  height: 100%;
  padding: 34px 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(20,27,36,.09);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.about-value-card h3 {
  margin: 0 0 16px;
  color: var(--gray-800);
  font-size: 1.45rem;
  text-transform: uppercase;
}
.about-value-card p { margin: 0 0 14px; color: var(--gray-500); }
.about-values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.about-values-list li {
  padding: 9px 10px;
  border: 1px solid rgba(243,111,33,.28);
  border-radius: 8px;
  color: var(--gray-800);
  background: rgba(243,111,33,.08);
  font-weight: 700;
  font-size: .92rem;
}

.section-heading h2, .cta h2 { margin: 8px 0 16px; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.08; }

.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.services { background: var(--white); }
.services-heading { max-width: 900px; margin: 0 auto 50px; }
.services-heading h2 {
  margin: 8px 0 12px;
  color: var(--gray-800);
  font-size: clamp(2.4rem, 4.6vw, 4.05rem);
  line-height: 1.02;
  font-weight: 900;
  text-transform: none;
}
.services-heading__line {
  position: relative;
  width: 120px;
  height: 3px;
  display: block;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffaf72);
}
.services-heading__line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
}
.services-heading p { margin: 0; color: var(--gray-500); font-size: 1.12rem; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  position: relative;
  min-height: 345px;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(20,27,36,.07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  box-shadow: 0 0 0 1px rgba(243,111,33,.22), 0 22px 54px rgba(243,111,33,.1);
  transition: opacity .28s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243,111,33,.34);
  box-shadow: 0 24px 58px rgba(20,27,36,.12);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  grid-auto-flow: column;
  gap: 8px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--gray-800);
  background: var(--gray-50);
  box-shadow: inset 0 0 0 1px rgba(30,38,48,.04);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.service-card__icon i {
  color: transparent;
  font-size: 3.35rem;
  line-height: 1;
  -webkit-text-stroke: 1.7px var(--gray-800);
}
.service-card__icon i:nth-child(even) { -webkit-text-stroke-color: var(--orange); }
.service-card:hover .service-card__icon {
  background: rgba(243,111,33,.09);
  transform: scale(1.06);
}
.service-card h3 {
  margin: 0;
  color: var(--gray-800);
  font-size: 1.17rem;
  line-height: 1.16;
  font-weight: 900;
}
.service-card h3::after {
  content: "";
  width: 42px;
  height: 2px;
  display: block;
  margin: 12px auto 12px;
  background: var(--orange);
}
.service-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: .95rem;
  line-height: 1.65;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: var(--orange);
  font-weight: 900;
}
.service-card a i { transition: transform .25s ease; }
.service-card a:hover i { transform: translateX(5px); }
.services-benefits {
  margin-top: 42px;
  padding: 22px 28px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--gray-50));
  box-shadow: 0 18px 45px rgba(20,27,36,.07);
}
.services-benefit {
  height: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 0 8px;
}
.services-benefits > div + div { border-left: 1px solid var(--gray-100); }
.services-benefit > i {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: transparent;
  background: transparent;
  font-size: 2.35rem;
  -webkit-text-stroke: 1.5px var(--orange);
}
.services-benefit h3 {
  margin: 0 0 5px;
  color: var(--gray-800);
  font-size: 1rem;
}
.services-benefit p {
  margin: 0;
  color: var(--gray-500);
  font-size: .93rem;
}

.cta { padding: 62px 0; color: var(--white); background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta h2 { margin: 0; max-width: 760px; }

.gallery { background: var(--gray-50); }
.gallery__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
.gallery__grid img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); filter: saturate(.95); transition: transform .3s ease, filter .3s ease; }
.gallery__grid img:first-child { grid-row: span 2; height: 538px; }
.gallery__grid img:hover { transform: scale(1.025); filter: saturate(1.15); }

.clients-slider { overflow: hidden; padding: 18px 0; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.clients-track { display: flex; gap: 22px; width: max-content; animation: clients 24s linear infinite; }
.client-logo {
  width: 190px;
  height: 104px;
  margin: 0;
  padding: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(28,35,45,.06);
}
.client-logo img {
  width: 150px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 1;
  transition: transform .25s ease;
}
.client-logo:hover img {
  transform: scale(1.08);
}
@keyframes clients { to { transform: translateX(-50%); } }

.footer { color: var(--white); background: var(--orange); }
.footer__grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1fr; gap: 15px; padding: 15px 0; }
.footer__brand { display: inline-block; margin-bottom: 5px; }
.footer__brand img { width: 160px; max-height: 54px; object-fit: contain; }
.footer h3 { margin: 0 0 8px; font-size: 1.1rem; }
.footer p, .footer a { color: rgba(255,255,255,.9); }
.footer__grid > div:not(:first-child) a { display: block; margin: 9px 0; }
.footer__social { display: flex; gap: 10px; margin-top: 10px; }
.footer__social .social-icon { width: 32px; height: 32px; font-size: 0.9rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.footer__social .social-icon:hover { background: var(--white); }
.footer__social .social-icon.fb:hover { color: #1877F2; }
.footer__social .social-icon.ig:hover { color: #E4405F; }
.footer__social .social-icon.ln:hover { color: #0A66C2; }
.footer__bottom { padding: 5px 0; border-top: 1px solid rgba(255,255,255,.25); text-align: center; color: rgba(255,255,255,.88); font-size: 0.85rem; }

.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 58px; height: 58px; display: grid; place-items: center;
  color: var(--white); background: #25d366; border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37,211,102,.36); animation: pulse 1.8s infinite;
}
.whatsapp-float svg { width: 34px; height: 34px; fill: #fff; }
.whatsapp-float svg path { fill: #fff; stroke: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Nosotros Page Styles */
.nosotros-hero { padding: 50px 0; background: #fff; overflow: hidden; }
.nosotros-hero .section-kicker { display: block; margin-bottom: 10px; font-size: 0.9rem; letter-spacing: 1px; }
.nosotros-hero h1 { font-size: 5rem; font-weight: 900; color: #080d14; margin-bottom: 15px; text-transform: uppercase; }
.nosotros-hero .divider { width: 60px; height: 5px; background: var(--orange); margin-bottom: 25px; border-radius: 2px; }
.nosotros-hero .subtitle { font-size: 1.2rem; color: #68707c; margin-bottom: 40px; max-width: 90%; }

.timeline-block { display: flex; gap: 20px; margin-bottom: 30px; position: relative; }
.timeline-block::before { content: ""; position: absolute; left: 19px; top: 40px; bottom: -30px; width: 2px; background: #eceff3; }
.timeline-block:last-child::before { display: none; }
.timeline-icon { 
  width: 40px; height: 40px; background: var(--orange); border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: #fff; font-size: 1rem; z-index: 1; box-shadow: 0 4px 10px rgba(243, 111, 33, 0.3);
}
.timeline-text { font-size: 1rem; color: #4d5866; line-height: 1.6; }

.btn--dark { 
  background: #080d14; color: #fff; padding: 16px 32px; border-radius: 8px; 
  font-weight: 700; display: inline-flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 30px rgba(8, 13, 20, 0.2); transition: all 0.3s ease;
}
.btn--dark:hover { background: #111821; color: #fff; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(8, 13, 20, 0.3); }
.btn--dark i { color: var(--orange); }

.nosotros-image-container { position: relative; border-radius: 24px; overflow: visible; height: 100%; min-height: 500px; }
.nosotros-main-img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.nosotros-image-container::after { 
  content: ""; position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(0deg, rgba(8,13,20,0.4) 0%, transparent 50%);
}

.floating-quality { 
  position: absolute; top: 40px; right: -20px; width: 240px; padding: 30px;
  background: rgba(8, 13, 20, 0.85); backdrop-filter: blur(10px); border-radius: 16px;
  color: #fff; border: 1px solid rgba(255,255,255,0.1); z-index: 5;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.floating-quality i { font-size: 2rem; color: var(--orange); margin-bottom: 15px; display: block; }
.floating-quality h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; }
.floating-quality p { font-size: 0.9rem; opacity: 0.8; margin: 0; }

.nosotros-stats { margin-top: -60px; position: relative; z-index: 10; display: flex; gap: 20px; }
.stat-card-premium { 
  flex: 1; background: #fff; padding: 30px 20px; border-radius: 24px; text-align: center;
  box-shadow: 0 20px 40px rgba(20, 27, 36, 0.1); border: 1px solid #eceff3;
  transition: all 0.3s ease;
}
.stat-card-premium:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(20, 27, 36, 0.15); }
.stat-card-premium i { font-size: 2.2rem; color: var(--orange); margin-bottom: 15px; display: block; }
.stat-card-premium h3 { font-size: 2.5rem; font-weight: 900; color: #080d14; margin-bottom: 5px; }
.stat-card-premium p { font-size: 0.85rem; font-weight: 800; color: #68707c; text-transform: uppercase; margin: 0; }

.institucional-section { padding-bottom: 20px; background: #fff; }
.institucional-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 30px; }
.card-premium { 
  background: #f6f7f9; border-radius: 30px; padding: 45px; border: 1px solid #eceff3;
  transition: all 0.3s ease; height: 100%;
}
.card-premium:hover { transform: translateY(-5px); background: #fff; box-shadow: var(--shadow); }
.card-premium i { width: 60px; height: 60px; background: var(--orange); color: #fff; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 25px; }
.card-premium h3 { font-size: 1.8rem; font-weight: 900; margin-bottom: 20px; color: #080d14; }
.card-premium p { color: #4d5866; line-height: 1.7; margin-bottom: 15px; }

.values-card-full { 
  background: #f6f7f9; border-radius: 30px; padding: 0; overflow: hidden; display: flex;
  border: 1px solid #eceff3; transition: all 0.3s ease;
}
.values-card-full:hover { transform: translateY(-5px); background: #fff; box-shadow: var(--shadow); }
.values-content { padding: 45px; flex: 1; }
.values-img { width: 40%; object-fit: cover; }
.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.value-item { display: flex; align-items: center; gap: 15px; font-weight: 700; color: #080d14; }
.value-item i { width: 30px; height: 30px; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }

@media (max-width: 992px) {
  .nosotros-hero h1 { font-size: 3.5rem; }
  .floating-quality { position: relative; top: 0; right: 0; width: 100%; margin-top: 20px; }
  .nosotros-stats { flex-direction: column; margin-top: 30px; }
  .institucional-grid { grid-template-columns: 1fr; }
  .values-card-full { flex-direction: column; }
  .values-img { width: 100%; height: 250px; }
  .values-list { grid-template-columns: 1fr; }
}

/* Contacto Page Styles */
.contact-page { background: #fff; padding: 60px 0 100px; position: relative; overflow: hidden; }
.contact-page::before { 
  content: ""; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; 
  background: radial-gradient(circle, rgba(243,111,33,0.05) 0%, transparent 70%); z-index: 0; 
}
.contact-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.contact-header h1 { font-size: 3.8rem; font-weight: 900; color: #080d14; margin: 10px 0; }
.contact-header .divider { width: 80px; height: 4px; background: var(--orange); margin: 20px auto; border-radius: 2px; }
.contact-header p { font-size: 1.15rem; color: #68707c; max-width: 700px; margin: 0 auto; }

.contact-main-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; position: relative; z-index: 1; }
.contact-card-premium { 
  background: #fff; border-radius: 24px; padding: 50px; 
  box-shadow: 0 30px 70px rgba(20, 27, 36, 0.08); border: 1px solid #eceff3;
  transition: all 0.3s ease; height: 100%; position: relative;
}
.contact-card-premium:hover { transform: translateY(-5px); box-shadow: 0 40px 90px rgba(20, 27, 36, 0.12); }
.contact-card-title { display: flex; align-items: center; gap: 15px; margin-bottom: 40px; }
.contact-card-title i { width: 45px; height: 45px; background: var(--orange); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 8px 15px rgba(243, 111, 33, 0.3); }
.contact-card-title h3 { font-size: 1.6rem; font-weight: 900; margin: 0; color: #080d14; }

.form-group-custom { margin-bottom: 25px; position: relative; }
.form-group-custom i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: #68707c; font-size: 1rem; transition: color 0.3s ease; }
.form-control-custom { 
  background: #f8f9fa; border: 1px solid #eceff3; border-radius: 14px; padding: 16px 20px 16px 50px; 
  font-size: 1rem; color: #080d14; width: 100%; transition: all 0.3s ease;
}
.form-control-custom:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 10px 20px rgba(243, 111, 33, 0.1); }
.form-control-custom:focus + i { color: var(--orange); }

textarea.form-control-custom { padding-top: 20px; min-height: 140px; }

.btn-send-premium { 
  width: 100%; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; 
  border: none; padding: 18px; border-radius: 14px; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; gap: 15px;
  box-shadow: 0 15px 35px rgba(243, 111, 33, 0.3); transition: all 0.3s ease; cursor: pointer;
}
.btn-send-premium:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(243, 111, 33, 0.4); opacity: 0.95; }

.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-item { display: flex; gap: 20px; padding: 25px 0; border-bottom: 1px solid #eceff3; }
.contact-info-item:last-child { border-bottom: none; }
.info-icon { 
  width: 50px; height: 50px; background: rgba(243, 111, 33, 0.1); color: var(--orange); 
  border-radius: 50%; display: flex; align-items: center; justify-content: center; 
  font-size: 1.3rem; flex-shrink: 0; transition: all 0.3s ease;
}
.contact-info-item:hover .info-icon { background: var(--orange); color: #fff; transform: rotateY(180deg); }
.info-content h5 { font-size: 1rem; font-weight: 800; margin-bottom: 5px; color: #080d14; }
.info-content p { margin: 0; color: #68707c; font-size: 0.95rem; line-height: 1.4; }

.social-section { margin-top: 40px; }
.social-section h4 { font-size: 0.9rem; font-weight: 900; color: #080d14; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.social-links-premium { display: flex; gap: 15px; }
.social-link-item { 
  width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; border: 1px solid #eceff3; transition: all 0.3s ease;
}
.social-link-item.fb { color: #1877f2; }
.social-link-item.ig { color: #e4405f; }
.social-link-item.ln { color: #0077b5; }
.social-link-item.wa { color: #25d366; }
.social-link-item:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-5px); }

.floating-fast-response { 
  position: absolute; bottom: 80px; right: -40px; width: 280px; padding: 35px;
  background: rgba(8, 13, 20, 0.9); backdrop-filter: blur(15px); border-radius: 20px;
  color: #fff; border: 1px solid rgba(255,255,255,0.1); z-index: 10;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 20px rgba(243,111,33,0.2);
  display: flex; gap: 20px; align-items: center;
}
.floating-fast-response i { font-size: 2.5rem; color: var(--orange); text-shadow: 0 0 15px rgba(243,111,33,0.5); }
.floating-fast-response h4 { font-size: 1.1rem; font-weight: 900; margin-bottom: 5px; }
.floating-fast-response p { font-size: 0.85rem; opacity: 0.8; margin: 0; line-height: 1.5; }

@media (max-width: 992px) {
  .contact-header h1 { font-size: 2.8rem; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .floating-fast-response { position: relative; bottom: 0; right: 0; width: 100%; margin-top: 30px; }
  .contact-card-premium { padding: 30px; }
}

/* ==========================================================
   Paginas de servicios
   Estilos usados por telecomunicaciones, estructuras,
   logistica, tercerizacion y demas paginas internas.
   ========================================================== */

:root {
  --tech-blue: #00d2ff;
  --tech-blue-dark: #0056b3;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --dark-bg: #080d14;
}

/* Hero interno de servicios */
.telecom-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: var(--dark-bg);
}

.telecom-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.telecom-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
}

.telecom-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(8, 13, 20, 0.9) 0%, rgba(8, 13, 20, 0.4) 50%, rgba(243, 111, 33, 0.1) 100%);
}

.telecom-hero__lighting {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: radial-gradient(circle at 20% 30%, rgba(0, 210, 255, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(243, 111, 33, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.telecom-hero > .container {
  position: relative;
  z-index: 10;
}

.telecom-hero__content {
  position: relative;
  z-index: 11;
  max-width: 850px;
  width: 100%;
  color: var(--white);
}

.telecom-hero .eyebrow {
  color: var(--orange);
}

.telecom-hero h1 {
  font-size: clamp(2.15rem, 5.4vw, 4.5rem);
  font-weight: 900;
  line-height: 1.06;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  color: var(--white);
}

.telecom-hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}

/* Bloques de contenido en paginas de servicios */
.tech-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.service-image-container {
  position: relative;
  padding: 15px;
}

.service-image-container img {
  width: 100%;
  transition: transform 0.5s ease;
}

.service-image-container:hover img {
  transform: scale(1.02);
}

.premium-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 1.1rem;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.premium-list li:last-child {
  border-bottom: none;
}

.premium-list li i {
  color: var(--orange);
  font-size: 1.3rem;
}

.premium-list li:hover {
  padding-left: 10px;
  color: var(--orange);
}

/* Seccion de beneficios en paginas de servicios */
.why-section {
  background: var(--white);
  color: var(--gray-800);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(243, 111, 33, 0.03) 0%, transparent 70%);
}

.feature-box {
  padding: 30px;
  border-radius: 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: var(--white);
  border-color: var(--orange);
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}

.feature-box h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--gray-800);
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin: 0;
}

/* AOS: evita que elementos animados reciban clicks antes de terminar */
[data-aos] {
  pointer-events: none;
}

.aos-animate {
  pointer-events: auto;
}

/* ==========================================================
   Responsive general
   Todas las reglas de tablet y celular van al final para
   sobrescribir los estilos base sin usar archivos extra.
   ========================================================== */

@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { gap: 22px; }
}

@media (max-width: 860px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  .topbar__inner { justify-content: center; }
  .topbar__contact {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }
  .topbar__logo { width: 100%; justify-content: center; margin-right: 0; }
  .topbar__logo img { width: 184px; max-height: 64px; }
  .topbar__info-link { font-size: clamp(.98rem, 3.4vw, 1.08rem); }
  .topbar__info-link i { margin-right: 9px; font-size: 1.35rem; }
  .topbar__actions { display: none; }
  .mainnav__inner { justify-content: flex-end; min-height: 48px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 144px; left: 0; right: 0; bottom: 0;
    display: block; padding: 22px 24px 50px;
    background: var(--orange); overflow-y: auto;
    transform: translateX(100%); transition: transform .28s ease;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu > a, .mega-trigger { display: block; width: 100%; padding: 15px 0; text-align: left; }
  .mega-menu {
    position: static; width: 100%; transform: none; opacity: 1; visibility: visible;
    display: grid; grid-template-columns: 1fr; margin: 4px 0 14px; padding: 12px;
    box-shadow: none; border-radius: var(--radius);
  }
  .hero, .hero-slider { min-height: 70vh; }
  .hero-slide__content { padding: 32px 0 50px; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 3rem); line-height: 1.05; }
  .hero-arrow { display: none; }
  .cta__inner { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
  .about-heading { margin-bottom: 38px; }
  .about-copy { padding: 28px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid img:first-child { grid-row: auto; grid-column: span 2; height: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .telecom-hero {
    height: auto;
    min-height: 0;
    padding: 76px 0 64px;
  }

  .telecom-hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .telecom-hero p {
    font-size: clamp(1rem, 4.8vw, 1.18rem);
    line-height: 1.55;
    margin-bottom: 0;
    padding-left: 14px;
  }

  .premium-list li {
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.45;
  }

  .telecom-hero--cctv h1 {
    font-size: clamp(1.45rem, 6.4vw, 2rem);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .telecom-hero--cctv p {
    font-size: clamp(.96rem, 4.2vw, 1.08rem);
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 64px 0; }
  .topbar__inner { min-height: 98px; padding: 10px 0; }
  .topbar__logo img { width: 168px; max-height: 58px; }
  .topbar__contact { gap: 8px 12px; }
  .topbar__info-link {
    width: auto;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    line-height: 1.2;
  }
  .hero, .hero-slider { min-height: 68vh; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.25rem); line-height: 1.08; }
  .hero p { font-size: 1rem; }
  .services__grid, .gallery__grid, .footer__grid { grid-template-columns: 1fr; }
  .services-heading h2 { font-size: 2.35rem; }
  .service-card { min-height: auto; padding: 24px 20px; }
  .service-card__icon { width: 104px; height: 104px; }
  .service-card__icon i { font-size: 3rem; }
  .services-benefits { padding: 20px; }
  .services-benefits > div + div { border-left: 0; border-top: 1px solid var(--gray-100); padding-top: 18px; }
  .about-heading h2 { font-size: 2.45rem; }
  .about-heading p { font-size: 1rem; }
  .about-copy { padding: 22px; }
  .about-stats { margin-bottom: 36px; }
  .about-stat-card, .about-value-card { padding: 26px 20px; }
  .about-values-list { grid-template-columns: 1fr; }
  .gallery__grid img, .gallery__grid img:first-child { grid-column: auto; height: 245px; }
  .client-logo { width: 154px; height: 88px; padding: 10px; }
  .client-logo img { width: 124px; height: 58px; }
  .footer__grid { padding: 50px 0; }
  .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.8rem; }
  .topbar__info-link { font-size: .96rem; }
  .telecom-hero { padding: 58px 0 52px; }
  .telecom-hero h1 { font-size: 1.68rem; }
  .telecom-hero--cctv h1 { font-size: 1.36rem; }
  .telecom-hero p { font-size: .98rem; }
}
