 
  #prioridades-section .prioridades-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  #prioridades-section .prioridades-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
  }
  
  #prioridades-section .prioridades-intro p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
  }
  
  /* Grid de tarjetas de prioridades */
  #prioridades-section .prioridades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }
  
  #prioridades-section .prioridad-card {
    display: flex;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #eaeaea;
  }
  
  #prioridades-section .prioridad-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* --------- Prioridad Icon & Content --------- */
  #prioridades-section .prioridad-icon {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #prioridades-section .prioridad-icon i {
    font-size: 32px;
    color: var(--primary);
  }
  
  #prioridades-section .prioridad-content {
    flex: 1;
    padding: 20px 20px 20px 0;
  }
  
  /* --------- Prioridad Tags --------- */
  #prioridades-section .prioridad-tag {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 30px;
    background-color: rgba(0, 51, 102, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* --------- Prioridad Content Typography --------- */
  #prioridades-section .prioridad-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
    line-height: 1.3;
  }
  
  #prioridades-section .prioridad-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  
  /* =======================================================
     PRIORIDAD METRICS
  ======================================================= */
  #prioridades-section .prioridad-metrics {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  #prioridades-section .metric {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    min-width: 100px;
    text-align: center;
  }
  
  #prioridades-section .metric-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
  }
  
  #prioridades-section .metric-label {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
  }
  
  
  /* =======================================================
     HOJA DE RUTA (ROADMAP) EN PRIORIDADES
  ======================================================= */
  #prioridades-section .prioridades-roadmap {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
  }
  
  #prioridades-section .prioridades-roadmap h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  #prioridades-section .roadmap-container {
    position: relative;
    padding: 20px 0;
  }
  
  #prioridades-section .roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 3px;
    background: linear-gradient(to bottom, #4285f4, #34a853);
    border-radius: 3px;
  }
  
  #prioridades-section .roadmap-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
  }
  
  #prioridades-section .roadmap-point {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #4285f4;
    margin-right: 20px;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.2);
  }
  
  #prioridades-section .roadmap-item:nth-child(2) .roadmap-point {
    border-color: #ea4335;
    box-shadow: 0 0 0 4px rgba(234, 67, 53, 0.2);
  }
  
  #prioridades-section .roadmap-item:nth-child(3) .roadmap-point {
    border-color: #fbbc05;
    box-shadow: 0 0 0 4px rgba(251, 188, 5, 0.2);
  }
  
  #prioridades-section .roadmap-item:nth-child(4) .roadmap-point {
    border-color: #34a853;
    box-shadow: 0 0 0 4px rgba(52, 168, 83, 0.2);
  }
  
  #prioridades-section .roadmap-item:nth-child(5) .roadmap-point {
    border-color: #9c27b0;
    box-shadow: 0 0 0 4px rgba(156, 39, 176, 0.2);
  }
  
  #prioridades-section .roadmap-date {
    position: absolute;
    left: 50px;
    top: 0;
    font-weight: bold;
    color: var(--primary);
  }
  
  #prioridades-section .roadmap-content {
    background-color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-left: 30px;
    margin-top: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
  }
  
  #prioridades-section .roadmap-content h5 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 16px;
  }
  
  #prioridades-section .roadmap-content p {
    color: #555;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
  }
  
  /* Animaciones para la hoja de ruta */
  #prioridades-section.active .roadmap-item {
    opacity: 1;
    transform: translateX(0);
  }
  
  #prioridades-section.active .roadmap-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  
  #prioridades-section.active .roadmap-item:nth-child(3) {
    transition-delay: 0.4s;
  }
  
  #prioridades-section.active .roadmap-item:nth-child(4) {
    transition-delay: 0.6s;
  }
  
  #prioridades-section.active .roadmap-item:nth-child(5) {
    transition-delay: 0.8s;
  }

  /* ------------------ TEMPLE OF PRIORITIES ------------------ */

