.hero-highlight {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.55);
  color: #1f2933;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.hero-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 122, 41, 0.22), rgba(220, 230, 245, 0.18));
  color: #374151;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 8px 18px rgba(110, 124, 146, 0.16);
}

.highlight-content h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: #111827;
}

.highlight-content p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(71, 84, 99, 0.92);
  margin-bottom: 0.4rem;
}

.hero-highlight--tech .highlight-icon {
  background: linear-gradient(135deg, rgba(255, 166, 74, 0.3), rgba(255, 229, 199, 0.2));
}

.hero-highlight--info .highlight-icon {
  background: linear-gradient(135deg, rgba(255, 184, 51, 0.3), rgba(255, 235, 194, 0.18));
}

.hero-highlight--whatsapp .highlight-icon {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.33), rgba(189, 255, 216, 0.2));
}

.hero-highlight--phone .highlight-icon {
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.3), rgba(255, 215, 186, 0.18));
}
/* 
 * HOME PAGE CSS - Instituto de Córnea S.A.S.
 * Estilos específicos para index.html
 */

/* Hero principal con video */
.hero {
  position: relative;
  min-height: 88vh;
  padding: calc(var(--navbar-height) + 2rem) 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: none;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero.hero-video {
  background-color: #f3f5f8;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1) contrast(1.02) brightness(0.92);
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(237, 239, 242, 0.18) 48%, rgba(222, 225, 230, 0.12) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
}

.hero-content {
  text-align: center;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(200, 205, 214, 0.7);
  color: #374151;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #ff8c32;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title {
    background: linear-gradient(115deg, #ff7a18 0%, #ff8c32 35%, #ffb347 70%, #ffd770 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  line-height: 1.6;
  color: rgba(31, 41, 51, 0.85);
  margin: 0 0 1.5rem;
  max-width: 700px;
  font-weight: 400;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #0f172a;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero .btn {
  min-width: 220px;
  justify-content: center;
}

.hero .btn-primary {
  box-shadow: 0 16px 35px rgba(255, 102, 0, 0.25);
}

.hero .btn-outline {
  color: #1f2933;
  border: 1px solid rgba(96, 104, 118, 0.35);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 28px rgba(31, 41, 51, 0.08);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(31, 41, 51, 0.45);
  color: #0f172a;
}

.hero-highlight-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
  margin-top: 0.2rem;
  margin-bottom: -2.4rem;
}

.hero-highlight {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(238, 241, 245, 0.92);
  border: 1px solid rgba(209, 213, 219, 0.7);
  color: #1f2933;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.hero-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.98);
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: radial-gradient(circle at top, rgba(255, 153, 66, 0.3), rgba(229, 231, 235, 0.2));
  color: #374151;
  flex-shrink: 0;
  font-size: 1.05rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 6px 14px rgba(99, 110, 130, 0.16);
}

.highlight-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.highlight-content p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(71, 84, 99, 0.88);
  margin-bottom: 0.35rem;
}

.highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.highlight-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.highlight-link:hover::after {
  transform: scaleX(1);
}

.highlight-link:hover {
  color: var(--secondary-orange);
}

.hero-highlighted {
  color: var(--primary-orange);
}

@media (max-width: 992px) {
  .hero {
    padding: calc(var(--navbar-height) + 1.8rem) 0 2.5rem;
  }

  .hero-container {
    gap: 1.8rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: calc(var(--navbar-height) + 1.6rem) 0 2.5rem;
  }

  .hero-content {
    gap: 0.9rem;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .hero .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-highlight-cards {
    grid-template-columns: 1fr;
  }

  .hero-highlight {
    padding: 1.5rem;
  }
}

/* Experience Section */
.experience-section {
  padding: var(--section-padding);
  background: white;
}

.experience-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: var(--card-border-radius);
  transition: transform var(--transition-base);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray-medium);
  font-weight: 500;
}

.experience-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--primary-orange);
}

.experience-text h3:first-of-type {
  margin-top: 0;
}

.experience-text p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.experience-list li {
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.experience-list li i {
  color: var(--primary-orange);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .experience-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .experience-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* VisuMax 800 Section */
.visu-section {
  padding: var(--section-padding);
  background: white;
  position: relative;
}

/* Services Overview */
.services-overview {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--card-border-radius);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}

.service-card p {
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

.service-link:hover {
  gap: 1rem;
  color: var(--secondary-orange);
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
  background: white;
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.team-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-info p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.team-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.team-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: rgba(244, 247, 252, 0.92);
  border-radius: 18px;
  border: 1px solid rgba(221, 228, 239, 0.7);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.team-highlight-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 155, 68, 0.3), rgba(255, 215, 186, 0.18));
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 18px rgba(113, 128, 150, 0.18);
}

.team-highlight h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: #111827;
}

.team-highlight p {
  font-size: 0.95rem;
  color: rgba(71, 84, 99, 0.92);
  margin: 0;
}

.team-visual .team-image {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.team-photo {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .team-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .team-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-left {
    order: 1;
  }
  
  .cta-form {
    order: 2;
  }
  
  .cta-left h2,
  .cta-left p {
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .map-container iframe {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--navbar-height) + 1rem);
    padding-bottom: 3rem;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 3.4rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    max-width: none;
    margin-bottom: 1.5rem;
  }

  .hero-actions,
  .contact-buttons-hero {
    width: 100%;
  }

  .contact-btn {
    width: 100%;
    justify-content: flex-start;
  }

  .carousel-container {
    height: 210px;
  }

  .experience-content {
    gap: 2rem;
  }

  .experience-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .experience-text h2 {
    font-size: 2rem;
  }

  .experience-text p {
    font-size: 1rem;
  }

  #visumax800 .visu-hero {
    padding: 3rem 1rem;
  }

  #visumax800 .visu-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #visumax800 .visu-visual {
    order: -1;
  }

  #visumax800 .visu-video {
    display: none;
  }

  .visu-benefits {
    display: grid;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.75rem 1.5rem;
  }

  .team-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .team-highlights {
    grid-template-columns: 1fr;
  }

  .team-highlight {
    padding: 1.25rem;
    gap: 0.85rem;
  }

  .team-highlight i {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }

  .team-highlight h4 {
    font-size: 1.05rem;
  }

  .team-highlight p {
    font-size: 0.9rem;
  }

  .cta-left h2 {
    font-size: 2rem;
  }

  .cta-left p {
    font-size: 1rem;
  }

  .cta-form {
    padding: 2rem 1.5rem;
  }

  .cta-buttons {
    gap: 0.75rem;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .map-container iframe {
    height: 220px;
  }
}

