/* CSS Document */
.titulo{
    color: orangered;
    text-align: center;
    font-size: 24px;
}
.text1{
    font-size: 18px;
}
.contenedor-titulo{
    margin-bottom: 30px!important;
    margin-top:30px;
    padding-bottom: 10px;
    padding-top: 20px;
    padding-left: 10px;
    border-radius: 50px;    
    background-color: #F6F3F3;    
    text-align: center;
}
.registro{
    text-align: center;
    font-size: 18px;
}
/*PASOS*/
.wrapper {
  max-width: 1080px;
  margin: 20px auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 50px;
  position: relative;
}

.wrapper .center-line {
  position: absolute;
  height: 100%;
  width: 4px;
  background: orangered;
  left: 140px;
  top: 20px;
  transform: translateX(-50%);
}

.wrapper .row {
  display: block;
  margin: 30px 0 3px 60px;
}

.wrapper .row-1 {
  justify-content: flex-start;
}

.wrapper .row-2 {
  justify-content: flex-end;
}

.wrapper .row section {
  background: #D3D3D3;
  border-radius: 20px;
  border: solid #D3D3D3;
  width: 80%;
  /*width: calc(50% - 60px);*/
  padding: 20px;
  position: relative;
}

.wrapper .row section::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  background: #D3D3D3;
  top: 28px;
  z-index: 1;
  transform: rotate(45deg);
}

.row-1 section::before {
  /*right: -7px;*/
  left: -7px;
}

.row-2 section::before {
  left: -7px;
}

.row section .icon,
.center-line .scroll-icon {
  position: absolute;
  background: #f2f2f2;
  height: 50px;
  width: 50px;
  text-align: center;
  vertical-align: middle!important;
  padding-top: 5px;
  line-height: 40px;
  border-radius: 50%;
  color: orangered;
  font-size: 24px;
  box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}

.center-line .scroll-icon {
  bottom: 0;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}

.row-1 section .icon {
  top: 15px;
  /*right: -85px;*/
  left: -65px;
}

.row-2 section .icon {
  top: 15px;
  /*left: -85px;*/
  left: -65px;
}

.row section .details, 
.row section .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.row section .details .title {
  font-size: 18px;
}
.btn-documentos{
    margin-bottom: 10px!important;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 10px;
	padding-right: 10px;
	color: #fff;
    border-radius: 20px;
    background-color: gray;
    border-color: gray;
    font-size: 14px;
    vertical-align: middle!important;
}

.row-1 :hover {
  transform: scale(1.02);
}
@media screen and (max-width: 820px) {
	.wrapper .center-line {
	  left: 100px!important;
	}
	
}
@media screen and (max-width: 1200px) {
	.wrapper .center-line {
	  left: 120px;
	}
	
}
@media screen and (max-width: 558px) {
  
  .wrapper .center-line {
	  left: 70px!important;
	}
}
/*videos*/
.video-section {
      padding: 50px 20px;
      background-color: #fff;
      text-align: center;
  }
  .video-section h2 {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: orangered;
  }
  .video-section p {
      font-size: 1.2em;
      color: #666;
      margin-bottom: 40px;
  }
  .categories-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
  }
  .category {
      flex: 1 1 calc(33.333% - 40px);
      box-sizing: border-box;
      padding: 20px;
      background: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
  }
  .category:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  .category-icon {
      font-size: 50px;
      color: orangered;
      margin-bottom: 20px;
  }
  .category-title {
      font-size: 1.5em;
      margin: 10px 0;
  }
  .category-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 20px;
  }
  .category-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #4d4c4d;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s;
  }
  .category-button:hover {
      background-color: orangered;
      color: white;
  }
  @media (max-width: 768px) {
      .category {
          flex: 1 1 100%;
      }
  }