/* ==========================================================================
   Variables de Marca de Plan Canitas (Tokens de diseño migrados)
   ========================================================================== */
:root {
    --primary: rgb(23 71 155);
    --secondary: #72B637;
    --tertiary: #F68828;
    --purple: #684493;
    --turquoise: #05A7AB;
    --on-primary: #ffffff;
    --background: #f8fafb;
    --surface: #f8fafb;
    --surface-container: #eceeef;
    --surface-container-low: #f2f4f5;
    --surface-container-high: #e6e8e9;
    --on-surface: #191c1d;
    --on-surface-variant: #424750;
    --outline-variant: #c2c6d2;
    --deep-text: #1A2B3C;
    
    /* Métrica de Espaciados Nativos */
    --stack-sm: 16px;
    --stack-md: 32px;
    --stack-lg: 64px;
}

.mb-3 {
  margin-bottom: 15px;
}
.mb-4 {
  margin-bottom: 20px;
}

/* paso a paso */
#canitas-page .step-wrapper.step-one{
  background-color: var(--primary);
  border-radius: 10px;
  padding: 30px;
  color: white
}
.step-wrapper.step-one .bar-step{
  display: flex;
  justify-content: center;
  gap: 100px;
  position: relative;
}

.step-wrapper.step-one .bar-step span{
  display: flex;
  position: relative;
  align-items: center;
  text-align: center;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 100%;
  color: #113677;
  font-weight: 600;
  justify-content: center;
}
.step-wrapper.step-one .texto-step{
  position: absolute;
  top: 45px;
  left: 45px;
}
.step-wrapper.step-one .bar-step:after{
  content: "";
  display: block;
  height: 2px;
  width: 100px;
  background-color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.step-wrapper.step-one input, .step-wrapper.step-one select{
  width: 100%;
  border-radius: 4px;
  border: none;
}
.step-wrapper.step-one .tipo-bono,.step-wrapper.step-one .presio-bono{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px; 
}
.btn-step{
  border-radius: 4px;
  border: solid 2px white;
  background: none;
  color: white;
  padding: 5px 20px;
}
.btn-step-2{
  border-radius: 4px;
  border-right: solid;
  padding-right: 20px;
}
.step-wrapper.step-one .content-radio .title{
  display: block;
  width: 100%;
  margin: 0;
  font-weight: bold;
  color: white;
}
.step-wrapper.step-one .content-radio{
  padding: 15px 0;
  display: flex;
  gap: 10px 25px;
  flex-wrap: wrap;
}
.step-wrapper.step-one .content-radio label{
  padding-left: 30px;
  display: inline-block;
  position: relative;
}
.step-wrapper.step-one .content-radio label:before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  border: solid 2px white;
  border-radius: 4px;
  transform: translateY(-50%);
  cursor: pointer;
}
.step-wrapper.step-one .content-radio input:checked + label:before{
  background-color: var(--secondary);
}
.step-wrapper.step-one .content-radio input:checked + label:after{
  content: "";
  display: block;
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 10px;
  transform: rotate(35deg);
  border-right: solid 2px white;
  border-bottom: solid 2px white;
}
.step-wrapper.step-one .content-radio input{
  display: none;
}
/* paso a paso */
