/*CSS General*/
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/*BARRA ANCHO*/
body{
    overflow-x: hidden;
}

/* FONDO DE LA PAGINA Y NAVBAR MEJORADO*/
body, .negra{
    background-color: #000000;
}

.menu{
    background-color: #000000;
}

.home {
    height: 40px;
    transition: transform 0.3s;
  }
  
  .home:hover {
    transform: scale(1.1);
  }
  
  .Contacto {
    color: #00bfff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .Contacto:hover {
    color: #ffffff;
  }
  
  .social{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .social:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px #00bfff;
  }
  
  .escudo{
    max-height: 40px;
    transition: transform 0.3s;
  }
  
  .escudo:hover{
    transform: scale(1.1);
  }

.azulletra{
    color: #0072ff;
    text-decoration: solid;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/*TITULO PIONERAS*/
.Titulosec{
    text-align: center;
    padding: 40px 20px;
}

.h1Titulo{
    font-size: 60px;
    font-weight: bold;
    line-height: 1.1;
    color: #2a2ddb;
    font-family: 'Courier New', Courier, monospace;
}

/*TITULO BIOGRAFIAS*/
.biografias {
  text-align: center;
  padding: 40px 0;
  margin: 0 auto;
}

/* BORDE PARA IMAGENES DE LAS GALERIAS */
.img-borde{
    transition: border 0.3s ease;
    width: 12em;
}

.img-borde:hover{
    border: 5px solid transparent; /* Establecer un borde transparente */
    border-image: linear-gradient(to right, #b010e1, #0072ff); /* Borde degradado azul */
    border-image-slice: 1; /* Aplicar el borde degradado */
}

.negrita{
    font-weight: bold;
    font-family: fantasy;
    font-size: 1.5em;
}

.titulo{
    font-family: fantasy;
}

/*GALERIA Y BARRA DE SEPARACION*/
.galerias{
    background-color: #85e2f1;
    border: 3px #1707fc solid;
    width: 45em;
}

.galerias2{
    background-color: #85e2f1;
    border: 3px #1707fc solid;
    width: 45em;
    padding: 1.5em;
}
div div div div div div div.cardazul{
  background-color: #85e2f1;
  border: none;
  text-align: center;
}

.barraseparar{
    border-top: 10px #85e2f1 solid;
}


#fotogrande{
    width: 60px;
    height: 40px;
}

/*"BIOGRAFIA"*/

.tituloborde{
    font-weight: bold;
    font-size: 2rem;
    color: #111;
    border-bottom: 2px solid #03eeff;
    border-top: 2px solid #03eeff;
    display: inline-block;
    padding-bottom: 5px;  
}

/*BOTON FLECHITA*/
#botonsubir{
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 100;
    background-color: #0bfbff;
    color: rgb(2, 2, 2);
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
  }
  
  #botonsubir:hover{
    background-color: #0056b3;
  }
  
  /*MENU BORDE*/
  #menuborde{
    border-bottom: #0072ff solid 4px;
  }

  /*CARD EN GENERAL*/
  .divcard{
    min-height: 100vh;
  }

  .cardcambio{
    max-width: 700px;
    width: 100%;
    text-align: center;
  }
  
  .textocard{
    text-align: justify;
  }
  
  main div div a .imgcard{
    width: 250px;
    height: auto;
    margin: 20px auto 0 auto;
    display: block;
  }

  /*FONDO CARD*/
  .card.azulcard{
    background-color: #85e2f1;    
  }

 /*A DEL BOTON*/
 .aboton{
  top: 10px;
  left: 5px;
  z-index: 1030;
  position: absolute;
 }