body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f5eb;    
    color: #333;
  }
  
  .servicios-tecnicos {
    background-color: #918165;
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
    font-family: "Marko One", sans-serif;
  }
  
  .contenedor {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .titulo {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
  
  .descripcion {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
  }
  
  .card {
    background: #f8f5eb;
    color: #333;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  }
  
  .card i {
    font-size: 2.3rem;
    color: #00796B;
    margin-bottom: 15px;
  }
  
  .card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: "Marko One", sans-serif;
  }
  
  .card p {
    font-size: 1rem;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
  }
  .soluciones {
    background: #f8f5eb;
    padding: 60px 20px;
    color: #333;
  }
  
  .soluciones h3 {
    font-size: 1.8rem;
    margin-top: 40px;
    color: #00796B;
    font-family: "Marko One", sans-serif;
  }
  
  .soluciones p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  
  .card {
    text-decoration: none;
  }
 /* barra de navegacion vertical----------------------------------------------------------------------------------*/
/* 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;
}
/* fin de la barra de navegacion vertical----------------------------------------------------------------------------------*/
    