body {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  background: white !important;
}

.navbar.fixed-top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}

body {
  padding-top: 76px !important;
  min-height: 100vh;
}

section {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  min-height: 50vh;
  position: relative;
}

/* SECCION HERO */
.hero-nosotros {
  position: relative;
  min-height: 60vh;
  background-image: url("../img/banner-gps-2.jpg");
  display: flex;
  align-items: center;
  margin: 0;
  padding: 120px 0 60px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 40px 0;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

section[id] {
  scroll-margin-top: 100px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.section-badge {
  background: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
}

/* MISION  y VISION */
.mission-vision-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: center;
  border-left: 4px solid #007bff;
  margin-bottom: 30px;
}

.mission-vision-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mission-vision-card .card-icon i {
  font-size: 2.5rem;
  color: white;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #007bff;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-year {
  position: absolute;
  left: -30px;
  top: 0;
  background: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 0.9rem;
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin-left: 30px;
}

.history-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.stat-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .hero-nosotros {
    min-height: 50vh;
    padding: 100px 0 40px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .history-stats {
    grid-template-columns: 1fr;
  }
}

.force-visible {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.section-highlight {
  animation: sectionHighlight 2s ease-in-out;
}

@keyframes sectionHighlight {
  0% {
    background-color: transparent;
    box-shadow: none;
  }
  50% {
    background-color: rgba(0, 123, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
  }
  100% {
    background-color: transparent;
    box-shadow: none;
  }
}

.timeline-item,
.mission-vision-card,
.value-card,
.team-card,
.stat-card,
.certification-item {
  transition: all 0.3s ease-out !important;
}

.mission-vision-card:hover,
.value-card:hover,
.team-card:hover,
.stat-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-icon,
.value-icon {
  transition: all 0.3s ease-out !important;
}

.mission-vision-card:hover .card-icon,
.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg) !important;
  filter: brightness(1.1) !important;
}

.timeline-year {
  transition: all 0.3s ease-out !important;
}

.timeline-item:hover .timeline-year {
  transform: scale(1.1) !important;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3) !important;
}

.scroll-to-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-2px) !important;
}

.stat-number {
  transition: all 0.3s ease-out;
}

.stat-card:hover .stat-number {
  color: #007bff !important;
  transform: scale(1.1) !important;
}

.nav-pills .nav-link {
  transition: all 0.3s ease-out !important;
}

.nav-pills .nav-link.active {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3) !important;
}

.tab-pane .team-card,
.tab-pane .team-card-large {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}

.tab-pane.show .team-card,
.tab-pane.show .team-card-large {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .mission-vision-card:hover,
  .value-card:hover,
  .team-card:hover {
    transform: translateY(-2px) !important;
  }

  .card-icon,
  .value-icon {
    transform: none !important;
  }
}

.mission-vision-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  text-align: center;
  border-left: 4px solid #007bff;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 123, 255, 0.05),
    transparent
  );
  transition: left 0.6s;
}

.mission-vision-card:hover::before {
  left: 100%;
}

.mission-vision-card .card-icon {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.mission-vision-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.mission-vision-card h3 {
  position: relative;
  z-index: 2;
}

.mission-vision-card p {
  position: relative;
  z-index: 2;
}

/* SECCION ALIADOS ESTRATÉGICOS */
.aliados-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 1.1rem;
}

.aliados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.aliado-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.aliado-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 123, 255, 0.05),
    transparent
  );
  transition: left 0.6s;
}

.aliado-card:hover::before {
  left: 100%;
}

.aliado-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.aliado-card:hover::after {
  transform: scaleX(1);
}

.aliado-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.aliado-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.aliado-card:hover .aliado-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.aliado-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  position: relative;
  z-index: 2;
}

.aliado-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.aliado-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.aliado-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  position: relative;
}

.aliado-list li:last-child {
  border-bottom: none;
}

.aliado-list li::before {
  content: "✓";
  color: #007bff;
  font-weight: bold;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .aliados-section {
    padding: 60px 0;
  }

  .aliados-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aliado-card {
    padding: 30px 20px;
  }

  .aliado-card:hover {
    transform: translateY(-5px);
  }
}

.mission-vision-card:hover,
.aliado-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 768px) {
  .mission-vision-card:hover,
  .aliado-card:hover {
    transform: translateY(-5px) !important;
  }
}

/* ===== SECCIÓN EQUIPO ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 123, 255, 0.05),
    transparent
  );
  transition: left 0.6s;
}

.team-card:hover::before {
  left: 100%;
}

.team-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.team-card:hover::after {
  transform: scaleX(1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  font-size: 4rem;
}

.team-content {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.team-content h4 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: #333;
}

.team-role {
  display: block;
  color: #007bff;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.team-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.team-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-features li {
  padding: 8px 0;
  color: #555;
  display: flex;
  align-items: center;
}

.team-features li i {
  color: #007bff;
  margin-right: 10px;
  font-size: 1.1rem;
}

.team-card-large {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.team-card-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 123, 255, 0.05),
    transparent
  );
  transition: left 0.6s;
}

.team-card-large:hover::before {
  left: 100%;
}

.support-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.support-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-right: 20px;
}

.support-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.support-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 123, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.support-feature:hover {
  background: rgba(0, 123, 255, 0.1);
  transform: translateX(5px);
}

.support-feature i {
  font-size: 1.5rem;
  color: #007bff;
  margin-top: 5px;
}

.support-feature h5 {
  margin-bottom: 5px;
  color: #333;
}

.support-feature p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* ===== SECCIÓN VALORES ===== */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.valor-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.valor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 123, 255, 0.05),
    transparent
  );
  transition: left 0.6s;
}

