/* ========= GENERAL ========= */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #ffffff; /* Fondo blanco limpio */
  color: #333;
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: #222;
}

/* ========= NAVBAR ========= */
.navbar {
  transition: all 0.3s ease-in-out;
}
.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.navbar-dark .nav-link {
  color: #f8f9fa;
  transition: 0.3s;
}
.navbar-dark .nav-link:hover {
  color: #ffc107; /* Amarillo dorado al pasar el mouse */
}
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



/* ========= SECTIONS ========= */
section {
  padding-top: 60px;
  padding-bottom: 60px;
}

#about img {
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

#about h2 {
  color: #444;
}

#services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
#services .col-md-3 {
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 20px;
}
#services .col-md-3:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
#services img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid #ddd;
}
#services h4 {
  margin-top: 15px;
  font-weight: 600;
  color: #222;
}

/* ========= FORMULARIO CONTACTO ========= */
#contact form {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}
#contact label {
  font-weight: 500;
}
#contact .btn {
  background: #222;
  color: #fff;
  border-radius: 25px;
  transition: background 0.3s;
}
#contact .btn:hover {
  background: #ffc107;
  color: #222;
  font-weight: bold;
}

/* ========= FOOTER ========= */
footer {
  background: #111;
  color: #bbb;
  font-size: 0.9rem;
}
footer p {
  margin: 0;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 768px) {
  #about .row {
    text-align: center;
  }
  #about img {
    margin-bottom: 20px;
  }
}
