@charset "UTF-8";
/* ========================================
   PROJECTS INTRO - VARIABLES ESPECÍFICAS
   ======================================== */
:root {
  --projects-intro-padding: 5rem 0;
  --industry-card-gap: 2rem;
  --project-preview-width: 280px;
  --industry-icon-size: 3rem;
  --projects-transition: all 0.3s ease;
}

/* ========================================
   PROJECTS INTRO CONTAINER
   ======================================== */
.projects-intro-wrapper {
  padding: var(--projects-intro-padding);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
  position: relative;
}
.projects-intro-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary-light) 50%, transparent 100%);
}

/* ========================================
   SECTION HEADER
   ======================================== */
.projects-intro-header {
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.projects-intro-subtitle {
  font-family: var(--font-text);
  font-weight: var(--font-semibold);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  color: var(--color-primary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.projects-intro-subtitle i {
  font-size: 1.1em;
  color: var(--color-secondary);
  margin-right: 0.5rem;
}

.projects-intro-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: 1.5rem;
  text-wrap: balance;
  position: relative;
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.projects-intro-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

.projects-intro-description {
  font-family: var(--font-text);
  font-weight: var(--font-regular);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: var(--lh-relaxed);
  color: var(--color-gray-700);
  margin-bottom: 0;
}

/* ========================================
   INDUSTRIES GRID
   ======================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: var(--industry-card-gap);
  margin-bottom: 4rem;
}

/* ========================================
   INDUSTRY CARDS - GLASS MORPHISM
   ======================================== */
.industry-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: var(--projects-transition);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.industry-card::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
  opacity: 0.8;
  transition: var(--projects-transition);
}
.industry-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary) 30%, var(--color-secondary) 70%, transparent 100%);
  border-radius: 0 0 24px 24px;
  opacity: 0.6;
  transition: var(--projects-transition);
}
.industry-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 60px rgba(31, 38, 135, 0.25), 0 8px 30px rgba(31, 38, 135, 0.15), 0 2px 10px rgba(93, 163, 160, 0.2);
}
.industry-card:hover::before {
  opacity: 1;
}
.industry-card:hover::after {
  opacity: 1;
  height: 4px;
}
.industry-card:hover .industry-icon i {
  transform: scale(1.15) rotate(5deg);
  color: var(--color-secondary);
}
.industry-card:hover .project-preview {
  transform: translateY(-2px);
}

/* ========================================
   INDUSTRY HEADER
   ======================================== */
.industry-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
}

.industry-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--color-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(93, 163, 160, 0.3);
}
.industry-icon i {
  font-size: var(--industry-icon-size);
  color: var(--color-white);
  transition: var(--projects-transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.industry-content {
  flex: 1;
  position: relative;
  z-index: 3;
}

.industry-title {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  line-height: var(--lh-tight);
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.industry-description {
  font-family: var(--font-text);
  font-weight: var(--font-regular);
  font-size: 0.95rem;
  line-height: var(--lh-relaxed);
  color: var(--color-gray-700);
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* ========================================
   PROJECTS PREVIEWS
   ======================================== */
.industry-projects {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 3;
}

.project-preview {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  width: 200px;
  transition: var(--projects-transition);
  position: relative;
  overflow: hidden;
}
.project-preview:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.project-preview:hover .project-link {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.project-image {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: var(--projects-transition);
}
.project-image:hover img {
  transform: scale(1.05);
}

.project-info {
  position: relative;
  z-index: 2;
}

.project-name {
  font-family: var(--font-text);
  font-weight: var(--font-semibold);
  font-size: 0.9rem;
  line-height: 1.2;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
}

.project-client {
  font-family: var(--font-text);
  font-weight: var(--font-regular);
  font-size: 0.8rem;
  color: var(--color-gray-600);
  margin-bottom: 0.5rem;
}

.project-stat {
  display: inline-block;
  background: rgba(93, 163, 160, 0.1);
  color: var(--color-primary-dark);
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: var(--font-medium);
}

.project-link {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--projects-transition);
  z-index: 3;
}
.project-link i {
  font-size: 0.9rem;
  color: var(--color-white);
}

/* ========================================
   SECTION CTA
   ======================================== */
.projects-intro-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-projects {
  padding: 1rem 2.5rem !important;
  font-family: var(--font-text) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  background: var(--color-primary) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 220px !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(93, 163, 160, 0.3) !important;
  transition: all 0.3s ease !important;
}
.btn-projects i {
  margin-right: 0.6rem !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease !important;
}
.btn-projects:hover, .btn-projects:focus {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(93, 163, 160, 0.4) !important;
  background: var(--color-primary-dark) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}
.btn-projects:hover i, .btn-projects:focus i {
  transform: translateX(3px) !important;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */
@media (max-width: 768px) {
  :root {
    --projects-intro-padding: 3rem 0;
    --industry-card-gap: 1.5rem;
    --industry-icon-size: 2.5rem;
  }
  .projects-intro-header {
    margin-bottom: 3rem;
  }
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .industry-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  .industry-header {
    flex-direction: column;
    text-align: center;
  }
  .industry-header .industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  .industry-projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    justify-items: center;
  }
  .project-preview {
    width: 100%;
    max-width: 160px;
  }
  .project-image {
    height: 80px;
  }
  .btn-projects {
    min-width: 200px !important;
    padding: 0.8rem 2rem !important;
  }
}
@media (max-width: 480px) {
  .industry-card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }
  .project-preview {
    max-width: 140px;
  }
  .project-image {
    height: 70px;
  }
  .project-name {
    font-size: 0.8rem;
  }
  .project-client {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=projects-intro.css.map */