body {
font-family: "Oswald", sans-serif;
background-color:#4F4F4F; /*	#C19A6B*/
/*hace que el footer se pegue abajo del todo*/
height: 100%;
width: auto;
}

/*Texto titulo*/

.titulo {
font-family: "Bebas Neue", sans-serif;
}

.titulo .naranja {
color: #f97e3c;
}

.logo a {
display: flex;
/* Disposición en línea de los hijos directos */
align-items: center;
/* Alinea los elementos verticalmente */
text-decoration: none;
/* Quita el subrayado del enlace */
color: inherit;
/* Mantiene el color del texto */
}

.logo a:hover {
transform: scale(1.1);
/* Aumenta el tamaño del enlace al 110% del tamaño original */
transition: transform 0.2s;
/* Agrega una transición suave para que el efecto sea gradual */
}

.imglogo {
width: 50px;
height: auto;
}



/*Navbar*/

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

header {
background: #333;
color: #fff;
padding: 10px 0;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.logo h1 {
margin: 0;
}

.menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
}

.menu-toggle .bar {
width: 25px;
height: 3px;
background-color: #fff;
margin: 4px 0;
}

.nav-links {
list-style: none;
display: flex;
}

.nav-links li {
margin: 0 15px;
}

.nav-links a {
text-decoration: none;
color: #fff;
font-size: 16px;
}


.menu-toggle {
display: flex;
}

.nav-links {
z-index: 10; /*Hace que la hamburguesa se despliegue por encima de todo*/
position: absolute;
top: 60px;
left: 0;
width: 100%;
background: #333;
flex-direction: column;
align-items: center;
height: 0;
overflow: hidden;
transition: height 0.3s ease-in-out;
}

.nav-links li {
margin: 20px 0;
}

.nav-links a {
font-size: 24px;
}

.nav-links.active {
height: calc(100vh - 60px);
/* Dejar espacio para el header */
}



/*Card perfil*/



:root {
  --dark: #333333;
  --green: white;
}
#page {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

}
.card {
  display: flex;
  width: 48rem;
  height: 32rem;
  border-radius: 0.6rem;
  overflow: hidden;
  position: relative;
  font-family: "Poppins", sans-serif;
}


.showmobile{
  display: flex;
  justify-content: space-between;
  padding: 0 5px 0 5px;
}

@media(min-width: 960px) {

  .showmobile{
    display: none;
  }
}
.half {
  width: 55%;
  
}

.half-left{
  background-color: white;
}
.img-container {
  transform: scale(1.4);
  & img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

  }
}

