
/* ==========================
   HEADER
============================= */
.greenleaders-header {
  position: relative;
  width: 100%;
  height: 70px;
  background-color: #2E4639;
  border-bottom: 1px solid #D4A373;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  font-family: 'Poppins', sans-serif;
  z-index: 1000;
}
 
/* Contenedor del logo y texto */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center; /* Añadido para centrar horizontalmente */
  gap: 1rem;
  width: 100%; /* Asegura que el contenedor ocupe todo el ancho disponible */
  max-width: 300px; /* Opcional: limita el ancho máximo para mejor aspecto */
  margin: 0 auto; /* Centra el contenedor horizontalmente en su contenedor padre */
}
 
/* Imagen del logo */
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
/* Ícono de menú hamburguesa */
.menu-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}
 
/* Íconos del header */
.header-icons {
  position: absolute;
  top: 1rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
 
.language-selector {
  display: flex;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
 
.language-icon {
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  transition: background-color 0.3s ease;
}
 
.language-icon:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
 
.language-icon.active {
  background-color: rgba(255, 255, 255, 0.3);
  font-weight: bold;
}
 
.language-icon span {
  margin-left: 0.5rem;
  font-size: 0.9rem;
}
 
.login-icon {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease;
  display:inline-block;
  cursor:pointer;
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.15);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
 
}
 
.login-icon:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
 
.login-icon i {
  margin-right: 0.5rem;
}
 
.theme-icon {
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
 
.theme-icon:hover {
  transform: rotate(180deg);
}
/* ==========================
   BARRA DE NAVEGACION
============================= */
.greenleaders-nav {
  width: 100%;
  background-color:#2E4639;
  border-bottom: 1px solid #2E4639;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
 
.green-list {
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  font-family: 'Poppins', sans-serif;
}
 
.green-list li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  transition: color 0.3s ease;
}
 
.green-list li a:hover {
  color: #b99119;
}
/* ==========================
   GALERIA
============================= */
 
.header-gallery {
position: relative;
height: 500px;
overflow: hidden;
width: 100%;
}
       
.gallery-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
background-size: cover;
background-position: center;
transform: scale(1.1); /* Iniciar con un poco de zoom */
}
       
.gallery-slide.active {
opacity: 1;
transform: scale(1); /* Volver al tamaño normal cuando está activo */
z-index: 1; /* Asegurar que el slide activo esté por encima */
}
       
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)); /* Gradiente para mejor visibilidad del texto */
display: flex;
            flex-direction: column;
            justify-content:center;
            align-items: center;
            padding: 80px 40px;
            color: white;
            z-index: 2;
        }
       
        .overlay h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            font-family: "Poppins", sans-serif;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            transform: translateY(50px); /* Iniciar fuera de la vista */
            opacity: 0;
            transition: transform 1s ease-out 0.5s, opacity 1s ease-out 0.5s;
        }
       
        .overlay p {
            font-size: 1.8rem;
            max-width: 600px;
            color: white;
            font-family: "Poppins", sans-serif;
            margin-bottom: 30px; /* Corregido: eliminado el % y el top innecesario */
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            transform: translateY(50px); /* Iniciar fuera de la vista */
            opacity: 0;
            text-align: center;
            transition: transform 1s ease-out 0.7s, opacity 1s ease-out 0.7s;
        }
        .overlay.active h1,
        .overlay.active p {
            transform: translateY(0);
            opacity: 1;
        }
       
        .gallery-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 3;
        }
       
        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
       
        .gallery-dot:hover {
            transform: scale(1.2);
        }
       
        .gallery-dot.active {
            background-color: white;
            transform: scale(1.2);
        }
       
        .gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.3);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 3;
            transition: background-color 0.5s ease, transform 0.5s ease;
        }
       
        .gallery-arrow:hover {
            background-color: rgba(0, 0, 0, 0.6);
            transform: translateY(-50%) scale(1.1);
        }
       
        .gallery-arrow.prev {
            left: 20px;
        }
       
        .gallery-arrow.next {
            right: 20px;
        }
       
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }
       
        .main-content h2 {
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }
       
        .main-content p {
            margin-bottom: 20px;
            font-weight: 400;
        }
       
        @media (max-width: 768px) {
            .header-gallery {
                height: 350px;
            }
           
            .overlay {
                padding: 40px 20px;
            }
           
            .overlay h1 {
                font-size: 2.5rem;
            }
           
            .overlay p {
                font-size: 1.2rem;
            }
           
            .gallery-arrow {
                width: 40px;
                height: 40px;
            }
        }
 
/* ==========================
   MARQUEE
============================= */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    background-color:#7b6f58 ;
    border-color:#808000 ;
   
}
 
