/* Variables de estilo */
:root {
    /* Color backgrounds */
    --bg-color-primary: #7510f7;
    --bg-color-secondary: #11101d;

    /* Color text */
    --text-color-primary: #141c3a;
    --text-color-secondary: #f4f4f4;
    --text-color-tertiary: #7510f7;
}

/* Para ocultar el icono del sidebar para pantallas muy pequeñas */
@media (max-width: 768px) { /* Ajusta el valor según el tamaño en el que quieras ocultar el ícono */
  #btn {
    display: none; /* Oculta el ícono del sidebar en pantallas móviles */
  }
}



/* Reset de estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Estilos generales */
  body {
    font-family: "Ubuntu", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
  }
  
   /* nav, main, footer {
    padding: 20px;
  } */
  
  a {
    text-decoration: none;
  }
  /* Sidebar styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 78px;
    border-right: 1px solid #fff;
    background: var(--bg-color-primary); 
    padding: 5px 15px;
    z-index: 99;
    transition: all 0.5s ease;
  }
  
  .sidebar.active {
    width: 240px;
  }
  
  .sidebar #btn {
    position: absolute;
    color: #fff;
    top: 6px;
    left: 50%;
    font-size: 22px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    transform: translateX(-50%);
  }
  
  .sidebar.active #btn {
    left: 90%;
  }
  
  .sidebar .logo_content .logo {
    color: #fff;
    display: flex;
    height: 50px;
    width: 100%;
    align-items: center;
    pointer-events: none;
    transition: all 0.5s ease;
    opacity: 0;
  }
  
  .sidebar.active .logo_content .logo {
    opacity: 1;
    pointer-events: none;
  }
  
  .logo_content .logo .logo_name {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
  }
  
  .logo_content .logo i {
    font-size: 28px;
    margin-right: 5px;
  }
  
  .sidebar ul {
    margin-top: 20px;
  }
  
  .sidebar ul li {
    position: relative;
    height: 50px;
    width: 100%;
    margin: 0 5px;
    list-style: none;
    line-height: 50px;
    margin: 5px 0;
  }
  
  .sidebar ul li input {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 12px;
    outline: none;
    border: none;
    background: #161427;
    padding-left: 50px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
  }
  
  .sidebar ul li .bx-search {
    position: absolute;
    z-index: 99;
    color: #fff;
    font-size: 22px;
    transition: all 0.5s ease;
  }
  
  .sidebar ul li .bx-search:hover {
    background: rgb(36, 100, 218);
    color: #fff;
  }
  
  .sidebar ul li i {
    font-size: 18px;
    font-weight: 400;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    line-height: 50px;
    text-align: center;
  }
  
  .sidebar ul li a {
    display: flex;
    color: #fff;
    align-items: center;
    border-radius: 12px;
    white-space: nowrap;
    transition: all 0.4s ease;
  }
  
  .sidebar ul li a:hover {
    color: #fff;
    background: rgb(36, 100, 218);
  }
  
  .sidebar .links_name {
    font-size: 14px;
    font-weight: 400;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }
  
  .sidebar.active .links_name {
    opacity: 1;
    transition: 0s;
    pointer-events: auto;
  }
  
  .sidebar ul li .tooltip {
    position: absolute;
    left: 124px;
    top: 0;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    height: 35px;
    width: 120px;
    background: rgb(36, 100, 218);
    line-height: 35px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: 0s;
    opacity: 0;
    pointer-events: none;
    display: block;
    color: #fff;
  }
  
  .sidebar.active ul li .tooltip {
    display: none;
  }
  
  .sidebar ul li:hover .tooltip {
    transition: all 0.5s ease;
    opacity: 1;
    top: 50%;
  }
  
  /* Main content styles */
  .home_content {
    position: absolute;
    min-height: 100%;
    width: calc(100% - 78px);
    left: 78px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
  }
  
  .home_content .content_main {
    width: 100%;
    text-align: center;
    max-width: 100%;
  }
  
  .sidebar.active ~ .home_content {
    width: calc(100% - 240px);
    left: 240px;
  }
  
  #showcase {
    height: 310px;
    font-family: 'Kaushan Script', cursive;
    font-size: clamp(20px, 2.5vw, 80px);
    line-height: 1.3;
    position: relative;
    animation: heading 3s forwards;
  }
  
  #content {
    position: relative;
    animation: content 3s forwards;
  }
  
  @keyframes heading {
    0% {
      top: -50px;
    }
    100% {
      top: 200px;
    }
  }
  
  @keyframes content {
    0% {
      left: -1000px;
    }
    100% {
      left: 0;
    }
  }
  
  .btn:hover {
    transform: rotateY(360deg);
  }
  
  @keyframes btn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

