/* Services / Future Features */
.service-section {
  padding: 80px 0;
}

.service-section:nth-of-type(even) {
}

.service-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Alternar orden en pares */
.service-section:nth-of-type(even) .container {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--color-text);
}

.service-content p {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-image {
  flex: 1;
  height: 350px;
  background-color: #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-section:hover .service-image img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .service-section .container,
  .service-section:nth-of-type(even) .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .service-image {
    width: 100%;
    height: 250px;
  }
}

/* Botones Futuros (Desactivados visualmente pero interactivos para el popup) */
.btn-future {
  position: relative;
  cursor: not-allowed;
  opacity: 0.8;
  background: #f0f0f0;
  color: #888;
  border-color: #ddd;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.4rem;
  border: 2px solid #ddd;
}

.btn-future:hover {
  background: #e8e8e8;
  color: #888;
  transform: none;
}

/* Popup "Próximamente" */
.future-popup {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #101010;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1.3rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.future-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #101010 transparent transparent transparent;
}

.future-popup.show {
  opacity: 1;
  visibility: visible;
  bottom: 140%;
}

/* Botón Cómo Llegar */
.btn-directions {
  display: block;
  background: #101010; /* Cambio a negro para más elegancia, o mantener azul si prefieres */
  color: #fff;
  border: none;
  margin: 24px auto 0; /* Centrado y con margen superior */
  width: 100%;
  max-width: 280px; /* No ocupar todo el ancho en desktop */
  text-align: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-directions:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  color: #fff;
}