.marquee {
    display: inline-block;
    color: white;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    border-radius: 5px;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}
 
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
 
.marquee-content {
    display: inline-block;
    padding: 5px 0;
    font-family: "Poppins", sans-serif;
    font-size: 24px; /* Tamaño de fuente más grande */
    line-height: 1.5; /* Mejora la legibilidad */
    font-weight: bold;
}
 
.marquee-content i {
    margin-right: 10px;
      font-size: 1.5em; /* Tamaño del icono más grande */
}
 

body {
    font-family: 'Roboto', sans-serif;
    background-color: white;
    padding: 0;
    margin:0;
}
/*header*/

/* ==========================
   HEADER
============================= */


/* container */

    #feedback-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 10px;
}

#feedback-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}


.foro-intro {
    background-color: #f0f4f8;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.foro-texto p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #555;
  text-align: justify;
  margin-bottom: 30px;
}

.comenta-aqui {
  font-weight: bold;
  font-size: 1.1em;
  color: #0077cc;
  cursor: pointer;
}

/*tarjetas*/
    .foro-acciones {
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-between; /* o center o space-around según tu preferencia */
      justify-content: center;
      gap: 24px;
      padding: 40px 32px;
      background-color: #EAF2E5;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      animation: fadeIn 1s ease-in-out both;
    }

    .accion-card {
      flex: 1 1 30%;
      max-width: 320px;
      background-color: #ffffff;
      border: 1px solid #C6D8BE;
      border-radius: 16px;
      padding: 24px 20px;
      text-align: center;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      position: relative;
    }

    .accion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .accion-card i {
      font-size: 3rem;
      color: #2E4734;
      margin-bottom: 12px;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .accion-card:hover i {
      transform: scale(1.1);
      color: #3c5f42;
    }

    .accion-card h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      font-family: "Poppins", sans-serif;
    }

    .accion-card button {
      background-color: #A38800;
      color: #fff;
      border: none;
      padding: 10px 16px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 0.95em;
      font-weight: 500;
      margin-top: 16px;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .accion-card button:hover {
      background-color: #8c7300;
      transform: scale(1.05);
    }

    .descripcion {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
      font-size: 1rem;
      color: #333;
      font-family: "Roboto", sans-serif;
      line-height: 1.5;
      padding: 0;
      margin: 0;
    }

    .accion-card.mostrar-descripcion .descripcion {
      max-height: 200px;
      opacity: 1;
      padding: 10px 0;
      margin: 8px 0;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /*comentar*/

    .comment-section {
            max-width: 100%;
            margin: 0 auto;
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            box-sizing: border-box;
        }

        .comment-section h2 {
            margin-bottom: 20px;
            color: #2e4734;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comment-box {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        textarea#new-comment-input {
            resize: none;
            height: 100px;
            padding: 12px;
            font-size: 1rem;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-family: inherit;
            width: 100%;
            box-sizing: border-box;
        }

        .comment-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .upload-label {
            background-color: #2e4734;
            color: white;
            padding: 8px 14px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.3s ease;
        }

        .upload-label:hover {
            background-color: #44624a;
        }

        #add-comment-button {
            background-color: #a38800;
            color: white;
            padding: 8px 24px;
            border: none;
            border-radius: 6px;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        #add-comment-button:hover {
            background-color: #b89f15;
        }

        .image-preview {
            max-width: 200px;
            max-height: 200px;
            overflow: hidden;
            border-radius: 6px;
            border: 1px solid #ccc;
        }

        .image-preview img {
            width: 100%;
            height: auto;
            display: block;
        }

        .feedback-container {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feedback-card {
            background: #fefefe;
            border: 1px solid #d4d4d4;
            padding: 20px;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
            transition: transform 0.2s;
            box-sizing: border-box;
        }

        .feedback-card:hover {
            transform: translateY(-2px);
        }

        .feedback-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .feedback-header i {
            font-size: 1.5rem;
            color: #2e4734;
        }

        .feedback-header h3 {
            margin: 0;
            font-size: 1rem;
        }

        .comment-text {
            font-size: 0.95rem;
            color: #333;
            margin-bottom: 10px;
            white-space: pre-wrap;
        }

        .comment-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin-top: 10px;
        }

        .feedback-options-button {
            position: absolute;
            top: 10px;
            right: 10px;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            color: #666;
        }

        .feedback-options-button:hover {
            color: #2e4734;
        }

        .feedback-options {
            position: absolute;
            right: 10px;
            top: 35px;
            background: white;
            border: 1px solid #ccc;
            border-radius: 6px;
            display: none;
            z-index: 9999;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            min-width: 110px;
        }

        .feedback-options ul {
            list-style: none;
            margin: 0;
            padding: 5px 0;
        }

        .feedback-options li {
            padding: 8px 12px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.3s, color 0.3s;
            border-radius: 4px;
        }

        .feedback-options li:hover {
            background-color: #2e4734;
            color: white;
        }

        .edit-container {
            margin-top: 12px;
            background: #f9f9f9;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .edit-textarea {
            width: 100%;
            min-height: 100px;
            padding: 12px;
            font-size: 1rem;
            border-radius: 6px;
            border: 1px solid #bbb;
            font-family: inherit;
            resize: vertical;
        }

        .edit-actions {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }

        .edit-save-btn, .edit-cancel-btn {
            padding: 8px 20px;
            border: none;
            border-radius: 6px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .edit-save-btn {
            background-color: #2e4734;
            color: white;
        }

        .edit-save-btn:hover {
            background-color: #3b5d45;
        }

        .edit-cancel-btn {
            background-color: #a38800;
            color: white;
        }

        .edit-cancel-btn:hover {
            background-color: #b89f15;
        }
 

 /*inico del footer*/
 .footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%; /* altura del degradado */
  background: linear-gradient(to bottom, rgba(87, 75, 41, 0.6), transparent);
  z-index: 1;
}

.footer {
  background: url('imagen_del_footer.png');
  background-size: cover; /* Asegura que cubra todo el espacio */
  color: white;
  position: relative; /* ¡No uses fixed aquí si hay contenido arriba! */
  overflow: hidden;
  min-height: 50px; /* Puedes ajustar según tu imagen */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

 
.footer-top-curve {
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: start; /* alinea todo al inicio (izquierda) */
  flex-wrap: wrap;
  max-width: 800px;
  margin-left: 50px; /* ajusta a tu gusto */
  margin-right: auto;
  z-index: 2;
  position: relative;
  padding-top: 90px;
}

.footer-column {
  flex: 1 1 250px;
  margin: 10px;
}
.footer-column h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: rgb(255, 255, 255); /* color de los títulos */
  font-family: "Marko One", sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* sombra suave */
}

 
.footer-column ul {
  list-style: none;
  padding: 0;
}
 
.footer-column ul li {
  margin-bottom: 8px;
}
 
.footer-column ul li a {
  color: rgb(247, 247, 247);
  text-decoration: none;
  font-size: 0.75em; /*letras de los enlaces*/
  font-family: 'Poppins', sans-serif;

}
 
.footer-column ul li a:hover {
  text-decoration: underline;
}
 
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8em;
  color: #18301b;/*color de las letras de abajo*/
}
 
