:root {
  --bg: #f5f7fa;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #667085;
  --dark: #1b1f26;
  --dark-2: #2e3440;
  --orange: #f57c00;
  --orange-2: #ff9f1c;
  --blue: #0d5fb8;
  --blue-2: #1f8fe5;
  --border: rgba(31, 41, 55, 0.1);
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.1);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

.btn-top{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2d3d54;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.img2{
  width: 50%;
  margin-left: 25%;
  border-radius: 5px;
  margin-bottom: 20px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 58px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--dark-2);
  font-size: 0.80rem;
  font-weight: 600;
}

.site-nav a:hover{
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 5px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  box-shadow: 0 14px 28px rgba(245, 124, 0, 0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
}

.btn-nav {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff !important;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(31,143,229,0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(245,124,0,0.24), transparent 30%),
    linear-gradient(135deg, #1b1f26 0%, #2a3140 48%, #0c4e93 100%);
  color: #fff;
}

.hero-overlay,
.band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.26));
  pointer-events: none;
}


.hero-overlay-img {
  position: absolute;
  inset: 0;
  background-image: url(images/fondo1.jpeg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 100px 0;
}

.eyebrow,
.section-tag {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 18px;
}

.eyebrow {
  color: rgba(255,255,255,0.78);
}

.section-tag {
  color: var(--orange);
}

.section-tag.light {
  color: rgba(255,255,255,0.75);
}

.hero h1,
.section h2,
.cta-box h2 {
  margin: 0 0 18px;
  line-height: 1.08;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.section h2,
.cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.hero p,
.section-head p,
.section p,
.cta-box p {
  font-size: 1.02rem;
  color: inherit;
}

.hero-copy p {
  max-width: 720px;
  color: rgba(255,255,255,0.85);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  position: relative;
}

.hero-card-inner {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 24px 40px rgba(0,0,0,0.18);
}

.hero-logo {
  width: 200px;
  margin-bottom: 20px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.9);
}

.hero-card li + li {
  margin-top: 12px;
}

.parallax-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.6;
  will-change: transform;
}

.shape-one {
  width: 320px;
  height: 320px;
  top: 7%;
  right: -80px;
  background: radial-gradient(circle, rgba(245,124,0,0.55), rgba(245,124,0,0));
}

.shape-two {
  width: 260px;
  height: 260px;
  bottom: 10%;
  left: -70px;
  background: radial-gradient(circle, rgba(31,143,229,0.55), rgba(31,143,229,0));
}

.shape-three {
  width: 180px;
  height: 180px;
  top: 22%;
  left: 38%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), rgba(255,255,255,0));
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(245,247,250,1));
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card,
.feature-item,
.mission-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

.info-card h3,
.feature-item h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.parallax-band {
  position: relative;
  background:
    linear-gradient(135deg, rgba(13,95,184,0.86), rgba(28,35,46,0.92)),
    url('loghetto.jpeg') center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
}

.band-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

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

.brand-grid span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 18px 20px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}

.consulting-grid {
  align-items: stretch;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.mission-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-section {
  background: linear-gradient(135deg, #1b1f26, #2d3d54);
  color: #fff;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.site-footer {
  padding: 28px 0;
  background: #0f1723;
  color: rgba(255,255,255,0.8);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid rgba(31,41,55,0.1);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle .material-symbols-outlined{
  color: black;
}

.firma{
  font-size: 12px;
  color: #667085;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (max-width: 1024px) {
  .hero-content,
  .two-col,
  .card-grid,
  .brand-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .brand-grid {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 80px 0;
  }

  .cta-box,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

.img2{
  width: 100%;
  margin-left: 0;
}
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(31,41,55,0.08);
    border-radius: 22px;
    box-shadow: 0 22px 40px rgba(16,24,40,0.12);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .btn-nav {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .hero-content {
    gap: 28px;
    padding: 68px 0;
  }

  .hero-card-inner,
  .info-card,
  .feature-item,
  .mission-box,
  .cta-box {
    padding: 22px;
  }

  .brand img {
    height: 46px;
  }

  .hero-logo {
    width: 160px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
