/*
Theme Name: Hello Elementor Child
Theme URI: https://bluevidaintl.com
Description: Tema hijo de Hello Elementor
Author: Kevin Bautista
Author URI: https://bluevidaintl.com
Template: hello-elementor
Version: 1.0.0
*/

/* Aquí puedes poner jaja CSS adicional */

html {
    scroll-behavior: smooth;
	
}
.estado-usuario-contenedor {
    max-width: 600px;
    margin: 20px auto;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

.estado-bloque {
    margin-bottom: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.estado-bloque:hover {
    transform: scale(1.02);
}

.estado-titulo {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.estado-valor {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #0073aa;
    border: 2px solid #0073aa;
    border-radius: 8px;
    padding: 12px;
    background: #fff;
}

.estado-usuario {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
}

.estado-usuario__titulo {
    font-size: 1.3rem;
		font-weight: 600;
		font-family: 'Segoe UI', sans-serif;
    margin-bottom: 15px;
    text-align: center;
    color: #374151;
}

.estado-usuario__bloque {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.estado-usuario__bloque:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.estado-usuario__label {
    font-weight: 600;
    color: #111827;
}

.estado-usuario__valor {
    font-weight: 500;
    color: #124549;
}	

.estado-gris {
    background-color: #d3d3d3; /* gris */
    padding: 10px;
    border-radius: 8px;
}

.estado-amarillo {
    background-color: #fff176; /* amarillo */
    padding: 10px;
    border-radius: 8px;
}

.estado-azul {
    background-color: #64b5f6; /* azul */
    padding: 10px;
    border-radius: 8px;
}

.estado-verde {
    background-color: #81c784; /* verde */
    padding: 10px;
    border-radius: 8px;
}

.estado-rojo {
    background-color: #e57373; /* rojo */
    padding: 10px;
    border-radius: 8px;
}

.estado-default {
    background-color: #f5f5f5; /* gris claro por defecto */
    padding: 10px;
    border-radius: 8px;
}

.pregunta-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: #f9f9f9;
}
.pregunta-item strong {
    color: #333;
}	
	
/*---CONTENEDOR GENERAL DE TIMELINE-------------------------------------------------------------------------------------------------------------------------------------------*/
.timeline-container {
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  padding: 2rem 3rem;
  max-width: 1200px;
  margin: 2rem auto;
  text-align: center;
  overflow: hidden;
}

	/* --- Titulo de Timeline --- */
.timeline-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 5.5rem;
  color: #111827;
  font-family: 'Helvetica', sans-serif;
}

/* --- TIMELINE HORIZONTAL --- */
.timeline-horizontal {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* los puntos quedan arriba */
  margin: 0 auto 2rem;
  max-width: 1000px;
  padding-top: 2rem; /* deja espacio arriba para la línea */
  transition: all 0.3s ease;
}

/* Línea base */
.timeline-horizontal::before {
  content: "";
  position: absolute;
  top: 35px; /* bajamos la línea */
  left: 7%;
  right: 7%;
  height: 3px;
  background: #e5e7eb;
  z-index: 1;
  border-radius: 2px;
}

/* Línea de progreso animada */
.timeline-horizontal::after {
  content: "";
  position: absolute;
  top: 35px; /* misma altura de la línea gris */
  left: 7%;
  height: 3px;
  background: #077A85;
  z-index: 2;
  border-radius: 2px;
  width: 0%;
  transition: width 1s ease-in-out;
}

.timeline-horizontal[data-fase="1"]::after { width: 0%; }
.timeline-horizontal[data-fase="2"]::after { width: 8%; }
.timeline-horizontal[data-fase="3"]::after { width: 18%; }
.timeline-horizontal[data-fase="4"]::after { width: 27%; }
.timeline-horizontal[data-fase="5"]::after { width: 38%; }
.timeline-horizontal[data-fase="6"]::after { width: 48%; }
.timeline-horizontal[data-fase="7"]::after { width: 58%; }
.timeline-horizontal[data-fase="8"]::after { width: 68%; }
.timeline-horizontal[data-fase="9"]::after { width: 78%; }
.timeline-horizontal[data-fase="10"]::after { width: 89%; }

.timeline-status {
  display: block;
  font-size: 0.85rem;
  color: #4b5563;
  margin-top: 0.3rem;
  font-weight: 500;
}



	
.timeline-step {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 3;
}


.timeline-step.completed .timeline-dot {
  background: #22c55e;
  box-shadow: 0 0 0 3px #bbf7d0;
  animation: pulse-green 2s infinite;
}

.timeline-step.in-progress .timeline-dot {
  background: #facc15;
  box-shadow: 0 0 0 5px #fde68a;
  animation: pulse-yellow 1.8s infinite;
}

.timeline-step.active .timeline-dot {
  background: #3b82f6;
  box-shadow: 0 0 0 6px #bfdbfe;
  animation: pulse-blue 2s infinite ease-in-out;
}

.timeline-step.rejected .timeline-dot {
  background: #ef4444;
  box-shadow: 0 0 0 4px #fecaca;
  animation: blink-red 1s infinite;
}

.timeline-step.pending .timeline-dot {
  background: #d1d5db; /* gris suave */
  box-shadow: 0 0 0 3px #e5e7eb;
  animation: none;
}

/* PUNTO */
.timeline-dot {
  width: 24px;
  height: 24px;
  background: #d1d5db;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px #e5e7eb;
  transition: all 0.3s ease;
	display: inline-block; /* ⚠️ esto es esencial */
}	

.timeline-dot:hover {
  transform: scale(1.4);
  box-shadow: 0 0 0 6px #bfdbfe; /* un suave brillo azul */
  transition: all 0.25s ease;
  cursor: pointer;
}

/* TEXTO DE ETAPAS DE TIMELINE*/
.timeline-step p {
  margin-top: 0.5rem;
  font-weight: 600;
  color: #111827;
  font-size: 0.95rem;
}

.timeline-step span {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.3rem;
}

/* --- OBSERVACIONES --- */
.timeline-observations {
  background: linear-gradient(145deg, #ffffff, #f3f4f6);
  border-left: 5px solid #36677A;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}


.timeline-observations:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  border-left-color: #36677A;
}

.timeline-observations h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: #0f172a;
  letter-spacing: 0.3px;
}

.timeline-observations p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* --- MODO VERTICAL PARA CELULARES --- */
@media (max-width: 768px) {
  .timeline-horizontal {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 2rem;
    max-width: 500px;
  }

  .timeline-horizontal::before {
    top: 0;
    left: 18px;
    bottom: 0;
    right: auto;
    width: 3px;
    height: 100%;
    background: #e5e7eb;
  }

  .timeline-horizontal::after {
    top: 0;
    left: 18px;
    width: 3px;
    height: 0%;
    background: #3b82f6;
    transition: height 1s ease-in-out;
  }

  .timeline-horizontal[data-fase="1"]::after { height: 5%; }
  .timeline-horizontal[data-fase="2"]::after { height: 35%; }
  .timeline-horizontal[data-fase="3"]::after { height: 65%; }
  .timeline-horizontal[data-fase="4"]::after { height: 95%; }

  .timeline-step {
    flex: none;
    width: 100%;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
  }

  .timeline-dot {
    position: absolute;
    left: -3px;
    top: 0.4rem;
    margin: 0;
  }

  .timeline-step p {
    margin-left: 2.5rem;
    font-size: 1rem;
  }

  .timeline-step span {
    margin-left: 2.5rem;
    font-size: 0.9rem;
  }
}


/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.botton-sponsorship.activo {
  background-color: #00363B00 !important;
  color: white !important;
  cursor: pointer;
}


.botton-sponsorship.inactivo {
  background-color: #00363B00 !important;
  color: #757575 !important;
  cursor: not-allowed !important;
}

.stripe-button {
  background-color: #205e63 !important; /* Verde azulado elegante */
  border: none !important;
  border-radius: 12px !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  font-family: "Inter", "Poppins", sans-serif !important;
  color: #ffffff !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 4px 12px rgba(32, 94, 99, 0.25) !important;
  transition: all 0.3s ease !important;
}

.stripe-button:hover {
  background-color: #1a4c50 !important; /* tono más oscuro al pasar */
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(32, 94, 99, 0.35) !important;
}

.stripe-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 3px 8px rgba(32, 94, 99, 0.2) !important;
}




