/* Contenedor 1 inicio */
.content_start_text * + * {
  margin-top: 1.1em;
  line-height: 1.5;
}

.content_start {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1em; /* Padding para evitar que el contenido toque los bordes en pantallas pequeñas */
  box-sizing: border-box; /* Asegura que el padding no afecte el tamaño total */
}

.columns {
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap; /* Permite que las columnas se envuelvan en pantallas pequeñas */
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em;
  box-sizing: border-box; /* Asegura que el padding no afecte el tamaño total */
}

.content_start a:hover {
  color: royalblue;
}

.column-60 {
  flex: 0 0 60%;
}

.column-40 {
  flex: 0 0 40%;
}

.content_start h1 {
  font-size: 3em; /* Ajustado para que sea más pequeño en pantallas pequeñas */
  font-weight: bold;
  color: var(--text-color-primary);
  margin: 0; /* Elimina márgenes innecesarios */
}

.content_start p {
  font-size: 1.2em; /* Ajustado para que sea más pequeño en pantallas pequeñas */
  margin: 0; /* Elimina márgenes innecesarios */
}

.img_profile {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img_profile img {
  width: 100%;
  max-width: 250px;
  height: auto; /* Ajusta automáticamente la altura de acuerdo con el ancho */
  border-radius: 10px;
  margin-bottom: 50px;
}

.card_social {
  margin: 0 auto;
  width: fit-content;
  margin-top: 20px;
  height: fit-content;
  background-color: rgb(238, 238, 238);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}

.button_cv {
  display: flex;
  text-decoration: none;
  margin: 0 auto;
  margin-bottom: 30px;
  width: 70%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(45deg, #ffc75d, #ffc708);
  box-shadow: 0 0 24px #ffb20861;
  border: 2px solid #ffe825;
  border-radius: 100px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    text-shadow 0.3s ease;
  padding: 10px 20px;
  color: #09090b;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Text drop shadow */
}

.button_cv:hover {
  background-color: #ffc75d !important;
  box-shadow: 0 0 34px #ffb20861 !important;
  text-shadow: 0 0 4px #ffe825; /* Hover text shadow */
  border-color: #ffe825 !important;
}

.icon_cv {
  margin-right: 5px;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3)); /* Icon drop shadow */
}

/* for all social containers*/
.socialContainer_social {
  width: 52px;
  height: 52px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: .3s;
}
/* instagram*/
.containerOne_social:hover {
  background-color: #d62976;
  transition-duration: .3s;
}
/* twitter*/
.containerTwo_social:hover {
  background-color: #00acee;
  transition-duration: .3s;
}
/* linkedin*/
.containerThree_social:hover {
  background-color: #0072b1;
  transition-duration: .3s;
}
/* WhatsApp*/
.containerFour_social:hover {
  background-color: #128C7E;
  transition-duration: .3s;
}

.socialContainer_social:active {
  transform: scale(0.9);
  transition-duration: .3s;
}

.socialSvg_social {
  width: 17px;
}

.socialSvg_social path {
  fill: rgb(255, 255, 255);
}

.socialContainer_social:hover .socialSvg_social {
  animation: slide-in-top_social 0.3s both;
}