/* Estilos para el templo de prioridades */
.temple-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
    width: 100%;
    max-width: 900px;
    position: relative;
  }
  
  /* Título superior */
  .temple-title {
    color: var(--primary);
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    width: 100%;
  }
  
  /* Estructura del techo */
  .temple-roof {
    width: 80%;
    height: 160px;
    background-color: #333;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -2px;
    position: relative;
    z-index: 10;
  }
  
  .roof-text {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin-top: -20px;
  }
  
  .roof-content {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    width: 80%;
    margin-top: 30px;
    line-height: 1.3;
  }
  
  .roof-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
    z-index: 100;
    width: max-content;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
  }
  
  /* Estructura de los pilares */
  .temple-pillars {
    display: flex;
    justify-content: space-between;
    width: 80%;
    height: 300px;
    margin-bottom: -2px;
  }
  
  .temple-pillar {
    width: 22%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
  }
  
  .pillar-text {
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 15px 10px;
    width: 100%;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .pillar-content {
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    height: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
  }
  
  .pillar-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: 100;
    width: max-content;
    max-width: 220px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
  }
  
  /* Colores de los pilares */
  .pillar-blue {
    background: linear-gradient(to bottom, #1a73e8, #0a4b91);
  }
  
  .pillar-red {
    background: linear-gradient(to bottom, #ea4335, #b31412);
  }
  
  .pillar-yellow {
    background: linear-gradient(to bottom, #fbbc05, #ee8100);
  }
  
  .pillar-green {
    background: linear-gradient(to bottom, #34a853, #188038);
  }
  
  /* Estructura de las escaleras */
  .temple-stairs {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stair {
    background-color: #666;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-bottom: 1px;
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .stair:nth-child(1) {
    width: 70%;
  }
  .stair:nth-child(2) {
    width: 80%;
  }
  .stair:nth-child(3) {
    width: 90%;
  }
  .stair:nth-child(4) {
    width: 100%;
  }
  
  .stair:hover {
    transform: translateY(-5px);
    background-color: #444;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  /* Diseño responsivo para el templo */
  @media (max-width: 768px) {
    .temple-pillars {
      flex-direction: column;
      height: auto;
      align-items: center;
    }
    
    .temple-pillar {
      width: 80%;
      height: 150px;
      margin-bottom: 15px;
    }
    
    .temple-roof {
      height: 120px;
      margin-bottom: 20px;
    }
    
    .stair {
      font-size: 12px;
    }
  }
  
  /* ------------------ ROADMAP ADJUSTMENTS ------------------ */
  
  /* Corregir la posición de la línea del roadmap */
  #prioridades-section .roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px; /* Cambiado de 20px a 30px para moverla más a la derecha */
    width: 3px;
    background: linear-gradient(to bottom, #4285f4, #34a853);
    border-radius: 3px;
  }
  
  /* Ajustar los puntos y contenido para mantener el alineamiento */
  #prioridades-section .roadmap-point {
    margin-right: 30px; /* Aumentado de 20px a 30px */
  }
  
  #prioridades-section .roadmap-date {
    left: 60px; /* Aumentado de 50px a 60px */
  }
  
  /* ------------------ ADDITIONAL TEMPLE CHANGES ------------------ */
  
  /* Nuevos cambios para el templo de prioridades */
  .temple-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
    width: 100%;
    max-width: 900px;
    position: relative;
  }
  
  .temple-title {
    color: var(--primary);
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    width: 100%;
  }
  
  .temple-roof {
    width: 80%;
    height: 160px;
    background-color: #333;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -2px;
    position: relative;
    z-index: 10;
  }
  
  .roof-text {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin-top: -20px;
  }
  
  .roof-content {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    width: 80%;
    margin-top: 30px;
    line-height: 1.3;
  }
  
  .roof-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
    z-index: 100;
    width: max-content;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
  }
  
  .temple-pillars {
    display: flex;
    justify-content: space-between;
    width: 80%;
    height: 300px;
    margin-bottom: -2px;
  }
  
  .temple-pillar {
    width: 18%; /* Reducido de 22% a 18% */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Cambiado de flex-end a flex-start */
    align-items: center;
    position: relative;
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
  }
  
  .pillar-text {
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 15px 10px;
    width: 100%;
    font-size: 14px;
    position: absolute;
    top: 0; /* Cambiado de bottom a top */
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .pillar-content {
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    height: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
  }
  
  .pillar-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: 100;
    width: max-content;
    max-width: 220px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
  }

  /* Colores de los pilares */
  .pillar-blue {
    background: linear-gradient(to bottom, #1a73e8, #0a4b91);
  }
  
  .pillar-red {
    background: linear-gradient(to bottom, #ea4335, #b31412);
  }
  
  .pillar-yellow {
    background: linear-gradient(to bottom, #fbbc05, #ee8100);
  }
  
  .pillar-green {
    background: linear-gradient(to bottom, #34a853, #188038);
  }
  
  /* Estructura de las escaleras */
  .temple-stairs {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stair {
    background-color: #666;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-bottom: 1px;
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .stair:nth-child(1) {
    width: 70%;
  }
  .stair:nth-child(2) {
    width: 80%;
  }
  .stair:nth-child(3) {
    width: 90%;
  }
  .stair:nth-child(4) {
    width: 100%;
  }
  
  .stair:hover {
    transform: translateY(-5px);
    background-color: #444;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  /* Diseño responsivo para escaleras en el templo */
  @media (max-width: 768px) {
    .temple-pillars {
      flex-direction: column;
      height: auto;
      align-items: center;
    }
    
    .temple-pillar {
      width: 80%;
      height: 150px;
      margin-bottom: 15px;
    }
    
    .temple-roof {
      height: 120px;
      margin-bottom: 20px;
    }
    
    .stair {
      font-size: 12px;
    }
  }
  
  /* =======================================================
   TEMPLE TOOLTIP & PILLAR HOVER STYLES
======================================================= */
.pillar-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: 100;
    width: max-content;
    max-width: 220px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
  }

  
  /* =======================================================
     PILLAR COLORS
  ======================================================= */
  .pillar-blue {
    background: linear-gradient(to bottom, #1a73e8, #0a4b91);
  }
  
  .pillar-red {
    background: linear-gradient(to bottom, #ea4335, #b31412);
  }
  
  .pillar-yellow {
    background: linear-gradient(to bottom, #fbbc05, #ee8100);
  }
  
  .pillar-green {
    background: linear-gradient(to bottom, #34a853, #188038);
  }
  
  /* =======================================================
     TEMPLE STAIRS STYLES
  ======================================================= */
  .temple-stairs {
    width: 100%; /* Cambiado de 90% a 72% para que coincida con el ancho total de los pilares */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stair {
    background-color: #666;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-bottom: 2px; /* Asegura que todas las escaleras tengan el mismo espaciado */
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .stair:nth-child(1) {
    width: 80%;
  }
  .stair:nth-child(2) {
    width: 85%;
  }
  .stair:nth-child(3) {
    width: 90%;
  }
  .stair:nth-child(4) {
    width: 100%;
  }
  
  .stair:hover {
    transform: translateY(-5px);
    background-color: #444;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  @media (max-width: 768px) {
    .temple-pillars {
      flex-direction: column;
      height: auto;
      align-items: center;
    }
    
    .temple-pillar {
      width: 70%;
      height: 150px;
      margin-bottom: 15px;
    }
    
    .temple-roof {
      height: 120px;
      margin-bottom: 20px;
    }
    
    .stair {
      font-size: 12px;
    }
  }

  /* =======================================================
   ROADMAP ADJUSTMENTS
======================================================= */
/* Corrección para alinear la línea vertical con los puntos en roadmap */
#prioridades-section .roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px; /* Manteniendo el valor original para no cambiar demasiado */
    width: 3px;
    background: linear-gradient(to bottom, #4285f4, #34a853);
    border-radius: 3px;
    z-index: 1; /* Asegurando que la línea esté detrás de los puntos */
  }
  
  /* Ajustar posición de los puntos para alinear con la línea */
  #prioridades-section .roadmap-point {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #4285f4;
    margin-right: 60px;
    z-index: 2; /* Asegurando que los puntos estén sobre la línea */
    position: relative;
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.2);
    left: 0; /* Alineando el punto con la línea */
  }
  
  /* Ajustar el contenedor del roadmap-item para mantener el alineamiento */
  #prioridades-section .roadmap-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    padding-left: 20px; /* Añadiendo un padding para compensar */
  }
  
  /* Ajustar el contenido para mantener las proporciones correctas */
  #prioridades-section .roadmap-content {
    background-color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-left: 30px;
    margin-top: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
  }
  
  /* Ajustar la fecha para que se alinee con el nuevo diseño */
  #prioridades-section .roadmap-date {
    position: absolute;
    left: 50px;
    top: 0;
    font-weight: bold;
    color: var(--primary);
  }
  
  /* =======================================================
   TEMPLE OF PRIORITIES - FINAL ADJUSTMENTS & RESPONSIVE
======================================================= */
.temple-stairs {
    width: 100%; /* Cambiado de 90% a 72% para que coincida con el ancho total de los pilares */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stair {
    background-color: #666;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-bottom: 2px; /* Asegura espaciado uniforme */
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .stair:nth-child(1) {
    width: 80%;
  }
  .stair:nth-child(2) {
    width: 85%;
  }
  .stair:nth-child(3) {
    width: 90%;
  }
  .stair:nth-child(4) {
    width: 100%;
  }
  
  .stair:hover {
    transform: translateY(-5px);
    background-color: #444;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }

  
/* =======================================================
   RAILROAD (ROADMAP) ADJUSTMENTS FOR PRIORIDADES
======================================================= */
#prioridades-section .roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px; /* Valor original */
    width: 3px;
    background: linear-gradient(to bottom, #4285f4, #34a853);
    border-radius: 3px;
    z-index: 1;
  }
  
  #prioridades-section .roadmap-point {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #4285f4;
    margin-right: 60px;
    z-index: 2;
    position: relative;
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.2);
    left: 0;
  }
  
  #prioridades-section .roadmap-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    padding-left: 20px;
  }
  
  #prioridades-section .roadmap-content {
    background-color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-left: 30px;
    margin-top: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
  }
  
  #prioridades-section .roadmap-date {
    position: absolute;
    left: 50px;
    top: 0;
    font-weight: bold;
    color: var(--primary);
  }

  /* =======================================================
   TEMPLE OF PRIORITIES - NEW SECTION & ADJUSTMENTS
======================================================= */
.temple-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
    width: 100%;
    max-width: 900px;
    position: relative;
  }
  
  .temple-title {
    color: var(--primary);
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    width: 100%;
  }
  
  .temple-roof {
    width: 80%;
    height: 160px;
    background-color: #333;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -2px;
    position: relative;
    z-index: 10;
  }
  
  .roof-text {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin-top: -20px;
  }
  
  .roof-content {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    width: 80%;
    margin-top: 30px;
    line-height: 1.3;
  }
  
  .roof-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
    z-index: 100;
    width: max-content;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
  }
  
  .temple-pillars {
    display: flex;
    justify-content: space-between;
    width: 80%;
    height: 300px;
    margin-bottom: -2px;
  }
  
  .temple-pillar {
    width: 18%; /* Reducido de 22% a 18% */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Cambiado de flex-end a flex-start */
    align-items: center;
    position: relative;
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
  }
  
  .pillar-text {
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 15px 10px;
    width: 100%;
    font-size: 14px;
    position: absolute;
    top: 0; /* Cambiado de bottom a top */
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .pillar-content {
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    height: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
  }
  
  .pillar-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: 100;
    width: max-content;
    max-width: 220px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
  }
  
  .temple-pillar:hover .pillar-tooltip {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  
  /* =======================================================
     RAILROAD (ROADMAP) ADJUSTMENTS (Templado)
  ======================================================= */
  #prioridades-section .roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 3px;
    background: linear-gradient(to bottom, #4285f4, #34a853);
    border-radius: 3px;
    z-index: 1;
  }
  
  #prioridades-section .roadmap-point {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #4285f4;
    margin-right: 60px;
    z-index: 2;
    position: relative;
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.2);
    left: 0;
  }
  
  #prioridades-section .roadmap-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    padding-left: 20px;
  }
  
  #prioridades-section .roadmap-content {
    background-color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-left: 30px;
    margin-top: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
  }
  
  #prioridades-section .roadmap-date {
    position: absolute;
    left: 50px;
    top: 0;
    font-weight: bold;
    color: var(--primary);
  }
  
  
  /* =======================================================
     TEMPLE OF PRIORITIES - ADDITIONAL COS STYLES
  ======================================================= */
  .cos-cards-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  
  .subtitle {
    font-size: 1.2rem;
    color: #666666;
  }
  
  .cos-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    margin: 0 auto;
  }
  
  .cos-card {
    width: 100%;
    height: 220px;
    perspective: 1500px;
    cursor: pointer;
  }
  
  .cos-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease, box-shadow 0.3s ease, transform 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 0 10px 20px rgba(139, 25, 20, 0.2);
    border-radius: 15px;
  }
  
  .cos-card:hover .card-inner {
    box-shadow: 0 15px 30px rgba(230, 35, 26, 0.4);
    transform: translateY(-15px);
  }
  
  .cos-card.flipped .card-inner {
    transform: rotateY(180deg);
  }
  
  .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border-radius: 15px;
    overflow: hidden;
  }
  
  .card-front {
    background: linear-gradient(45deg, #E6231A, #8B1914);
    color: white;
  }
  
  .card-front::before {
    content: "Clic para más info";
    position: absolute;
    bottom: 10px;
    font-size: 0.7rem;
    opacity: 0.7;
  }
  
  .card-back {
    background: linear-gradient(45deg, #111111, #333333);
    color: white;
    transform: rotateY(180deg);
    text-align: center;
    overflow-y: auto;
  }
  
  .card-back::-webkit-scrollbar {
    width: 5px;
  }
  
  .card-back::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
  }
  
  .card-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 3rem;
    font-weight: bold;
    opacity: 0.3;
    color: #FFD1D1;
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    z-index: 1;
  }
  
  .card-content {
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .card-icon {
    margin-bottom: 15px;
    font-size: 2.5rem;
  }
  
  /* Logo Cummins */
  .cummins-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .cummins-logo img {
    max-width: 200px;
    height: auto;
  }
  
  /* Instrucciones */
  .instructions {
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
    color: #333333;
    font-size: 1.1rem;
    padding: 15px;
    background-color: white;
    border-left: 5px solid #E6231A;
    border-radius: 0;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(139, 25, 20, 0.15);
  }
  
  /* Animación de rebote suave para cards COS */
  @keyframes float-card {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  .cos-card {
    animation: float-card 4s ease-in-out infinite;
  }
  
  .cos-card:nth-child(1) { animation-delay: 0s; }
  .cos-card:nth-child(2) { animation-delay: 0.2s; }
  .cos-card:nth-child(3) { animation-delay: 0.4s; }
  .cos-card:nth-child(4) { animation-delay: 0.6s; }
  .cos-card:nth-child(5) { animation-delay: 0.8s; }
  .cos-card:nth-child(6) { animation-delay: 1.0s; }
  .cos-card:nth-child(7) { animation-delay: 1.2s; }
  .cos-card:nth-child(8) { animation-delay: 1.4s; }
  .cos-card:nth-child(9) { animation-delay: 1.6s; }
  .cos-card:nth-child(10) { animation-delay: 1.8s; }
  
  @media (max-width: 1200px) {
    .cos-cards {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(4, auto);
    }
  }
  
  @media (max-width: 768px) {
    .cos-cards {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(5, auto);
    }
    
    .cos-header h3 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 576px) {
    .cos-cards {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(10, auto);
    }
  }
  
  /* =======================================================
   TEMPLE OF PRIORITIES - FINAL ADJUSTMENTS & RESPONSIVE
======================================================= */
.temple-stairs {
    width: 100%; /* Cambiado para coincidir con el ancho total de los pilares */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stair {
    background-color: #666;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-bottom: 2px;
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .stair:nth-child(1) {
    width: 80%;
  }
  .stair:nth-child(2) {
    width: 85%;
  }
  .stair:nth-child(3) {
    width: 90%;
  }
  .stair:nth-child(4) {
    width: 100%;
  }
  
  .stair:hover {
    transform: translateY(-5px);
    background-color: #444;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  @media (max-width: 768px) {
    .temple-pillars {
      flex-direction: column;
      height: auto;
      align-items: center;
    }
    
    .temple-pillar {
      width: 70%;
      height: 150px;
      margin-bottom: 15px;
    }
    
    .temple-roof {
      height: 120px;
      margin-bottom: 20px;
    }
    
    .stair {
      font-size: 12px;
    }
  }
  
  /* =======================================================
   ROADMAP ADJUSTMENTS (TEMPLE)
======================================================= */
#prioridades-section .roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 3px;
    background: linear-gradient(to bottom, #4285f4, #34a853);
    border-radius: 3px;
    z-index: 1;
  }
  
  #prioridades-section .roadmap-point {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #4285f4;
    margin-right: 60px;
    z-index: 2;
    position: relative;
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.2);
    left: 0;
  }
  
  #prioridades-section .roadmap-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    padding-left: 20px;
  }
  
  #prioridades-section .roadmap-content {
    background-color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-left: 30px;
    margin-top: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
  }
  
  #prioridades-section .roadmap-date {
    position: absolute;
    left: 50px;
    top: 0;
    font-weight: bold;
    color: var(--primary);
  }

  /* =======================================================
   TEMPLE OF PRIORITIES - FLOATING ANIMATION & HEADING ADJUSTMENTS
======================================================= */
@keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  .valor-card, 
  .resultado-card, 
  .pilar-item, 
  .pilar-kway, 
  .chart-box, 
  .prioridad-card,
  .kpi-card {
    animation: float 5s ease-in-out infinite;
  }
  
  .valor-card:nth-child(1),
  .resultado-card:nth-child(1),
  .pilar-item:nth-child(1),
  .pilar-kway:nth-child(1),
  .chart-box:nth-child(1),
  .prioridad-card:nth-child(1),
  .kpi-card:nth-child(1) {
    animation-delay: 0s;
  }
  
  .valor-card:nth-child(2),
  .resultado-card:nth-child(2),
  .pilar-item:nth-child(2),
  .pilar-kway:nth-child(2),
  .chart-box:nth-child(2),
  .prioridad-card:nth-child(2),
  .kpi-card:nth-child(2) {
    animation-delay: 0.5s;
  }
  
  .valor-card:nth-child(3),
  resultado-card:nth-child(3),
  pilar-item:nth-child(3),
  pilar-kway:nth-child(3),
  chart-box:nth-child(3),
  prioridad-card:nth-child(3),
  kpi-card:nth-child(3) {
    animation-delay: 1s;
  }
  
  .valor-card:nth-child(4),
  resultado-card:nth-child(4),
  pilar-item:nth-child(4),
  pilar-kway:nth-child(4),
  chart-box:nth-child(4),
  prioridad-card:nth-child(4),
  kpi-card:nth-child(4) {
    animation-delay: 1.5s;
  }
  
  .valor-card:nth-child(5),
  resultado-card:nth-child(5),
  pilar-item:nth-child(5),
  pilar-kway:nth-child(5),
  chart-box:nth-child(5),
  prioridad-card:nth-child(5),
  kpi-card:nth-child(5) {
    animation-delay: 2s;
  }
  
  .valor-card:hover, 
  resultado-card:hover, 
  pilar-item:hover, 
  pilar-kway:hover, 
  chart-box:hover, 
  prioridad-card:hover,
  kpi-card:hover {
    animation-play-state: paused;
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
  }
  
  h2 {
    color: white;
    position: relative;
    z-index: 1;
  }

