/*
 * Hero Servicios Section - Figma Implementation (Light Theme)
 * Based on Figma Node ID: 2004-6067
 */

/* ===== SECTION CONTAINER ===== */
.hero-servicios-figma {
  background: linear-gradient(
      101deg,
      rgba(9, 56, 85, 0.9) 8.79%,
      rgba(23, 79, 113, 0.9) 95.41%
    ),
    url("../hero-servicios.jpg") lightgray 50% / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 120px 0 40px;
  min-height: 500px;
}

.hero-servicios-figma-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  position: relative;
}

/* ===== LEFT CONTENT COLUMN ===== */
.hero-servicios-figma-content {
  max-width: 600px;
}

.hero-servicios-figma-title {
  font-size: 3rem;
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
  line-height: 123.5%; /* 3.705rem */
  letter-spacing: 0.01563rem;
}

.hero-servicios-figma-subtitle {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 133.4%; /* 2.001rem */
  color: #ffffff;
}

/* ===== CALL TO ACTION ===== */
.hero-servicios-figma-cta {
  width: 100%;
  display: flex;
  gap: 1rem;
}

.hero-servicios-figma-cta-primary {
  display: inline-flex;
  height: 40px;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  background: #174f71;
  color: #ffffff;
  width: auto;
  white-space: nowrap;
}

.hero-servicios-figma-cta-primary:hover {
  background: #1e4a8c;
  box-shadow: 0 4px 12px rgba(43, 105, 199, 0.2);
  transform: translateY(-1px);
}

.hero-servicios-figma-cta-secondary {
  display: inline-flex;
  height: 40px;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  background: #174f71;
  color: #ffffff;
  width: auto;
  white-space: nowrap;
}

.hero-servicios-figma-cta-secondary:hover {
  background: #2b69c7;
  color: #ffffff;
}
.hero-servicios-figma-cta-tertiary {
  display: inline-flex;
  height: 40px;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  gap: 8px;
  border-radius: 24px;
  background: #174f71;
  width: auto;
  white-space: nowrap;
}

.hero-servicios-figma-cta-tertiary:hover {
  background: #2b69c7;
  color: #ffffff;
}

/* ===== RIGHT VISUAL COLUMN ===== */
.hero-servicios-figma-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

/* Additional decorative elements */
.hero-servicios-figma-visual::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 20%;
  width: 24px;
  height: 24px;
  background: #2b69c7;
  border-radius: 50%;
  opacity: 0.3;
}

.hero-servicios-figma-visual::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 25%;
  width: 16px;
  height: 16px;
  background: #e8f2ff;
  border-radius: 50%;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1200px) {
  .hero-servicios-figma-container {
    padding: 0 40px;
  }
}

/* Desktop */
@media (max-width: 1199px) {
  .hero-servicios-figma-container {
    gap: 60px;
    padding: 0 40px;
  }

  .hero-servicios-figma-title {
    font-size: 42px;
  }
}

/* Tablet */
@media (max-width: 1023px) {
  .hero-servicios-figma {
    padding: 60px 0 40px;
  }

  .hero-servicios-figma-container {
    gap: 40px;
    padding: 0 30px;
  }

  .hero-servicios-figma-title {
    font-size: 36px;
  }

  .hero-servicios-figma-subtitle {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-servicios-figma {
    padding: 40px 0 30px;
  }

  .hero-servicios-figma-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    text-align: center;
  }

  .hero-servicios-figma-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-servicios-figma-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-servicios-figma-cta {
    justify-content: center;
  }

  .hero-servicios-figma-cta-primary,
  .hero-servicios-figma-cta-secondary {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-servicios-figma-title {
    font-size: 28px;
  }

  .hero-servicios-figma-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-servicios-figma-cta-primary,
  .hero-servicios-figma-cta-secondary,
  .hero-servicios-figma-cta-tertiary {
    width: auto;
    max-width: none;
    margin: 0;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  .hero-servicios-figma-cta-primary,
  .hero-servicios-figma-cta-secondary {
    transition: none;
    transform: none;
  }

  .hero-servicios-figma-cta-primary:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .hero-servicios-figma {
    background: linear-gradient(101deg, #000000 8.79%, #1a1a1a 95.41%);
  }

  .hero-servicios-figma-title {
    color: #ffffff;
  }

  .hero-servicios-figma-subtitle {
    color: #cccccc;
  }

  .hero-servicios-figma-cta-primary {
    border: 2px solid #ffffff;
  }
}

/* ===== SERVICE NAVIGATION ===== */
.hero-servicios-figma-navigation {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
  margin-top: 40px;
}

.hero-servicios-figma-navigation .service-navigation {
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-servicios-figma-navigation .service-nav-item {
  flex: 0 0 auto;
}

.hero-servicios-figma-navigation .service-nav-icon {
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-servicios-figma-navigation .service-nav-active .service-nav-icon {
  background-color: white;
  border-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-servicios-figma-navigation .service-nav-active .service-nav-title {
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Print styles */
@media print {
  .hero-servicios-figma {
    background: none;
    color: #000000;
  }

  .hero-servicios-figma-cta {
    display: none;
  }

  .hero-servicios-figma-navigation {
    display: none;
  }
}
