/* Estilos para la sección de Plan Estratégico */
.strategic-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  overflow: hidden;
}

.strategic-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/placeholder.svg?height=500&width=1920&query=cruz roja mapa estratégico sutil");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.strategic-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.strategic-header {
  text-align: center;
  margin-bottom: 60px;
}

.strategic-header .section-tag {
  display: inline-block;
  background-color: rgba(227, 6, 19, 0.1);
  color: #e30613;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.strategic-header h2 {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.strategic-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e30613;
}

.strategic-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 25px;
}

.strategic-timeline {
  position: relative;
  margin-top: 50px;
}

.strategic-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: rgba(227, 6, 19, 0.2);
  z-index: 1;
}

.strategic-item {
  position: relative;
  margin-bottom: 100px;
  display: flex;
  align-items: flex-start;
  z-index: 2;
}

.strategic-item:last-child {
  margin-bottom: 0;
}

.strategic-item:nth-child(odd) {
  flex-direction: row;
}

.strategic-item:nth-child(even) {
  flex-direction: row-reverse;
}

.strategic-year {
  position: relative;
  min-width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all 0.3s ease;
}

.strategic-item:hover .strategic-year {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(227, 6, 19, 0.2);
}

.strategic-year span {
  font-size: 2rem;
  font-weight: 700;
  color: #e30613;
}

.strategic-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: calc(50% - 80px);
  position: relative;
  transition: all 0.3s ease;
}

.strategic-item:hover .strategic-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.strategic-content::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  transform: rotate(45deg);
  z-index: -1;
}

.strategic-item:nth-child(odd) .strategic-content::before {
  left: -10px;
}

.strategic-item:nth-child(even) .strategic-content::before {
  right: -10px;
}

.strategic-content h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.strategic-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #e30613;
  transition: width 0.3s ease;
}

.strategic-item:hover .strategic-content h3::after {
  width: 100px;
}

.strategic-content p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.strategic-icon {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  background-color: rgba(227, 6, 19, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.strategic-item:hover .strategic-icon {
  background-color: #e30613;
}

.strategic-icon i {
  font-size: 1.8rem;
  color: #e30613;
  transition: all 0.3s ease;
}

.strategic-item:hover .strategic-icon i {
  color: #fff;
}

.strategic-actions {
  margin-top: 20px;
}

.strategic-action {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
  padding: 8px 15px;
  background-color: rgba(227, 6, 19, 0.1);
  border-radius: 20px;
  color: #e30613;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.strategic-action:hover {
  background-color: #e30613;
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
  .strategic-timeline::before {
    left: 60px;
  }

  .strategic-item {
    flex-direction: row !important;
    margin-bottom: 70px;
  }

  .strategic-year {
    min-width: 100px;
    height: 100px;
    margin-right: 40px;
  }

  .strategic-content {
    width: calc(100% - 140px);
  }

  .strategic-content::before {
    left: -10px !important;
    right: auto !important;
  }
}

@media (max-width: 767px) {
  .strategic-section {
    padding: 60px 0;
  }

  .strategic-header h2 {
    font-size: 2rem;
  }

  .strategic-timeline::before {
    left: 40px;
  }

  .strategic-year {
    min-width: 80px;
    height: 80px;
    margin-right: 30px;
  }

  .strategic-year span {
    font-size: 1.5rem;
  }

  .strategic-content {
    width: calc(100% - 110px);
    padding: 20px;
  }

  .strategic-content h3 {
    font-size: 1.3rem;
  }

  .strategic-icon {
    width: 50px;
    height: 50px;
  }

  .strategic-icon i {
    font-size: 1.5rem;
  }
}

/* Animaciones */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.strategic-item:nth-child(odd) .strategic-content {
  animation: fadeInRight 0.8s ease forwards;
  opacity: 0;
}

.strategic-item:nth-child(even) .strategic-content {
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
}

.strategic-item:nth-child(1) .strategic-content {
  animation-delay: 0.2s;
}

.strategic-item:nth-child(2) .strategic-content {
  animation-delay: 0.4s;
}

.strategic-item:nth-child(3) .strategic-content {
  animation-delay: 0.6s;
}

.strategic-item:nth-child(4) .strategic-content {
  animation-delay: 0.8s;
}

.strategic-item:nth-child(5) .strategic-content {
  animation-delay: 1s;
}