@keyframes slide-in-top_social {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsividad */

/* Pantallas medianas */
@media (max-width: 1024px) {
  .content_start h1 {
    font-size: 2.5em; /* Ajusta el tamaño del texto del encabezado */
  }
  
  .content_start p {
    font-size: 1em; /* Ajusta el tamaño del texto del párrafo */
  }
  
  .img_profile img {
    max-width: 180px; /* Ajusta el tamaño de la imagen de perfil */
  }
}

/* Pantallas pequeñas */
@media (max-width: 768px) {
  .columns {
    flex-direction: column;
    align-items: center;
  }

  .column {
    width: 100%;
    text-align: center;
  }
  
  .content_start h1 {
    font-size: 1.8em; /* Ajusta el tamaño del texto del encabezado */
  }
  
  .content_start p {
    font-size: 0.9em; /* Ajusta el tamaño del texto del párrafo */
  }
  
  .img_profile img {
    max-width: 150px; /* Ajusta el tamaño de la imagen de perfil */
  }
}

/* Pantallas muy pequeñas (por ejemplo, teléfonos en orientación vertical) */
@media (max-width: 480px) {
  .content_start h1 {
    margin-top: 100px;
    font-size: 1.6em; /* Ajusta el tamaño del texto del encabezado */
  }
  
  .content_start p {
    font-size: 0.8em; /* Ajusta el tamaño del texto del párrafo */
  }
  
  .img_profile img {
    max-width: 120px; /* Ajusta el tamaño de la imagen de perfil */
  }
  
  .button_cv {
    width: 90%; /* Aumenta el tamaño del botón para pantallas muy pequeñas */
    padding: 12px 24px; /* Ajusta el padding del botón */
  }
}



/* Contenedor 2 sobre mi */
.content_about * + * {
  margin-top: 1.1em;
  line-height: 1.5;
}

.content_about {
  background-color: var(--bg-color-primary);
  height: 100vh;
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1em; /* Añadido padding para evitar que el contenido toque los bordes en pantallas pequeñas */
}

.content_elements_about {
  color: #fff;
  width: 80%; /* Ajustado para que sea más flexible en pantallas pequeñas */
  max-width: 800px; /* Limita el ancho máximo en pantallas grandes para mejorar la legibilidad */
}

.content_elements_about h2 {
  font-size: 2em; /* Ajustado para ser un poco más pequeño en pantallas pequeñas */
  font-weight: bold;
}

.content_elements_about p {
  font-size: 1em; /* Ajustado para ser un poco más pequeño en pantallas pequeñas */
  line-height: 1.5;
  margin-bottom: 1.5em;
  font-weight: 500;
}

/* Responsividad */

/* Pantallas medianas */
@media (max-width: 1024px) {
  .content_elements_about {
      width: 70%; /* Reduce el ancho para pantallas medianas */
  }
  
  .content_elements_about h2 {
      font-size: 1.8em; /* Ajusta el tamaño del texto del encabezado */
  }
  
  .content_elements_about p {
      font-size: 0.95em; /* Ajusta el tamaño del texto del párrafo */
  }
}

/* Pantallas pequeñas */
@media (max-width: 768px) {
  .content_elements_about {
      width: 90%; /* Aumenta el ancho para pantallas pequeñas */
  }
  
  .content_elements_about h2 {
      font-size: 1.6em; /* Ajusta el tamaño del texto del encabezado */
  }
  
  .content_elements_about p {
      font-size: 0.9em; /* Ajusta el tamaño del texto del párrafo */
  }
}

/* Pantallas muy pequeñas (por ejemplo, teléfonos en orientación vertical) */
@media (max-width: 480px) {
  .content_elements_about {
      width: 95%; /* Aumenta aún más el ancho para pantallas muy pequeñas */
  }
  
  .content_elements_about h2 {
      font-size: 1.4em; /* Ajusta el tamaño del texto del encabezado */
  }
  
  .content_elements_about p {
      font-size: 0.85em; /* Ajusta el tamaño del texto del párrafo */
  }
}


/* Contenedor 3 habilidades */
.content_skills {
  height: auto; /* Ajusta la altura automáticamente */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5em 2em;
}

.content_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1em;
  padding: 1em;
  text-align: center;
  max-width: 100%; /* Asegúrate de que no exceda el ancho del contenedor */
}

.card {
  flex: 1 1 calc(33.333% - 1.1em); /* Tres cartas por fila en pantallas grandes */
  max-width: calc(33.333% - 1.1em); /* Ancho máximo de las cartas */
  padding: 2em 1.4em;
  border: 2px solid #ccc;
  background: #fff;
  border-radius: 12px;
  transition: box-shadow 200ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  box-sizing: border-box; /* Asegura que el padding y el border se incluyan en el ancho total */
}

/* Asegúrate de que el contenido de las cartas se ajuste correctamente */
.card_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card .heading {
  color: royalblue;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5em;
}

.spacing_card * + * {
  margin-top: 1em;
}

.card .heading span {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 500;
}

.text_card {
  color: royalblue;
}

.card .code svg {
  fill: royalblue;
  width: 100px;
  height: 100px;
}

.text_card span {
  font-weight: bold;
}

/* Responsividad */

/* Pantallas grandes (tres cartas por fila) */
@media (max-width: 1024px) and (min-width: 768px) {
  .card {
    flex: 1 1 calc(45% - 1.1em); /* Dos cartas por fila */
    max-width: calc(45% - 1.1em); /* Ancho máximo de las cartas */
  }
}