/* ||||||||||||||||| PRIORIDAD CARD COLORS ||||||||||||||||||*/

#prioridades-section .prioridad-card[data-priority="1"],
#prioridades-section .prioridad-card[data-priority="2"],
#prioridades-section .prioridad-card[data-priority="3"],
#prioridades-section .prioridad-card[data-priority="4"],
#prioridades-section .prioridad-card[data-priority="5"] {
    border-left: 4px solid rgb(15,20,154);
}

/* PRIORIDAD TAG COLORS */
#prioridades-section .prioridad-card[data-priority="1"] .prioridad-tag,
#prioridades-section .prioridad-card[data-priority="2"] .prioridad-tag,
#prioridades-section .prioridad-card[data-priority="3"] .prioridad-tag,
#prioridades-section .prioridad-card[data-priority="4"] .prioridad-tag,
#prioridades-section .prioridad-card[data-priority="5"] .prioridad-tag {
    background-color: rgba(15,20,154,0.1);
    color: rgb(15,20,154);
}

/* METRIC VALUE COLORS */
#prioridades-section .prioridad-card[data-priority="1"] .metric-value,
#prioridades-section .prioridad-card[data-priority="2"] .metric-value,
#prioridades-section .prioridad-card[data-priority="3"] .metric-value,
#prioridades-section .prioridad-card[data-priority="4"] .metric-value,
#prioridades-section .prioridad-card[data-priority="5"] .metric-value {
    color: rgb(15,20,154);
}

