
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--color-secundario);
  color: var(--color-texto);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ---------- ENCABEZADO ---------- */

header {
      background: linear-gradient(90deg, #f37ad5, #8881e7);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 40px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }


#logo img {
      border-radius: 70%;
      width: 200px;
      height: 100px;
      object-fit: cover;
    }

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #444;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #a67bc0;
}




/* WHATSAPP */
.btn-whatsapp {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
}
/* TÍTULOS */
h1, h2 {
  font-weight: 600;
  color: #a67bc0;
  text-align: center;
  margin-bottom: 40px;
}

/* TARJETAS PRINCIPALES */
.card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card img {
  height: 250px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  text-align: center;
}

.btn-outline-primary {
  border-color: #a67bc0;
  color: #a67bc0;
}

.btn-outline-primary:hover {
  background-color: #a67bc0;
  color: white;
}

/* NUEVA SECCIÓN SERVICIOS */
.servicios {
  background: #fff;
}

.servicio-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.servicio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(85%);
  transition: filter 0.4s ease;
}

.servicio-card:hover {
  transform: scale(1.03);
}

.servicio-card:hover img {
  filter: brightness(60%);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(166,123,192,0.9);
  color: white;
  padding: 15px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.servicio-card:hover .overlay {
  transform: translateY(0);
}

/* MODALES */
.modal-content {
  border-radius: 15px;
}

.plasma-images {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.plasma-images img {
  width: 30%;
  border-radius: 10px;
}

/* ANIMACIONES */
.fade-in, .animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.fade-in.visible, .animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
footer {
  background: #a67bc0;
  color: white;
  text-align: center;
  padding: 25px 0;
  margin-top: 60px;
}
footer .social-links a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  transition: opacity 0.3s;
}
footer .social-links a:hover {
  opacity: 0.7;
}
