.avatar, .avatar-usuario{
	width:40px;
	height:40px;
	border-radius:50%;
	margin-right:0px;
}

.gl-comentarios{
	padding:25px 0px 25px 0px;
	border-radius:12px;
	font-family:Arial;
	color:white;
}

.gl-comentarios h1{
	color:#f5e47b;
	text-shadow:0 0 10px #f5e47b;
}

.gl-comentarios h2{
	color:#f5e47b;
	text-shadow:0 0 10px #f5e47b;
}

.gl-nuevo-comentario{
	display:flex;
	gap:6px;
	margin-bottom:0px;
}

.gl-avatar{
	width:40px;
	height:40px;
	border-radius:50%;
	margin-right:8px;
}

.gl-nuevo-comentario textarea{
	flex:1;
	background:#111;
	border:1px solid #f5e47b;
	border-radius:8px;
	padding:10px;
	color:white;
}

.gl-nuevo-comentario button{
	background: linear-gradient(45deg, #bc883d, #f5e47b);
	border:none;
	padding:10px 15px;
	border-radius:8px;
	cursor:pointer;
	font-weight:bold;
}

.texto-anonimo {
    font-size: 12px;
    color: #999;
    margin-top: 0px;
	margin-bottom:10px;
    font-style: italic;
}


.gl-comentario{
	background:#121218;
	padding:15px;
	border-radius:10px;
	margin-bottom:15px;
	border-left:3px solid #f5e47b;
}

.gl-usuario{
	font-weight:bold;
	color:#f5e47b;
}

.gl-fecha{
	font-size:12px;
	opacity:0.6;
}

.gl-texto{
	margin-top:8px;
	margin-bottom:10px;
}

.gl-responder{
	background:none;
	border:none;
	color:#f5e47b;
	cursor:pointer;
}

.gl-respuestas{
	margin-left:40px;
	margin-top:10px;
}


/* CONTENEDOR DE COMENTARIOS */
#lista-comentarios{
    max-width: 100%;
    margin:auto;
    padding:10px;
    /*background:#121212;*/
    border-radius:12px;
    box-shadow:0 0 10px #f5e47b;
    font-family:Arial, Helvetica, sans-serif;
}

/* CADA COMENTARIO */
.comentario{
    display: flex; /* Para que avatar y contenido estén en fila */
    align-items: flex-start; /* Alinea la imagen con el inicio del contenido */
    background: rgba(18, 18, 18, 0.6);
    border:1px solid #f5e47b;
    border-left:1px solid #f5e47b;
    padding: 2px 0px 2px 0px;
    margin-bottom:8px;
    border-radius:8px;
    color:#f5e47b;
    transition:all 0.3s ease;
	gap:10px;
}

/* CAJA COMENTARIOS */
.input-publicar{
    width: 100%;
	min-height: 50px;
    background: #0f0f0f;
    border: 1px solid #f5e47b;
    border-radius: 6px;
    padding: 10px;
    color: white;
    font-size: 12px;
    resize: vertical; /* Permite expandir solo hacia abajo */
	overflow: auto;
    outline: none;
    transition: 0.2s;
}

.input-publicar:focus{
    border-color: #bc883d;
    box-shadow: 0 0 6px #bc883d;
}


/* BOTON ENVIAR COMENTARIO */
.btn-publicar-comentario{
    margin-top: 0px;
    background: linear-gradient(45deg, #bc883d, #f5e47b);
    border: none;
    color: #000;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.25s ease;
	width: fit-content;
	height: fit-content;
}

.btn-publicar-comentario:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px #f5e47b;
}


/* AVATAR */
.comentario .avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    object-fit:cover;
	margin: 5px -5px 0px 5px;
}

/* CONTENIDO (NOMBRE, TEXTO, FECHA) */
.comentario .contenido{
    display:flex;
    flex-direction:column; /* Mantiene nombre, texto y fecha en columna */
}

/* NOMBRE USUARIO */
.comentario b{
    color:#22c55e;
    font-size:15px;
	margin-bottom:2px; /* Pequeño espacio debajo del nombre */
}

/* TEXTO */
.comentario p{
    margin:0px 0;
    color:#ffffff;
	text-align: justify; /* o left, right, justify */
	margin-right: 5px;
	/*padding-left: 10px;*/ /* reduce del lado izquierdo el 10 pixeles */

}

/* FECHA */
.comentario small{
    color:#64748b;
    font-size:11px;
}

/* SCROLL GAMER */
#lista-comentarios {
    max-height: 1000px;
    overflow-y: auto;
}

#lista-comentarios::-webkit-scrollbar{
    width:6px;
}