/* ROADMAP LINE */
#prioridades-section .roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 3px;
    background: rgb(15,20,154);
    border-radius: 3px;
    z-index: 1;
}

/* ROADMAP POINTS */
#prioridades-section .roadmap-point,
#prioridades-section .roadmap-item:nth-child(2) .roadmap-point,
#prioridades-section .roadmap-item:nth-child(3) .roadmap-point,
#prioridades-section .roadmap-item:nth-child(4) .roadmap-point,
#prioridades-section .roadmap-item:nth-child(5) .roadmap-point {
    border: 3px solid rgb(15,20,154);
    box-shadow: 0 0 0 4px rgba(15,20,154,0.2);
    z-index: 2;
}

/* STAIR COLORS - Keeping temple-container styles intact */
.stair {
    background-color: #333;
}

.stair:hover {
    background-color: rgba(15,20,154,0.8);
}

/* ROADMAP LINE AND POINTS FIX */
/* First, reset problematic properties */
#prioridades-section .roadmap-line {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 28px !important;
  width: 3px !important;
  background: rgb(15,20,154) !important;
  border-radius: 3px !important;
  z-index: 1 !important; /* Force lower z-index */
}

#prioridades-section .roadmap-point {
  width: 22px !important; /* Slightly larger */
  height: 22px !important;
  border-radius: 50% !important;
  background-color: white !important;
  border: 3px solid rgb(15,20,154) !important;
  position: relative !important;
  z-index: 10 !important; /* Much higher z-index */
  box-shadow: 0 0 0 4px rgba(15,20,154,0.2) !important;
}

/* Apply to all points */
#prioridades-section .roadmap-item:nth-child(2) .roadmap-point,
#prioridades-section .roadmap-item:nth-child(3) .roadmap-point,
#prioridades-section .roadmap-item:nth-child(4) .roadmap-point,
#prioridades-section .roadmap-item:nth-child(5) .roadmap-point {
  z-index: 10 !important;
  background-color: white !important;
  position: relative !important;
}

/* Ensure roadmap item has correct positioning */
#prioridades-section .roadmap-item {
  position: relative !important;
  z-index: 2 !important;
}

/* REMOVE TEMPLE HOVER ANIMATIONS */
.temple-pillar:hover {
  transform: none !important;
  box-shadow: none !important;
  transition: none !important;
  animation: none !important;
}

.stair:hover {
  transform: none !important;
  background-color: #333 !important; /* Keep consistent color */
  box-shadow: none !important;
}

/* Ensure no animation or transition effects */
.temple-pillar, .temple-roof, .stair {
  transition: none !important;
  animation: none !important;
}