/* ========================= */
/* style__cvButton__index */
/* ========================= */
.profile {
  display: flex;
  flex-direction: column; /* Colocar elementos en columna */
  align-items: center; /* Centrar elementos horizontalmente */
  margin-top: 20px; /* Espaciado superior */
  position: relative; /* Posición relativa para el contenedor */
}
.card {
  width: 190px;
  height: 254px;
  background-image: linear-gradient(163deg, #bb423b 0%, #7d2f32 100%);
  border-radius: 20px;
  transition: all .3s;
  overflow: hidden; /* Asegura que la imagen no se salga del contenedor */
  box-shadow: 0px 0px 10px 1px #bb423b; /* Marco de color rojo al cargar la página */
}
.card2 {
  width: 190px;
  height: 254px;
  background-color: #1a1a1a;
  border-radius: 20px;
  transition: all .2s;
  overflow: hidden; /* Asegura que la imagen no se salga del contenedor */
}
.card2:hover {
  transform: scale(0.98);
  border-radius: 20px;
}
.card:hover {
  box-shadow: 0px 0px 15px 2px #bb423b; /* Agranda el marco de color rojo al pasar el mouse */
}
.profile__photo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Asegura que la imagen se ajuste al contenedor */
  border-radius: 20px; /* Hace que la imagen tenga los mismos bordes redondeados */
}
.button-container {
  position: absolute;
  bottom: -20px; /* Ajusta este valor según sea necesario */
}
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  padding: 8px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all .15s ease;
  animation: scaleUp 2.5s ease-out; /* Animación de escala */
}
.button::before,
.button::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7D8082;
  transition: all .15s ease;
}
.button::before {
  top: 0;
  border-bottom-width: 0;
}
.button::after {
  bottom: 0;
  border-top-width: 0;
}
.button:active,
.button:focus {
  outline: none;
}
.button:active::before,
.button:active::after {
  right: 3px;
  left: 3px;
}
.button:active::before {
  top: 3px;
}
.button:active::after {
  bottom: 3px;
}
.button_lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: #fff;
  background-color: var(--negro);
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}
.button_lg::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #0f1923;
}
.button_lg::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #0f1923;
  transition: all .2s ease;
}
.button_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: #ff4655;
  transform: skew(-15deg);
  transition: all .2s ease;
}
.button_text {
  position: relative;
}
.button:hover {
  color: #0f1923;
}
.button:hover .button_sl {
  width: calc(100% + 15px);
}
.button:hover .button_lg::after {
  background-color: #fff;
}
.button__download{
  margin-top: 3rem;
  margin-bottom: 2rem;
}
/* Media Queries para pantallas horizontales */
@media (min-width: 1024px) and (orientation: landscape) {
  .profile {
    margin-top: 5%;
      margin-left: 10%; /* Ajusta este valor según sea necesario para alinear con el borde del texto */
  }
}
@media (min-width: 480px){
  .profile {
      margin-bottom: 5%;
    }
}
/* ========================= */
/* END - style__cvButton__index */
/* ========================= */