@media (max-width: 768px) {
  .card {
    flex: 1 1 100%; /* Una carta por fila */
    max-width: 100%; /* Ancho máximo de las cartas */
  }
}


/* Session de proyectos */
.cards_container {
  background-color: var(--bg-color-primary);
  padding: 2em;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* Espacio entre las cartas */
  justify-content: center; /* Centra las cartas horizontalmente */
}

/* Estilos para las cartas */
.blog-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  background: #fff;
  line-height: 1.4;
  font-family: sans-serif;
  border-radius: 5px;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 1rem); /* Ocupa el 50% del ancho del contenedor menos el margen */
  max-width: calc(33.333% - 1rem); /* Ancho máximo del 50% menos el margen */
  box-sizing: border-box; /* Asegura que el padding y border se incluyan en el ancho total */
}

/* Otros estilos para las cartas */

.blog-card a {
  color: inherit;
}

.blog-card a:hover {
  color: #5ad67d;
}

.blog-card:hover .photo {
  transform: scale(1.3) rotate(3deg);
}

.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}

.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}

.blog-card .description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}

.blog-card .description h1,
.blog-card .description h2 {
  font-family: Poppins, sans-serif;
}

.blog-card .description h1 {
  line-height: 1;
  margin: 0;
  font-size: 1.7rem;
}

.blog-card .description h2 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-top: 5px;
}

.blog-card .description .read-more {
  text-align: right;
}

.blog-card .description .read-more a {
  color: #5ad67d;
  display: inline-block;
  position: relative;
}

.blog-card .description .read-more a::after {
  content: "\f061";
  font-family: FontAwesome;
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition: margin 0.3s, opacity 0.3s;
}

.blog-card .description .read-more a:hover::after {
  margin-left: 5px;
  opacity: 1;
}

.blog-card p {
  position: relative;
  margin: 1rem 0 0;
}

.blog-card p:first-of-type {
  margin-top: 1.25rem;
}

.blog-card p:first-of-type::before {
  content: "";
  position: absolute;
  height: 5px;
  background: #5ad67d;
  width: 100%;
  top: -0.75rem;
  border-radius: 3px;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .blog-card {
    flex: 1 1 calc(45% - 1.1em); /* Dos cartas por fila */
    max-width: calc(45% - 1.1em); /* Ancho máximo de las cartas */
  }
}

@media (max-width: 768px) {
  .blog-card {
    flex: 1 1 100%; /* Una carta por fila */
    max-width: 100%; /* Ancho máximo de las cartas */
  }
}

/* sesión de habilidades */
.container_skills {
  background-color: var(--bg-color-primary);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1em;
}

.container_skills h2 {
  font-size: 2.5em;
  margin-bottom: 1.5em;
  color: #fff;
}

.container_skills_cards {
  display: flex;
  flex-wrap: wrap; /* Permite que las tarjetas se ajusten en varias filas */
  justify-content: center;
  gap: 1.5em; /* Espacio entre tarjetas (ajustado para más separación) */
}