#lista-comentarios::-webkit-scrollbar-thumb{
    background:#f5e47b;
    border-radius:0px;
}

/* RESPUESTAS */
.respuestas {
	margin: 5px 0px 0px 0px;
    border-left: 0px solid #ccc;
	padding: 2px 0px 2px 0px;
}

.respuesta {
    display: flex;
	margin: 8px 0px 0px -25px;
}

.respuesta .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
	margin-right: 5px;
}


/* PALABRAS DE NUESTRO EDITOR */
/* CONTENEDOR DE PALABRAS DE NUESTRO EDITOR */
.customer_text{
    max-width: 100%;
    margin:auto;
    padding:10px;
    border-radius:12px;
    box-shadow:0 0 10px #f5e47b;
    font-family:Arial, Helvetica, sans-serif;
}

/* TEXTO */
.customer_text p{
    margin:5px 0;
    color:white;
}

/* CADA COMENTARIO SOBRE PALABRAS DE NUESTRO EDITOR */
.comentario_editor{
    display: flex; /* Para que avatar y contenido estén en fila */
    align-items: flex-start; /* Alinea la imagen con el inicio del contenido */
	background: rgba(18, 18, 18, 0.6);
    border:1px solid #f5e47b;
    border-left:1px solid #f5e47b;
    padding:0px 0px;
    margin-bottom:8px;
    border-radius:8px;
    color:#f5e47b;
    transition:all 0.3s ease;
	gap:10px;
}

.customer {
    background-color: #1C1C1D;
    padding-top: 80px;
}

.customer .customer_text {
    text-align: center;
}

.customer .customer_text p {
    font-size: 17px;
    line-height: 35px;
    /*color: #0c0c0b;*/
    text-align: center;
    font-weight: 500;
    /*background-color: #d7d7d4;*/
    padding: 40px 50px 100px 50px;
}

@media (max-width: 768px) {
    .customer .customer_text p {
        font-size: 14px;
        line-height: 22px;
        padding: 20px 15px 100px 15px;
    }
}

.customer .customer_text .customer_box {
    margin-top: -75px;
}

.customer .customer_text .customer_box i {
    border-radius: 133px;
    padding: 72px 10px 75px 10px;
    background-image: linear-gradient(to bottom, #bc883d, #f5e47b, #bc883d);
}

.customer .customer_text .customer_box h4 {
    font-size: 24px;
    padding: 25px 0px 10px 0px;
    font-weight: 500;
    background-image: linear-gradient(to bottom, #bc883d, #f5e47b, #bc883d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.customer .customer_text .customer_box span {
    color: #fff;
    font-size: 17px;
    line-height: 20px;
    text-transform: uppercase;
}


/* BOTON RESPONDER */
.btn-responder{
	margin-top: 0px;
    background: transparent;
    border: 1px solid #f5e47b;
    color: #f5e47b;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
	transition: all 0.25s ease;
	width: fit-content;
	height: fit-content;
}

.btn-responder:hover{
    background: #f5e47b;
    color: #000;
    box-shadow: 0 0 8px #f5e47b;
}

.btn-responder{
    transition: all 0.25s ease;
}

/* En movil quitamos el hover pegado */
@media (max-width: 768px) {
  .btn-responder:hover{
      background: transparent;
      color: #f5e47b;
      box-shadow: none;
  }

  /* animacion al tocar */
  .btn-responder:active{
      animation: clickEffect 2s ease;
  }
}

@keyframes clickEffect {
  0% {
    background: #f5e47b;
    color: #000;
    box-shadow: 0 0 8px #f5e47b;
  }
  100% {
    background: transparent;
    color: #f5e47b;
    box-shadow: none;
  }
}

/* CAJA DE RESPUESTA */
.caja-respuesta{
    margin-top: 8px;
    padding: 5px;
    border-radius: 8px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(245, 228, 123, 0.3);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

/* TEXTAREA */
.input-respuesta{
    width: 100%;
    min-height: 50px;
    background: #0f0f0f;
    border: 1px solid #f5e47b;
    border-radius: 6px;
    padding: 10px;
    color: white;
    font-size: 12px;
    resize: both;
    overflow: auto;
    outline: none;
    transition: 0.2s;
}

.input-respuesta:focus{
    border-color: #bc883d;
    box-shadow: 0 0 6px #bc883d;
}


/* BOTON ENVIAR RESPUESTA */
.btn-enviar-respuesta{
    margin-top: 0px;
    background: linear-gradient(45deg, #bc883d, #f5e47b);
    border: none;
    color: #000;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.25s ease;
}

.btn-enviar-respuesta:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px #f5e47b;
}


/* ANIMACION SUAVE */
@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(-5px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}