/* ---------------------------
   CLÍNICA VIDAL · ESTILOS PRINCIPALES
---------------------------- */

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  scroll-behavior: smooth;
}

/* NAVBAR */
.custom-navbar {
  background-color: #004c7f;
}
.custom-navbar .navbar-brand {
  color: #fff !important;
  font-weight: 600;
}
.custom-navbar .nav-link {
  color: #fff !important;
  margin-right: 10px;
  transition: all 0.3s;
}
.custom-navbar .nav-link:hover {
  color: #ffc107 !important;
}
.nav-social-link {
  color: #fff;
  font-size: 1.2rem;
  margin-left: 10px;
  transition: 0.3s;
}
.nav-social-link:hover {
  color: #ffc107;
}

/* HERO */
#hero {
  position: relative;
  height: 90vh;
  background: linear-gradient(rgba(11, 124, 155, 0.65), rgba(0, 64, 128, 0.65)),
    url("./img/Bannerclinica2026.jpg?v=3") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-inner {
  z-index: 2;
  position: relative;
}
.hero-inner h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero-inner p {
  font-size: 1.2rem;
}

/* TITULOS */
.text-fuerte {
  color: #004c7f;
  font-weight: 700;
  font-size: 2.5rem;
}

/* SECCIONES */
section {
  scroll-margin-top: 90px;
}
section h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* TARJETAS */
.card {
  border-radius: 15px;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}

/* GALERÍA */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.05);
}

/* ACORDEÓN */
.accordion-button {
  background-color: #f1f9ff;
  color: #004c7f;
  font-weight: 500;
}
.accordion-button:not(.collapsed) {
  background-color: #004c7f;
  color: #fff;
}

/* CONTACTO */
.contact-card {
  border-left: 5px solid #004c7f;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 15px 25px;
  z-index: 2000;
  display: none;
  animation: slideUp 0.5s ease;
}
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
}

/* FOOTER */
footer {
  background-color: #002d4d;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
}
footer a {
  color: #ffc107;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner h1 {
    font-size: 2rem;
    
  }
  .hero-inner p {
    font-size: 1rem;
  }

}