.container_skills_cards .glass {
  width: 180px;
  height: 200px;
  background: linear-gradient(rgba(233, 164, 164, 0.133), transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s; /* Transiciones suaves para el tamaño y sombra */
  margin-bottom: 1em; /* Espacio debajo de cada carta para evitar que se vean tan pegadas */
}

.container_skills_cards .glass:hover {
  transform: scale(1.05); /* Aumenta el tamaño de la carta ligeramente */
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada pero sutil */
}

.container_skills_cards .glass::before {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: rgba(173, 216, 230, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff; /* Cambia el color del texto aquí */
}

.container_skills_cards .glass svg {
  height: 80px;
  width: 80px;
  fill: #fff; /* Hacer que los SVGs sean blancos */
}

/* Media queries para ajustar el diseño en pantallas más pequeñas */
@media (max-width: 1200px) {
  .container_skills_cards .glass {
    width: 150px;
    height: 170px;
  }
}

@media (max-width: 900px) {
  .container_skills_cards .glass {
    width: 120px;
    height: 140px;
  }
}

@media (max-width: 600px) {
  .container_skills_cards .glass {
    width: 100px;
    height: 120px;
  }
}

@media (max-width: 400px) {
  .container_skills_cards {
    gap: 1em; /* Espacio entre tarjetas en pantallas muy pequeñas (ajustado) */
  }
}




/* Sesión 5 de experiencia */
.container_experience {
  padding: 2em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* Espacio entre las cartas */
  justify-content: center; /* Centra las cartas horizontalmente */
}

.card_experience {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  background: #fff;
  line-height: 1.4;
  font-family: sans-serif;
  flex: 1 1 calc(33.333% - 1rem); /* Ocupa el 33.333% del ancho del contenedor menos el margen */
  max-width: calc(33.333% - 1rem); /* Ancho máximo del 33.333% menos el margen */
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid #7510f7;
  padding: 1rem;
}

.header_experience {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.logo_ut {
  width: 100px;
  height: 100px;
}

.logo_ut img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.body_experience {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title_experience {
  font-size: 1.125rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: rgba(17, 24, 39, 1);
  text-decoration: none;
}

.title_experience:hover {
  text-decoration: underline royalblue;
}

.description_experience {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(107, 114, 128, 1);
}

.post-info_experience {
  margin-top: 1.5rem;
  display: flex;
  grid-gap: 1rem;
  gap: 1rem;
}

.cr {
  display: flex;
  flex-direction: column-reverse;
}

.dt {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: rgba(75, 85, 99, 1);
}

.button_container-proyect {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5em;
}

/* Responsividad */

/* Pantallas grandes (escritorio) */
@media (min-width: 1024px) {
  .card_experience {
    flex: 1 1 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
  }
}

/* Pantallas medianas (tabletas) */
@media (min-width: 768px) and (max-width: 1023px) {
  .card_experience {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

/* Pantallas pequeñas (móviles) */
@media (max-width: 767px) {
  .card_experience {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .title_experience {
    font-size: 1rem;
  }

  .description_experience {
    font-size: 0.75rem;
  }

  .dt {
    font-size: 0.75rem;
  }
}

/* Sección  6 de Contacto */
/* Footer Styles */
.container_final {
  background-color: var(--bg-color-primary);
  color: var(--text-color-primary);
  text-align: center;
  color: #fff;
  padding: 2em 1em;
}

.final_message {
  margin-bottom: 2em;
}

.final_message svg {
  width: 50px;
  height: 50px;
  color: var(--text-color-primary);
}

.final_message p {
  width: 50%;
margin: 0 auto;
  font-size: 1.2em;
  margin-top: 1em;
}

.social_icons {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-bottom: 1em;
}

.social_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  border: 1px solid #fff;
  height: 52px;
  border-radius: 50%;
  background-color: var(--icon-bg-color);
  transition: background-color 0.3s ease;
}

.social_icon:hover {
  background-color: #5ad67d;
}

.social_icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.contact_email {
  font-size: 1em;
}

.contact_email a {
  color: var(--text-color-primary);
  text-decoration: none;
  margin-top: 30px;
}

.cv_final {
  width: 40%;
  margin: 0 auto;
}

.contact_email a:hover {
  text-decoration: underline;
  color: #00acee;
}

/* Boton traductor */
.cssbuttons-io-button {
  width: 40%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 17px;
  padding: 0.8em 1.5em 0.8em 1.2em;
  color: white;
  background: #ad5389;
  background: linear-gradient(0deg, rgba(77,54,208,1) 0%, rgba(132,116,254,1) 100%);
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em #4d36d0be;
  letter-spacing: 0.05em;
  border-radius: 20em;
  appearance: none; /* Elimina el estilo predeterminado del select */
  -webkit-appearance: none; /* Elimina el estilo predeterminado en Safari */
  -moz-appearance: none; /* Elimina el estilo predeterminado en Firefox */
  cursor: pointer; /* Cambia el cursor al pasar sobre el select */
}

.cssbuttons-io-button option {
  color: black; /* Color del texto de las opciones */
}

#google_translate_element {
  position: relative;
  display: inline-block;
}

#google_translate_element::after {
  content: '▼'; /* Triángulo para indicar que es un select */
  font-size: 14px;
  color: white;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.cssbuttons-io-button:hover {
  box-shadow: 0 0.5em 1.5em -0.5em #4d36d0be;
}

.cssbuttons-io-button:active {
  box-shadow: 0 0.3em 1em -0.5em #4d36d0be;
}

/* Ocultar el icono de desplegable predeterminado en navegadores */
.cssbuttons-io-button::-ms-expand {
  display: none;
}

.cssbuttons-io-button::-webkit-scrollbar {
  display: none; /* Ocultar la barra de desplazamiento en navegadores WebKit */
}

.cssbuttons-io-button:focus {
  outline: none; /* Eliminar el borde de enfoque */
}
