/*Seccion CSS HTML*/
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    /*background: linear-gradient(90deg, #007bff, #6610f2);*/
	background-image: url('../imagenes/tecnologia.jpg');
	background-repeat: no-repeat; /* Para que no se repita */
	background-size: cover; /* Para que cubra todo el div */
}

#logo{
	height:30px;
	width:30px;
}

.introduccion{
	font-size:300px;
}

/*Seccion Navbar*/

.transparent-navbar {
  background-color: rgba(0, 0, 0, 0.5) !important; /* Semi-transparent black */
}

.navbar-scroll {
  transition: background-color 0.5s ease-in-out;
}

.navbar-scroll.scrolled {
  --bs-bg-opacity: 1;
  /*background-color: rgba(4, 4, 92, 0.5) !important;*/ /*azul*/
  background-color: rgba(0, 0, 0, 0.5) !important; /*azul*/
  /*box-shadow: 0 0.5rem 1rem rgba(106, 255, 5, 1) !important;*/ /*verde brilloso*/
  /*background-color: rgba(245, 40, 145, 0.8) !important; --rosa
  box-shadow: 0 0.5rem 1rem rgba(245, 40, 145, 0.8) !important; ---Rosa*/
}

.card:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

.mi-div-con-fondo {
  /* Otras propiedades como height, width, etc. */
}


.list-group-item {
    border: none !important;
    padding: 12px 18px;
    font-size: 1.1rem;
}

.list-group-item:hover {
    background: #233041 !important;
}

.list-group-item.active {
    background: #3b6bff !important;
    border: none !important;
}

.card-tecnologia {
    background: #1b2735 !important;
}


.testimonial-img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid #3b6bff;
	margin-bottom: 15px;
}
.carousel-item {
	text-align: center;
	padding: 40px;
}
.testimonial-text {
	font-size: 1.1rem;
	opacity: 0.9;
}
