#proyectos{
  background-color: #8520CC;
  padding-top: 90px;
  padding-bottom: 80px;
  color:#FFF;
}

#proyectos p{
  color:#FFF;
  font-size: 24px;
}

#goalux{
  background-color: #52479E;
  padding-top: 90px;
  padding-bottom: 80px;
  color:#fff;
}

.highlight3 {
    color: #52479E;
}

.txtwhite {
  color: #fff;
}

#wireframes{
  padding-top: 90px;
  padding-bottom: 80px;
}

.mockups {
    width: 100%;
    border-radius: 5px;
    margin-top: 50px;
}

.goal-hero{
  display: flex;
  gap: 10px;
}

.goal-item{
  width: 30%;
  border-left: 1px solid #ccc;
  max-height: 80px;
  margin-top: 20px;
}

.tit-goal{
  font-size: 36px;
  font-weight: bold;
  color:#52479E;
  line-height: 1.00em;
  margin-left: 10px;
}

.goal-descrip{
  color:#000;
  font-size: 16px;
  font-weight: normal;
}

.goal-subtitle{
  color:#000;
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 25px;
}

/********** DESAFIOS PROYECTO GV **********/

#desafio{
  border-top: 1px solid #eee;
  padding-top: 90px;
  padding-bottom: 80px;
  background-color: #fff;
}

.desafio-item{
  background-color: #F5F9FF;
  border: 1px solid #EBEDF1;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
}

.tit-desafio{
  color: #52479E;
  font-size: 20px;
  text-transform: none;
}

.desafio-destacado{
  background-color: #52479E;
  padding: 15px;
  border-radius: 15px;
}

.desafio-destacado p{
  color: #fff;
  font-style: italic;
  font-weight: bold;
}


/******** ESTRATEGIA GV *****/

.contentcolumns{
  align-items: stretch;
  display:flex;
  gap: 20px;
}
.estrategia-item{
  background-color: #fff;
  border: 1px solid #EBEDF1;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  width: 100%;
}

.estrategia-content{
  height: 100%;
}

.tit-estrategia{
  color: #52479E;
  font-size: 26px;
  text-transform: none;
  line-height: 1.2em;
}

.icoevo{
  margin-bottom: 20px;
}

.contentcolumns{
  align-items: stretch
  display:flex;
}

/*** BARRAS ESTADÍSTICAS ***/

/* Variables de color basadas en tu diseño */
:root {
  --bg-card: #f8f9fc;
  --color-texto: #312e81;
  --color-barra-clara: #cdd0eb;
  --color-barra-oscura: #544aa1;
  --color-lineas: #e5e7eb;
}

.card-estadistica {
  background-color: var(--bg-card);
  border: 1px solid #EBEDF1;
  border-radius: 24px;
  padding: 32px;
  font-family: sans-serif;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: relative;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.card-title {
  color: var(--color-texto);
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.badge {
  border: 1px solid #e5e7eb;
  color: var(--color-texto);
  font-size: 12px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  background: white;
}

.chart-container {
  height: 250px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

/* Líneas punteadas de fondo */
.grid-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.line {
  border-bottom: 1px dashed var(--color-lineas);
  width: 100%;
}

/* Área de las barras */
.bars-area {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding-bottom: 25px; /* Espacio para las etiquetas */
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 14%;
  height: 100%;
  justify-content: flex-end;
  position: relative;
  cursor: pointer;
}

.bar {
  width: 100%;
  background-color: var(--color-barra-clara);
  border-radius: 12px 12px 0 0;
  transition: all 0.3s ease;
}

.bar.highlight {
  background-color: var(--color-barra-oscura);
}

.bar-label {
  position: absolute;
  bottom: -25px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

/* Tooltip interactivo */
.tooltip {
  position: absolute;
  bottom: calc(100% + 10px); /* Se ubica justo encima de la barra */
  background-color: white;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  text-align: left;
  min-width: 90px;
  pointer-events: none;
}

.bar-group:hover .tooltip {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 15px); /* Pequeña animación hacia arriba */
}

.tooltip-title {
  display: block;
  font-size: 14px;
  color: #374151;
  margin-bottom: 4px;
}

.tooltip-value {
  display: block;
  font-size: 14px;
  color: #111827;
}

/***********************************/

#impacto{
  border-top: 1px solid #eee;
  padding-top: 90px;
  padding-bottom: 80px;
  background-color: #fff;
}

.impacto-destacado{
  background-color: #f8f9fc;
  border-radius: 15px;
  padding: 25px 25px 10px 25px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.impacto-destacado p{
  color:#52479E;
  font-weight: bold;
}

.imp-porcentaje{
  color:#52479E;
  font-weight: bold;
  font-size: 24px;
  float: right;

}



/********* SECCION CTA GV ************/

#cta{
  background-color: #F5F9FF;
  padding-top: 90px;
  padding-bottom: 80px;
}

.cta-title{
  font-size: 52px;
  color:#52479E;
  font-weight: bold;
  text-align: center;
}

.cta-bt{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* PARA CELULARES **/

@media (max-width: 768px){
  .goal-hero{
    display: block;
  }
}
