/* ==== General ==== */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #fdfdfd;
  color: #333;
}

/* ==== Navbar ==== */
.navbar {
  background: #fff !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.navbar .nav-link {
  font-weight: 500;
  margin: 0 8px;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #28a745 !important;
}
/* ==== Profesionales ==== */
.card-profesional {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-profesional h5 {
  font-weight: 700;
  color: #28a745;
  margin-bottom: 8px;
}
.card-profesional p {
  margin: 0;
  font-weight: 400;
  color: #555;
}
.card-profesional:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* ==== Hero / Carousel ==== */
.carousel-item h1 {
  font-weight: 700;
  color: #28a745;
}
.carousel-item h3 {
  font-weight: 400;
  margin-bottom: 15px;
}
.carousel-item p {
  line-height: 1.6;
}
.carousel img {
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}
.carousel img:hover {
  transform: scale(1.05);
}

/* ==== Footer ==== */
footer {
  background: #222;
  color: #bbb;
  padding-top: 40px;
}
footer h2 {
  color: #28a745;
  font-weight: 700;
}
footer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: #28a745;
}

/* ==== Footer Icons ==== */
.footer-icons .list-inline-item {
  margin: 0 6px;
}
.footer-icons i {
  font-size: 20px;
  padding: 10px;
  border-radius: 50%;
  background: #333;
  transition: all 0.3s ease;
}
.footer-icons i:hover {
  background: #28a745;
  color: #fff;
}

/* ==== Copyright ==== */
.bg-black {
  background: #111 !important;
}