.half-right {
  background-color: var(--dark);
  padding: 1.5rem 1rem 4rem 1rem;
  position: relative;
  & .online {
    position: absolute;
    right: 2rem;
    color: #487098;
    font-size: 0.65rem;

    &:after {
      content: "";
      display: block;
      width: 0.4rem;
      height: 0.4rem;
      background-color: var(--green);
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 120%;
      transform: translate(-50%, -50%);
      margin-left: 0.2rem;
    }
  }
  & .name {
    font-size: 1.7rem;
    background: linear-gradient(#f83487, #fe8361);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  & h3 {
    color: var(--green);
    margin-top: 1rem;
  }
  & button {
    background: linear-gradient(to right, var(--green), #f0653b);
    font-size: 0.7rem;
    padding: 0.4rem 1.8rem;
    border-radius: 1.8rem;
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    cursor: pointer;
  }
  & p {
    color: #487098;
    font-size: 0.65rem;
    margin-top: 0.4rem;
  }
}
.triangle {
  position: absolute;
  bottom: -0.1rem;
  width: 100%;
  height: 7rem;
  background: linear-gradient(rgb(165, 165, 165), #333333);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  & ul {
    width: 35%;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    justify-content: space-between;
  }
  & a {
    width: 1.2rem;
    height: 1.2rem;
    font-size: 0.8rem;
    color: #f83487;
    border-radius: 50%;
    text-align: center;
    line-height: 1.2rem;
  }
  & span {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: white;
  }
}
.fa-plus {
  position: absolute;
  bottom: 5.2rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(#fd1999, #a60fe7);
  text-align: center;
  line-height: 2.5rem;
  font-size: 1rem;
  color: white;
}

.tipouser{
  color:green;
}

ul {
  list-style-type: none;
}

ul li a:hover{
  transform: scale(1.1); /* Aumenta el tamaño del enlace al 110% del tamaño original */
  transition: transform 0.2s; /* Agrega una transición suave para que el efecto sea gradual */
}

@media(max-width: 960px) {
  .card{
    top:0;
    padding: 0 3px 0 3px;
  }

  #page{
    margin-top: -150px;
  }

  .img-container {
    position: relative;
    display: inline-block;
    transform: none;
  }

  .img-container::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
      border-bottom: 3px solid grey;
      border-right: 3px solid grey;
      border-radius: 5px;
      pointer-events: none; /* Asegura que no interfiera con la imagen */
  }

  .hidemobile{
    display: none !important;
  }
}

ul.hidemobile {
  display: flex;
  flex-wrap: wrap; /* Permite que los íconos pasen a la siguiente línea si es necesario */
  gap: 10px; /* Espacio uniforme entre los íconos */
  padding: 0;
  margin: 0;
  list-style: none; /* Elimina los puntos de lista */
  justify-content: space-evenly; /* Alinea los íconos en el centro */
}

ul.showmobile {
  display: flex;
  flex-wrap: wrap; /* Permite que los íconos pasen a la siguiente línea si es necesario */
  gap: 10px; /* Espacio uniforme entre los íconos */
  padding: 0;
  margin: 0;
  list-style: none; /* Elimina los puntos de lista */
  justify-content: space-evenly; /* Alinea los íconos en el centro */
}



/*overlay asesorado*/

/* Estilos del nuevo overlay */
.new-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Caja de opciones con estilo */
.new-options-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #333333;
  box-shadow: 15px 15px 7px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  text-align: center;
}

.new-options-box p {
  color: white;
  margin-bottom: 20px;
}

@media(max-width: 960px) {
  .botonesborrar {
      padding-left: 20px;
      padding-right: 20px;
  }
}

.sisnon {
  background-color: #F0653B;
  color: white;
  margin-left: 5px;
  margin-right: 5px;
  min-width: 140px;
  padding: 6px 0 6px 0;

}

.hoverrojo:hover, .hoverblanco:hover {
  transform: scale(1.1);
  transition: transform 0.15s ease;
  cursor: pointer;
}

.hoverrojo:hover {
  color: red;
}



/*Eliminar asesorado*/

.icono{
  height: 30px;
  width: 30px;
}

.confirm-delete {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #333333;
  box-shadow: 15px 15px 7px;
  z-index: 1000;
}

.confirm-delete p{
  color: white;
}

.confirm-delete button {
  margin: 10px;
}

.botonesborrar{
  display: flex;
  justify-content: space-between;
  padding-left: 80px;
  padding-right: 80px;
}

@media(max-width: 960px) {
  .botonesborrar{
      padding-left: 20px;
      padding-right: 20px;
  }
}

.sisnon{
  background-color: #F0653B;
  padding-left: 20px;
  padding-right: 20px;
  color: white;
}

.hoverrojo:hover{
  transform: scale(1.1);
  transition: transform 0.15s ease;
  color: red;
  cursor: pointer;
}

.hoverblanco:hover{
  transform: scale(1.1);
  transition: transform 0.15s ease;
  cursor: pointer;
}


.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}




/*Footer*/

.content {
    height: 100%;
    width: auto;
}



footer {
	overflow: hidden;
	background-color: #212529;
	color: rgb(165, 165, 165);
	width: 100%;
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	text-align: center;
  right: 0;
  left: 0;
  bottom: 0;
  position: sticky;
  bottom: 0;
}

.textofooter{

    text-align: center;
    display: flex;
}

footer a{
    color: rgb(165, 165, 165);
}

footer a:hover {
transform: scale(1.1); /* Aumenta el tamaño del enlace al 110% del tamaño original */
transition: transform 0.2s; /* Agrega una transición suave para que el efecto sea gradual */
}


.redeslogo{
    width: 20px;
    height: auto;
}

.content{
    height: 100%;
    width: auto;
}



/*Asegura que el footer se pegue abajo del todo*/

/* Asegurarse de que el html y body ocupen el 100% de la altura */
html, body {
    height: 100%;
    margin: 0;
}

