body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fafb;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
}
.service-table {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #6b7280;
  display: flex;
  flex-direction: column;
  min-height: 500px;
}
.service-table:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.service-table.popular {
  background: #f9fafb;
  color: black;
  border: 2px solid #6366f1;
}
.service-table.popular .price {
  color: #1e40af;
}
.service-table.recommended {
  border: 2px solid #1e40af;
  background: #eff6ff;
}
.service-table.basic {
  border: 2px solid #6b7280;
  background: #f9fafb;
}
.service-table.premium {
  border: 2px solid #f59e0b;
  background: #fffbeb;
}
.price {
  font-size: 28px;
  font-weight: 700;
  color: #1d4ed8;
}
.price-range {
  font-size: 14px;
  color: #6b7280;
}
.pode-ser {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin: 8px 0 4px;
}
.feature-list {
  list-style: none;
  padding: 0;
  color: #4b5563;
  flex-grow: 1;
}
.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
}
.feature-list li:last-child {
  border-bottom: none;
}
.feature-icon {
  color: #3b82f6;
  margin-right: 8px;
  width: 16px;
  height: 16px;
}
.popular .feature-icon {
  color: #fbbf24;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: auto;
  align-self: center;
  margin-top: auto;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
.popular .btn-primary {
  background: #6366f1;
  color: white;
}
.popular .btn-primary:hover {
  background: #f8fafc;
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
  color: #1e293b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.popular-badge:hover {
  background: linear-gradient(135deg, #e0c565 0%, #f7d32e 100%);
}
.recommended-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: linear-gradient(135deg, #a3a3a3 0%, #d1d5db 100%);
  color: #1e293b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
}
.recommended-badge:hover {
  background: linear-gradient(135deg, #b3b3b3 0%, #e5e7eb 100%);
}
.discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ef4444;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.popular .btn-primary:hover,
.recommended .btn-primary:hover {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: white;
}
.chatbot-modal {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 350px;
  max-height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  overflow: hidden;
}
.chatbot-modal.active {
  display: block;
}
.chatbot-header {
  background: #2563eb;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.chatbot-close {
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}
.chatbot-body {
  padding: 1rem;
  max-height: 400px;
  overflow-y: auto;
  background: #f9fafb;
  color: #1e3a8a;
}
.chatbot-message {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.bot-message {
  background: #e5e7eb;
  color: #374151;
}
.user-message {
  background: #2563eb;
  color: white;
  text-align: right;
}
.chatbot-messages {
  max-height: 300px;
  overflow-y: auto;
  padding: 8px;
}
.category-btn,
.question-btn {
  transition: background-color 0.2s ease, color 0.2s ease;
}
.category-btn:hover,
.question-btn:hover {
  background-color: #bfdbfe;
  color: #1e293b;
}
.category-list,
.question-list {
  margin-top: 8px;
}
.hidden {
  display: none;
}
.chatbot-whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  align-items: flex-end;
}
.chatbot-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.chatbot-icon img:hover {
  transform: scale(1.1);
}
.whatsapp-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.whatsapp-icon a:hover {
  transform: scale(1.1);
}
.whatsapp-icon .tooltip {
  visibility: hidden;
  background: #374151;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: absolute;
  bottom: 80px;
  right: 0;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.whatsapp-icon a:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
.form-section {
  background: white;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}
.form-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 24px;
}
.form-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-section input,
.form-section select,
.form-section textarea {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
  border-color: #1e40af;
}
.form-section textarea {
  min-height: 120px;
  resize: vertical;
}
.form-section button {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-section button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.form-section button:disabled {
  background: #d1d5db;
  cursor: not-allowed;
}
.notification {
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .chatbot-modal {
    width: 90%;
    right: 5%;
    bottom: 80px;
  }
  .chatbot-icon img,
  .whatsapp-icon a {
    width: 50px;
    height: 50px;
  }
  .chatbot-messages {
    max-height: 260px;
  }
  .service-table {
    min-height: 400px;
  }
  .form-section {
    padding: 20px 16px;
  }
  .form-section h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 640px) {
  .chatbot-whatsapp-container {
    gap: 12px;
  }
  .whatsapp-icon .tooltip {
    font-size: 12px;
    padding: 6px 10px;
  }
  .chatbot-modal {
    width: 280px;
    height: 360px;
  }
  .price {
    font-size: 2rem;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1440px;
  }
}