:root {
  --dp-primary: #1f4f96;
  --dp-primary-dark: #163a70;
  --dp-primary-soft: #eaf2fb;
  --dp-text-dark: #16324f;
  --dp-text-muted: #5f7188;
  --dp-bg: #ffffff;
  --dp-surface: #ffffff;
  --dp-border: #d9e3f0;
  --dp-shadow: 0 12px 32px rgba(21, 45, 84, 0.08);
  --dp-radius: 18px;
  --dp-radius-sm: 12px;
  --dp-max-width: 1180px;
  --dp-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--dp-font);
  background: var(--dp-bg);
  color: var(--dp-text-dark);
}

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

.container {
  width: min(100% - 2rem, var(--dp-max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 248, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 227, 240, 0.8);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}

.brand-logo {
  display: block;
  height: 46px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.9rem;
  color: var(--dp-text-muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--dp-primary);
}

.hero-section {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(31, 79, 150, 0.10), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f5f8fc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dp-primary);
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.hero-copy p {
  margin: 0;
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--dp-text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--dp-primary);
  color: #fff;
  box-shadow: var(--dp-shadow);
}

.btn-primary:hover {
  background: var(--dp-primary-dark);
}

.btn-secondary {
  border: 1px solid var(--dp-border);
  background: #fff;
  color: var(--dp-primary);
}

.btn-secondary:hover {
  border-color: var(--dp-primary);
  background: var(--dp-primary-soft);
}

.hero-card {
  padding: 2rem;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: 24px;
  box-shadow: var(--dp-shadow);
}

.hero-card-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--dp-primary-soft);
  color: var(--dp-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.5rem;
}

.hero-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--dp-text-muted);
}

.content-section {
  padding: 5rem 0;
}

.section-soft {
  background: #f8fbff;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.section-text {
  max-width: 900px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--dp-text-muted);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.identity-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--dp-border);
  border-radius: 18px;
  box-shadow: var(--dp-shadow);
}

.identity-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dp-primary);
}

.identity-card p {
  margin: 0;
  line-height: 1.8;
  color: var(--dp-text-muted);
}

.gestor-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gestor-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0.65rem;
  background: #fff;
  border: 1px solid var(--dp-border);
  border-radius: 18px;
  box-shadow: var(--dp-shadow);
  flex-shrink: 0;
}

.gestor-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gestor-heading-text {
  display: flex;
  flex-direction: column;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.info-card,
.benefit-card {
  padding: 1.35rem;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  box-shadow: var(--dp-shadow);
}

.info-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 79, 150, 0.24);
  box-shadow: 0 16px 36px rgba(21, 45, 84, 0.10);
}

.info-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.info-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--dp-text-muted);
}

.solution-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--dp-border);
  border-radius: 16px;
  box-shadow: var(--dp-shadow);
  flex-shrink: 0;
}

.solution-logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.featured-card {
  border-color: rgba(31, 79, 150, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.solution-card-main {
  border-color: rgba(31, 79, 150, 0.34);
  box-shadow: 0 16px 36px rgba(21, 45, 84, 0.10);
}

.solution-card-main h3 {
  font-size: 1.3rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 90px;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--dp-border);
  border-radius: 18px;
  box-shadow: var(--dp-shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 79, 150, 0.26);
  box-shadow: 0 16px 36px rgba(21, 45, 84, 0.10);
}

.feature-item p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 700;
  color: var(--dp-text-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  min-height: 168px;
  padding: 1.75rem;
  line-height: 1.75;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 79, 150, 0.26);
  box-shadow: 0 16px 36px rgba(21, 45, 84, 0.10);
}

.benefit-card p {
  margin: 0;
}

.benefit-card-featured {
  border-color: rgba(31, 79, 150, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--dp-border);
  border-radius: 18px;
  box-shadow: var(--dp-shadow);
}

.service-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  color: var(--dp-text-dark);
}

.service-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--dp-text-muted);
}

.service-model-box {
  margin-top: 2rem;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--dp-border);
  border-radius: 18px;
  box-shadow: var(--dp-shadow);
}

.service-model-box p {
  margin: 0;
  line-height: 1.85;
  color: var(--dp-text-muted);
}

.contact-box {
  padding: 2rem;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: 24px;
  box-shadow: var(--dp-shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 2rem;
  align-items: center;
}

.contact-content .section-heading {
  margin-bottom: 1rem;
}

.contact-content .section-text {
  max-width: 100%;
  line-height: 1.85;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 2px solid rgba(31, 79, 150, 0.18);
  background: transparent;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--dp-primary);
  box-shadow: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.contact-mail:hover {
  color: var(--dp-primary-dark);
  border-bottom-color: rgba(31, 79, 150, 0.4);
}

.contact-aside {
  display: flex;
  justify-content: center;
}

.contact-visual-card {
  width: 100%;
  max-width: 340px;
  padding: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid var(--dp-border);
  border-radius: 22px;
  box-shadow: var(--dp-shadow);
  text-align: left;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 1.1rem;
  border-radius: 18px;
  background: var(--dp-primary-soft);
  color: var(--dp-primary);
  font-size: 1.8rem;
  font-weight: 700;
}

.contact-visual-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
  color: var(--dp-text-dark);
}

.contact-visual-text {
  margin: 0;
  line-height: 1.8;
  color: var(--dp-text-muted);
}

.contact-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-points li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: var(--dp-primary-soft);
  color: var(--dp-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero-grid,
  .cards-grid,
  .benefits-grid,
  .feature-list,
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .identity-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-visual-card {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .header-content {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

  .hero-section,
  .content-section {
    padding: 4rem 0;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .gestor-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}