/* ESTILOS PARA LA CALCULADORA DE PRESUPUESTO */
.budget-calculator {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-toggle {
  position: relative;
}

.hidden-checkbox {
  position: absolute;
  opacity: 0;
}

.service-label {
  display: block;
  padding: 10px 12px;
  background-color: #f1f1f1;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.hidden-checkbox:checked + .service-label {
  background-color: #ec4899;
  color: white;
}

.budget-result {
  position: relative;
  z-index: 1;
}

/* ESTILOS PARA EL TIMELINE */
.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  overflow-y: hidden;
  overflow-x: hidden;
  width: 100%;
}

.timeline-line {
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #ec4899;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.timeline-item.right {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 24px;
  width: 16px;
  height: 16px;
  background-color: #ec4899;
  border-radius: 50%;
  z-index: 1;
  right: -8px;
}

.timeline-item.right .timeline-dot {
  left: -8px;
}

.timeline-content {
  position: relative;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ESTILOS PARA EL CHAT DE WHATSAPP */
.whatsapp-chat {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 100000;
}

.chat-header {
  background-color: #075e54;
  color: white;
  padding: 16px;
  position: relative;
}

.chat-header h3 {
  margin: 0;
  font-size: 1rem;
}

.chat-header span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.chat-header .chat-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}

.chat-body {
  padding: 16px;
  background-color: #ece5dd;
  background-image: url('wasa.webp');
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0.9rem;
  color: #333;
  min-height: 120px;
}

.chat-message {
  background-color: #dcf8c6;
  border-radius: 7px 7px 0 7px;
  padding: 10px 14px;
  margin-bottom: 16px;
  max-width: 80%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  word-wrap: break-word;
} 