.footer-bottom a {
  display: block;
  margin-top: 10px;
  color: none;
  text-decoration: none;
}
.footer-legal {
  background-color: #18301b; /* tono oscuro compatible con el footer */
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  padding: 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* línea sutil */
}
/*fin del footer*/
  #scrollToTopBtn {
    display: none; /* Oculto por defecto */
    position: fixed;
    bottom: 235px;
    right: 15px;
    background-color: #3333338a; /* Gris oscuro */
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 10px; /* Un poco redondeado */
    cursor: pointer;
    z-index: 1000;
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
  }

  #scrollToTopBtn:hover {
    background-color: #555;
  }
/* Posicionar el botón de UserWay en esquina superior derecha */
/* Estilos base del chatbot----------------------------------------------------------------------------------------------- */

/* Botón flotante para abrir el chat */
#chat-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #c1c1c1;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Imagen dentro del botón flotante */
#chat-toggle img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

/* Contenedor del chatbot */
#chat-container {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 360px;
  height: 480px;
  background: white;
  border-radius: 20px;
  border: 2px solid #10b981;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1000; /* Para que el contenedor quede debajo del botón */
}

/* Cabecera del chat */
#chat-header {
  background-color: #10b981;
  color: white;
  padding: 10px;
  font-weight: bold;
  text-align: center;
}

/* Área de mensajes */
#chat-messages {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 10px;
  background-color: #f0fdf4;
}


/* Entrada de texto */
#chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}

#chat-input input {
  flex: 1;
  border: none;
  padding: 10px;
  outline: none;
}

#chat-input button {
  background-color: #10b981;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

/* Estilo de burbujas de mensaje */
.message {
  position: relative;
  padding-left: 50px;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 15px;
  max-width: 70%;
  word-wrap: break-word;
  /* Para que el texto quede bien alineado dentro de la burbuja */
  white-space: pre-wrap;
}

.bot {
  background-color: #bbf7d0;
  align-self: flex-start;
  text-align: left;
}

.user {
  background-color: #86efac;
  align-self: flex-end;
  text-align: right;
}

