body{
    margin: 0;
    box-sizing: border-box;
    background-color: rgba(209, 209, 209, 0.338);
}
/*Estilos Header*/
.header{
    height: 100vh;
    box-sizing: border-box;
    background-image: url("/Assets/Images/retiro2/fondoretiro.jpg");
    display: flex;
    background-size: cover;

}
.header_overlay{
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: 1 ;
}
.header_item_container{
    position: relative;
    z-index: 10;
    margin: auto;
    text-align: center;
    max-width: 900px;
}
.header_title{
    margin: 0;
    font-size: 50px;
    text-wrap: balance;
    color: white;
    font-weight: bold;
    margin-top: 5vh;
}
.header_text_item{
    font-size: 20px;
    text-wrap: pretty;
    color: white;
    font-weight: bold;
    margin-top: 5vh;
}
.header_img{
    filter: drop-shadow(0 0 10px rgb(255, 255, 255));
    min-width: 200px;
    max-width: 50%;
}

.colodiv{
    border: 10px solid rgb(127, 210, 255);
}
/*Section 1*/
.section_1_title, .section_1_title2{
    margin: 50px;
    text-align: center;
    font-weight: bold;
}
.colorblue{
    color: rgb(127, 210, 255);
    font-weight: bold;
}
.card {
    box-shadow: 0 0 27px 0 rgba(22, 239, 239, 0.411);
}
.avatar {
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    margin: 2vh;
}
a {
text-decoration:none;    
}
/*Diseño boton retiro 2*/ 
.button_retiro2 {
    font-size: 20px;
    background: rgb(127, 210, 255);
    color: white;
    font-weight: bold;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    margin: auto;
    margin-bottom: 10vh;
  }
.button_retiro2 span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
  }
.button_retiro2 svg {
    width: 30px;  
    height: 30px; 
    margin-right: 20px;
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
  }
.button_retiro2:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
  }
.button_retiro2:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
  }
.button_retiro2:hover span {
    transform: translateX(5em);
  }
.button_retiro2:active {
    transform: scale(0.95);
  }
  
  @keyframes fly-1 {
    from {
      transform: translateY(0.1em);
    }
  
    to {
      transform: translateY(-0.1em);
    }
  }
/*Section 2*/
.section_banner_retiro2{
  width: 100%;
}
.card1{
  padding: 0;
  display: flex;
  margin-top: 10vh;
  border: 1px solid rgba(0, 0, 0, 0.192);
  border-radius: 25px;
  box-shadow: 0 0 27px 0 rgba(22, 239, 239, 0.411);
  overflow: hidden;
}
.card_imagen{
  width: 30vw;
  height: 100%;
  object-fit: cover;
}
.card_content{
  padding: 10px;
  width: 70vw; /* El contenido ocupa el 60% restante del card */
}
/*Section_3*/
.section_3{
  margin-top: 20vh;
  background-color: rgb(127, 210, 255) ;
  padding-top: 5vh;
}
.section_3_title{
  color: white;
}
/*Section_4*/
.section_4{
  margin: auto;
  margin-top: 10vh;
}
.section_4_title{
  font-weight: bold;
  margin-bottom: 10vh;
}
.section_4_subtitle{
  font-weight: bold;
}
.section_4_button{
  margin-top: 10vh;
}
.section_4_precio{
  text-align: center;
  font-weight: bold;
  font-weight: bold;

  font-size: 3rem;
}
.section_4_precio_subrayado{
  text-decoration: line-through;
  font-size:2.5rem;
}

/* boton */
.floating {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: rgb(127, 210, 255);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  text-decoration: none;
  transition: background-color 0.3s;
  border: 2px solid white;
  z-index: 9;
}

.floating:hover {
  background-color: rgb(127, 210, 255);
  border: 2px solid rgba(0, 0, 0, 0.521);
}
.label-ofer {
  background-color: rgb(127, 210, 255);
  color: white;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
