/* CSS Document */

/* Botones flotantes */
.floating-cta {
  position: fixed;
  right: 16px;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 10px;
  bottom: 16px;
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.floating-cta .cta-whatsapp { background: #25D366; color: #fff; }
.floating-cta .cta-phone { background: #0d6efd; color: #fff; }

/* En pantallas pequeñas, hacerlo más compacto */

@media (max-width: 420px) {
  .floating-cta a .cta-text { display: none; }
  .floating-cta a { padding: 12px; }
}


.hero { min-height: 420px; }
.hero-img{
  height: clamp(360px, 52vh, 520px);
  object-fit: cover;
  display:block;
}

.hero-overlay{
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.20) 60%, rgba(0,0,0,0));
}

.hero-card{
  max-width: 720px;
}

.hero-kicker{
  font-weight: 600;
  letter-spacing: .2px;
  opacity: .95;
}

.hero-title{
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(28px, 4.4vw, 44px);
}

.hero-subtitle{
  font-size: clamp(16px, 2.2vw, 18px);
  opacity: .95;
}

.hero-bullets{
  margin: 0;
  padding-left: 1.1rem;
  opacity: .95;
}

.bg-teal{ background:#0f8f8a !important; }

.modal { z-index: 1055; }
.modal-backdrop { z-index: 1050; }

.hero-pill {
  background: rgba(255, 255, 255, 0.88);
  color: #1f2933;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  line-height: 1.2;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

/* Píldora de ubicación (ligeramente distinta) */
.hero-pill-location {
  background: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-pill {
    font-size: 0.85rem;
  }
}


/* Tarjetas de servicios */
.service-card .card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 1rem;
  overflow: hidden;
}

.service-card:hover .card {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title {
  color: #0f172a;
  font-weight: 600;
}

.card-text {
  color: #475569;
  font-size: 0.95rem;
}

/* ===== Treatment Cards ===== */
.treatment-card {
  transition: transform .15s ease, box-shadow .15s ease;
}
.treatment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.12) !important;
}

.treatment-img{
  height: 220px;
  object-fit: cover;
  display: block;
}

.treatment-overlay{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 42%;
  background: rgba(0,0,0,.55);
  padding: 1rem;
  display: flex;
  align-items: center;
}

.treatment-quote{
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  font-size: 1rem;
}

/* Móvil: overlay abajo para que no tape la imagen */
@media (max-width: 575.98px){
  .treatment-img{ height: 210px; }
  .treatment-overlay{
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    background: rgba(0,0,0,.60);
    padding: .75rem 1rem;
  }
  .treatment-quote{ font-size: .95rem; }
}

.location-card,
.map-card {
  transition: transform .18s ease, box-shadow .18s ease;
}

.location-card:hover,
.map-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.12) !important;
}

.location-icon {
  width: 44px;
  height: 44px;
  background: rgba(13,110,253,.12); /* azul bootstrap suave */
  color: #0d6efd;
  font-size: 1.1rem;
}


.site-footer {
  background: #f8f9fa;
  border-top: 1px solid #e5e5e5;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .75rem;
}

.footer-text {
  color: #6c757d;
  font-size: .95rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .4rem;
  font-size: .95rem;
}

.footer-list i {
  color: #0d6efd;
  width: 18px;
}

.footer-list a {
  text-decoration: none;
  color: inherit;
}

.footer-list a:hover {
  text-decoration: underline;
}

/* Botón Facebook */
.btn-facebook {
  background: #1877f2;
  color: #fff;
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-weight: 500;
}

.btn-facebook:hover {
  background: #145dbf;
  color: #fff;
}

/* Línea inferior */
.footer-bottom {
  background: #eef1f4;
  color: #6c757d;
}