/* Que las imágenes dentro de los mensajes no sean gigantes */
.message img {
  position: absolute; /* La “saca” del flujo normal */
  top: -10px; /* Ajusta para que quede encima */
  left: -40px; /* O right, según dónde quieras que esté */
  width: 40px; /* Tamaño de la imagen */
  height: 40px;
  border-radius: 50%; /* Para que sea redonda */
  border: 2px solid white; /* Borde para destacar */
  background-color: white; /* Fondo para que se vea bien */
  z-index: 1100; /* Que esté arriba */
}

/* Contenedor de preguntas sugeridas */
#suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 10px;
  background-color: #f0fdf4;
  border-top: 1px solid #ccc;
}

/* Botones de preguntas sugeridas */
#suggestions button {
  background-color: #d1fae5;
  border: none;
  padding: 5px 10px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

#suggestions button:hover {
  background-color: #bbf7d0;
}

/* barra de navegacion vertical----------------------------------------------------------------------------------*/
.subtitulo {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
  /* Título del encabezado */
header h1 {
  margin-top: 10px;
  font-size: 3.0em;
  color: #808000; /* Puedes cambiar si tu fondo es muy claro */
  font-family: "Marko One", sans-serif;
  letter-spacing: 5px; /* Aumenta el espacio entre letras */
}
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra horizontalmente */
  padding: 15px;
  text-align: center; /* Asegura que el texto también quede centrado */
  font-family: "Poppins", sans-serif;
  
}

#profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  background-color: #ccc;
}
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 255px;
  height: 100%;
  background-color: #685e4a;
  color: white;
  transition: 0.3s;
  padding-top: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.3);
  z-index: 1000;
  overflow-y: auto;  /*es para que sea mas para abajo */
}


.sidebar.active {
  left: 0;
}
.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

/* Botón de cierre (tres puntos) */
.contenedor-close-boton {
  text-align: right;
  padding-right: 5px;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
  color: white;               /* Ícono en blanco */
  background-color: #685e4a;  /* Fondo marrón */
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  display: inline-block;
}


.profile-section {
  text-align: center;
  padding: 15px;
}

#profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

#profile-upload {
  display: none; /* Oculta input real */
}

.upload-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #555;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.upload-btn:hover {
  background-color: #666;
}

#user-account {
  margin-top: 10px;
  font-size: 14px;
}

.sidebar-menu {
  list-style: none;
  padding: 10px 20px;
}

.sidebar-menu li {
  margin: 15px 0;
}

.sidebar-menu a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 8px;
  border-radius: 4px;
  font-family:"Poppins", sans-serif; /*-------------------------------fuente de la barra lateral*/

}

.sidebar-menu a:hover {
  background-color: #444;
}
/*FRASE INICIAL*/

.intro-frase {
  background: white;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #808000;
;
}

.contenedor-frase blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: 2em;
  font-weight: 500;
  color: #424202;
  margin: 0 auto 20px;
  max-width: 600px;
  line-height: 1.4;
}

.autor {
  font-size: 1em;
  color: #808000;
  font-style: italic;
  font-family: "Roboto", sans-serif;
}


/* fin de la barra de navegacion vertical---------------------------------------
/*estilo de la seccion de intagram*/
/* Contenedor aislado */
.instagram-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0; /* opcional */
  padding: 40px 0;
}

/* Contenedor general */
.instagram-wrapper .instagram-container {
  width: 97%;
  background: #a7adad;
  padding: 40px 5%;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Caja de datos generales */
.instagram-wrapper .insta-header {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.instagram-wrapper .insta-info {
  background: linear-gradient(135deg, #2ecc71, #3498db);
  color: white;
  padding: 40px 5%;
  border-radius: 20px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.instagram-wrapper .insta-info:hover {
  transform: scale(1.02);
}

.instagram-wrapper .insta-info h2 {
  font-size: 1.6rem;
  margin: 0;
}

.instagram-wrapper .insta-info h2 a {
  text-decoration: none;
  color: #fff;
}

.instagram-wrapper .insta-info p {
  margin: 10px 0;
  font-size: 1rem;
}

.instagram-wrapper .insta-link {
  display: inline-block;
  background: white;
  color: #3498db;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  margin: 10px 0;
  transition: background 0.3s, color 0.3s;
}

.instagram-wrapper .insta-link:hover {
  background: #2ecc71;
  color: white;
}

.instagram-wrapper .insta-stats {
  margin-top: 10px;
  font-size: 0.95rem;
}

.instagram-wrapper .insta-stats span {
  margin: 0 10px;
}

/* Ajusta el tamaño del widget */
.instagram-wrapper .tagembed-widget {
  width: 80%;
  height: 80%;
  overflow: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