.valor-card:hover::before {
  left: 100%;
}

.valor-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.valor-card:hover::after {
  transform: scaleX(1);
}

.valor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.valor-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.valor-card:hover .valor-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.valor-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  position: relative;
  z-index: 2;
}

.valor-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.valor-features {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.valor-features li {
  padding: 8px 0;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}

.valor-features li i {
  color: #007bff;
  margin-right: 10px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    padding: 0;
  }

  .team-content {
    padding: 20px;
  }

  .support-header {
    flex-direction: column;
    text-align: center;
  }

  .support-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .support-features-grid {
    grid-template-columns: 1fr;
  }

  .valores-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .valor-card {
    padding: 30px 20px;
  }

  .team-card:hover,
  .valor-card:hover {
    transform: translateY(-5px);
  }
}

.team-card,
.valor-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.team-card.animated,
.valor-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.valores-section {
  background: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

.valores-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.02"><circle cx="50" cy="50" r="2" fill="%23007bff"/></svg>');
  pointer-events: none;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.valor-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.valor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 123, 255, 0.03),
    rgba(0, 123, 255, 0.08),
    rgba(0, 123, 255, 0.03),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 1;
}

.valor-card:hover::before {
  left: 100%;
}

.valor-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3, #007bff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.valor-card:hover::after {
  transform: scaleX(1);
}

.valor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 8px 15px rgba(0, 123, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 123, 255, 0.2);
}

.valor-icon-container {
  position: relative;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.valor-icon-bg {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.valor-card:hover .valor-icon-bg {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.valor-icon {
  color: white;
  font-size: 2.2rem;
  transition: all 0.3s ease;
}

.valor-card:hover .valor-icon {
  transform: scale(1.05);
}

.valor-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.valor-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
  background: linear-gradient(135deg, #2c3e50, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.valor-card:hover h3 {
  background: linear-gradient(135deg, #007bff, #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.valor-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
  position: relative;
}

.valor-card p::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #007bff, transparent);
  transition: width 0.3s ease;
}

.valor-card:hover p::after {
  width: 60px;
}

.valor-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.valor-features li {
  padding: 10px 0;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}

.valor-features li:last-child {
  border-bottom: none;
}

.valor-features li:hover {
  color: #007bff;
  transform: translateX(3px);
}

.valor-features li i {
  color: #007bff;
  margin-right: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.valor-features li:hover i {
  transform: scale(1.1);
}

.valor-card {
  opacity: 0;
  transform: translateY(30px);
  animation: valorCardEntrance 0.8s ease forwards;
}

.valor-card:nth-child(1) {
  animation-delay: 0.1s;
}
.valor-card:nth-child(2) {
  animation-delay: 0.2s;
}
.valor-card:nth-child(3) {
  animation-delay: 0.3s;
}
.valor-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes valorCardEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.valor-card:active {
  transform: translateY(-3px);
  transition: transform 0.1s ease;
}

.valor-card .glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  z-index: 0;
}

.valor-card:hover .glow {
  width: 150%;
  height: 150%;
}

.valor-card .loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  transition: width 0.3s ease;
}

.valor-card:hover .loading-bar {
  width: 100%;
}

@media (max-width: 1200px) {
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .valor-card {
    padding: 35px 20px;
  }
}

@media (max-width: 768px) {
  .valores-section {
    padding: 60px 0;
  }

  .valores-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .valor-card {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .valor-card:hover {
    transform: translateY(-5px);
  }

  .valor-icon-bg {
    width: 80px;
    height: 80px;
  }

  .valor-icon {
    font-size: 2rem;
  }

  .valor-card h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .valores-section {
    padding: 40px 0;
  }

  .valor-card {
    padding: 25px 15px;
    margin: 0 5px;
  }

  .valor-icon-bg {
    width: 70px;
    height: 70px;
  }

  .valor-icon {
    font-size: 1.8rem;
  }

  .valor-features li {
    padding: 8px 0;
    font-size: 0.85rem;
  }
}

@media (max-width: 767.98px) {
  .navbar-text.phone-number {
    background: rgba(0, 123, 255, 0.2);
    border: 2px solid rgba(0, 123, 255, 0.3);
    font-size: 1.1rem;
    padding: 12px 20px;
  }

  .navbar-text.phone-number::after {
    display: none;
  }

  .dropdown-menu.phone-dropdown {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(0, 123, 255, 0.3);
  }

  .phone-option {
    padding: 15px;
    margin: 8px 0;
  }

  .option-content {
    gap: 15px;
  }

  .option-content i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse.show .dropdown {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .navbar-collapse.show .dropdown-menu {
    text-align: center;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

.navbar-text.phone-number:hover {
  animation: pulse 2s infinite;
}

.navbar-text.phone-number .new-indicator {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 8px;
  height: 8px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
