@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Manrope:wght@400;500;600&display=swap");

:root {
  --gipro-bg: #0b1024;
  --gipro-bg-2: #12183a;
  --gipro-card: #171e42;
  --gipro-line: rgba(255, 255, 255, 0.1);
  --gipro-text: #e8eefc;
  --gipro-muted: #a9b4d0;
  --gipro-cyan: #2ee6c8;
  --gipro-orange: #ff7a18;
  --gipro-white: #ffffff;
}

.gipro-site {
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--gipro-text);
  background: var(--gipro-bg);
  overflow: hidden;
}

.gipro-site h1,
.gipro-site h2,
.gipro-site h3,
.gipro-brand span {
  font-family: Outfit, Manrope, sans-serif;
}

.gipro-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.gipro-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 4vw;
  background: rgba(11, 16, 36, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gipro-line);
}

.gipro-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gipro-white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gipro-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
}

.gipro-nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
}

.gipro-nav a {
  color: var(--gipro-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.gipro-nav a:hover {
  color: var(--gipro-cyan);
}

.gipro-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--gipro-cyan);
  cursor: pointer;
}

.gipro-burger::before {
  content: "";
  display: block;
  width: 18px;
  height: 12px;
  margin: 0 auto;
  background:
    linear-gradient(#0b1024, #0b1024) 0 0 / 100% 2px no-repeat,
    linear-gradient(#0b1024, #0b1024) 0 5px / 100% 2px no-repeat,
    linear-gradient(#0b1024, #0b1024) 0 10px / 100% 2px no-repeat;
}

.gipro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-family: Outfit, sans-serif;
}

.gipro-btn-orange {
  background: var(--gipro-orange);
  color: #1a0d00;
}

.gipro-btn-cyan {
  background: transparent;
  color: var(--gipro-cyan);
  border: 2px solid var(--gipro-cyan);
}

.gipro-btn-ghost {
  background: #2a314f;
  color: var(--gipro-white);
}

.gipro-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: 72px 0 88px;
}

.gipro-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 16, 36, 0.35) 0%, rgba(11, 16, 36, 0.88) 100%),
    url("https://www.grupoipro.com/wp-content/uploads/2022/02/valor-agregado-700x467-1.jpg") center/cover;
}

.gipro-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: 8vw;
}

.gipro-hero h1 {
  margin: 10px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--gipro-white);
}

.gipro-lead,
.gipro-intro {
  color: var(--gipro-muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

.gipro-kicker {
  color: var(--gipro-cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0;
}

.gipro-kicker-orange {
  color: #ffb27a;
}

.gipro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gipro-section,
.gipro-about,
.gipro-offer,
.gipro-cta,
.gipro-stats {
  padding: 84px 0;
}

.gipro-section h2,
.gipro-about h2,
.gipro-cta h2,
.gipro-offer h2 {
  margin: 8px 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gipro-white);
  max-width: 18ch;
}

.gipro-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.gipro-card {
  background: linear-gradient(180deg, #1b234c 0%, #141a38 100%);
  border: 1px solid var(--gipro-line);
  border-radius: 18px;
  padding: 24px;
  min-height: 250px;
}

.gipro-card span {
  color: var(--gipro-cyan);
  font-family: Outfit, sans-serif;
  font-weight: 800;
}

.gipro-card h3 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
}

.gipro-card p,
.gipro-about p,
.gipro-cta p {
  color: var(--gipro-muted);
  line-height: 1.6;
}

.gipro-card a {
  color: var(--gipro-orange);
  font-weight: 700;
  text-decoration: none;
}

.gipro-about {
  background: radial-gradient(circle at 80% 20%, rgba(46, 230, 200, 0.12), transparent 28%), var(--gipro-bg-2);
}

.gipro-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.gipro-about-photo img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  min-height: 340px;
}

.gipro-about-photo figcaption {
  margin-top: 10px;
  color: var(--gipro-muted);
  font-size: 0.92rem;
}

.gipro-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.gipro-values li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(46, 230, 200, 0.12);
  color: var(--gipro-cyan);
  font-weight: 700;
  font-size: 0.86rem;
}

.gipro-stats {
  padding: 28px 0;
  background: #090e1e;
  border-block: 1px solid var(--gipro-line);
}

.gipro-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.gipro-stats-row strong {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 2rem;
  color: var(--gipro-white);
}

.gipro-stats-row span {
  color: var(--gipro-muted);
}

.gipro-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  padding: 0;
  list-style: none;
}

.gipro-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--gipro-muted);
}

.gipro-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gipro-orange);
}

.gipro-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.gipro-logos img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  filter: grayscale(0.2);
}

.gipro-cta {
  background:
    linear-gradient(120deg, rgba(255, 122, 24, 0.18), rgba(46, 230, 200, 0.08)),
    var(--gipro-bg-2);
  text-align: center;
}

.gipro-cta h2,
.gipro-cta p {
  margin-left: auto;
  margin-right: auto;
}

.gipro-cta .gipro-actions {
  justify-content: center;
}

.gipro-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--gipro-line);
  color: var(--gipro-muted);
  font-size: 0.92rem;
}

.gipro-footer-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.gipro-footer a {
  color: var(--gipro-cyan);
  text-decoration: none;
}

body.home.elementor-page-29 #header,
body.home.elementor-page-29 #colophon,
body.home.elementor-page-29 .back-to-top,
body.elementor-template-canvas #header,
body.elementor-template-canvas #colophon {
  display: none !important;
}

body.page-id-280 #header,
body.page-id-396 #header,
body.page-id-280 .menu-section,
body.page-id-396 .menu-section,
body.page-id-280 .top-header,
body.page-id-396 .top-header {
  background: #0b1024 !important;
}

body.page-id-280 .nav-menu a,
body.page-id-396 .nav-menu a,
body.page-id-280 .site-title a,
body.page-id-396 .site-title a {
  color: #fff !important;
}

body.page-id-280 #colophon,
body.page-id-396 #colophon,
body.page-id-280 .copyright,
body.page-id-396 .copyright {
  background: #090e1e !important;
  color: #a9b4d0 !important;
}

.elementor-29 .elementor-section,
.elementor-29 .elementor-widget-html {
  margin: 0 !important;
}

.elementor-29 .elementor-element-gipro01,
.elementor-29 .elementor-element-gipro02 {
  padding: 0 !important;
}

@media (max-width: 980px) {
  .gipro-cards,
  .gipro-about-grid,
  .gipro-stats-row,
  .gipro-checklist,
  .gipro-logos {
    grid-template-columns: 1fr 1fr;
  }

  .gipro-hero-copy {
    margin-left: auto;
  }

  .gipro-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    background: #151c3d;
    padding: 16px;
    border-radius: 16px;
  }

  .gipro-site.is-open .gipro-nav {
    display: flex;
  }

  .gipro-burger {
    display: block;
    margin-left: auto;
  }

  .gipro-header .gipro-btn-ghost {
    display: none;
  }
}

@media (max-width: 640px) {
  .gipro-cards,
  .gipro-stats-row,
  .gipro-checklist,
  .gipro-logos,
  .gipro-about-grid {
    grid-template-columns: 1fr;
  }

  .gipro-hero {
    min-height: 78vh;
    padding-bottom: 56px;
  }
}
