/* =============================================
   LANDING PAGE - VUEXY / MODERN STYLE
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- Base --- */
body.landing-page {
  font-family: 'Inter', sans-serif;
  background: #f8f7fa;
  color: #5e5873;
  margin: 0;
}

/* =============================================
   HERO HEADER
   ============================================= */
.landing-hero {
  background: linear-gradient(135deg, #7367f0 0%, #9e95f5 60%, #00cfe8 100%);
  padding: 3.5rem 0 4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -100px;
  left: -100px;
}

.landing-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -80px;
  right: -60px;
}

.landing-hero-inner { position: relative; z-index: 1; }

.landing-hero-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  margin: 0 auto 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.landing-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
}

.landing-hero .lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto;
}

.landing-hero-badges {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.landing-hero-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.landing-body {
  padding: 2.5rem 0 4rem;
}

/* =============================================
   CARDS
   ============================================= */
.landing-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 24px rgba(34,41,47,.08);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid #ebe9f1;
}

.landing-card:hover {
  box-shadow: 0 8px 40px rgba(34,41,47,.14);
  transform: translateY(-3px);
}

.landing-card-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid #ebe9f1;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fafafc;
}

.landing-card-header-icon {
  font-size: 1.15rem;
}

.landing-card-header h5 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #5e5873;
}

.landing-card-body { padding: 1.5rem; }

/* =============================================
   CONTACT INFO
   ============================================= */
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f0eefd;
}
.contact-item:last-child { border-bottom: none; }

.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-icon-box.whatsapp { background: #d4f4e2; color: #28c76f; }
.contact-icon-box.instagram { background: #fde8e8; color: #ea5455; }

.contact-label { font-size: 0.72rem; color: #b9b9c3; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }
.contact-value { font-size: 0.875rem; font-weight: 600; }
.contact-value a { color: #7367f0; text-decoration: none; }
.contact-value a:hover { color: #5e50ee; }

/* =============================================
   PROMO BANNER
   ============================================= */
.promo-banner {
  background: linear-gradient(135deg, #ff9f43 0%, #ffbd5c 100%);
  border-radius: 0.6rem;
  padding: 1.1rem 1.25rem;
  text-align: center;
  color: #fff;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  animation: promo-pulse 3s ease-in-out infinite;
}

@keyframes promo-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,159,67,0.3); }
  50%       { box-shadow: 0 6px 30px rgba(255,159,67,0.5); }
}

.promo-banner::before {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.promo-banner-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.promo-banner-text {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* =============================================
   JAM OPERASIONAL
   ============================================= */
.jam-ops-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid #f0eefd;
  font-size: 0.875rem;
}
.jam-ops-row:last-child { border-bottom: none; }
.jam-ops-day { color: #b9b9c3; font-weight: 500; }
.jam-ops-time { font-weight: 700; color: #5e5873; }
.jam-ops-badge {
  background: #d4f4e2;
  color: #28c76f;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
}
.jam-ops-badge.closed { background: #fde8e8; color: #ea5455; }

/* =============================================
   PRICE TABLE
   ============================================= */
.landing-price-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b9b9c3;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #ebe9f1;
}

.landing-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.landing-price-table thead th {
  padding: 0.6rem 0.75rem;
  background: #f8f7fa;
  color: #5e5873;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid #ebe9f1;
}

.landing-price-table tbody td {
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid #ebe9f1;
  color: #6e6b7b;
  vertical-align: middle;
}

.landing-price-table tbody tr:last-child td { border-bottom: none; }
.landing-price-table tbody tr:hover { background: rgba(115,103,240,0.03); }

.price-cell {
  font-weight: 700;
  color: #7367f0;
  text-align: right;
}

/* =============================================
   MAPS SECTION
   ============================================= */
.landing-maps-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 20;
  background: #fff;
  border: 1px solid #ebe9f1;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #5e5873;
  box-shadow: 0 2px 10px rgba(34,41,47,.15);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.landing-maps-badge i { color: #ea5455; }

.landing-address-bar {
  padding: 0.85rem 1.25rem;
  background: #fafafc;
  border-top: 1px solid #ebe9f1;
  font-size: 0.825rem;
  color: #6e6b7b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.landing-address-bar i { color: #ea5455; }

/* =============================================
   CHATBOT
   ============================================= */
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #7367f0, #9e95f5);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(115,103,240,0.45);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}
.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(115,103,240,0.55);
}

.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 8px 40px rgba(34,41,47,.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  border: 1px solid #ebe9f1;
  transition: all 0.3s ease;
}

.chatbot-header {
  background: linear-gradient(135deg, #7367f0, #9e95f5);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header-info h6 {
  margin: 0 0 0.15rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.chatbot-header-info small {
  opacity: 0.8;
  font-size: 0.73rem;
}

.chatbot-body {
  height: 340px;
  overflow-y: auto;
  padding: 1rem;
  background: #f8f7fa;
}

.chatbot-body::-webkit-scrollbar { width: 4px; }
.chatbot-body::-webkit-scrollbar-thumb { background: #d6d6e0; border-radius: 10px; }

.chat-message { margin-bottom: 0.9rem; max-width: 85%; word-wrap: break-word; }
.chat-message.bot { float: left; clear: both; }
.chat-message.user { float: right; clear: both; }

.chat-message.bot .bubble {
  background: #fff;
  color: #5e5873;
  border-radius: 0.75rem 0.75rem 0.75rem 0;
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  box-shadow: 0 2px 6px rgba(34,41,47,.06);
  border: 1px solid #ebe9f1;
  line-height: 1.5;
}

.chat-message.user .bubble {
  background: linear-gradient(135deg, #7367f0, #9e95f5);
  color: #fff;
  border-radius: 0.75rem 0.75rem 0 0.75rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(115,103,240,0.35);
  line-height: 1.5;
}

.chatbot-footer {
  padding: 0.85rem 1rem;
  background: #fff;
  border-top: 1px solid #ebe9f1;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.chatbot-input {
  flex: 1;
  border: 1px solid #ebe9f1;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  outline: none;
  color: #5e5873;
  background: #f8f7fa;
  transition: all 0.25s ease;
}
.chatbot-input:focus {
  border-color: #7367f0;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(115,103,240,0.1);
}
.chatbot-input::placeholder { color: #b9b9c3; }

.chatbot-send {
  width: 36px;
  height: 36px;
  background: #7367f0;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.chatbot-send:hover { background: #5e50ee; }

/* Typing Indicator */
.typing-indicator {
  display: none;
  padding: 0.65rem 0.9rem;
  background: #fff;
  border-radius: 0.75rem 0.75rem 0.75rem 0;
  width: fit-content;
  margin-bottom: 0.9rem;
  float: left;
  clear: both;
  border: 1px solid #ebe9f1;
  box-shadow: 0 2px 6px rgba(34,41,47,.06);
}
.typing-indicator span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #7367f0;
  border-radius: 50%;
  margin: 0 2px;
  animation: typing-bounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40%           { transform: scale(1); }
}

/* =============================================
   FOOTER
   ============================================= */
.landing-footer {
  background: #2a2d3e;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.825rem;
}

.landing-footer a {
  color: #9e95f5;
  text-decoration: none;
}

.landing-footer a:hover { color: #fff; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 767.98px) {
  .landing-hero { padding: 2.5rem 1rem 2rem; }
  .landing-hero h1 { font-size: 1.65rem; }
  .landing-hero .lead { font-size: 0.95rem; }
  .landing-hero-badges { gap: 0.4rem; justify-content: center; }
  .landing-hero-badge { font-size: 0.72rem; padding: 0.3rem 0.65rem; }
  .chatbot-container { width: calc(100vw - 32px); right: 16px; bottom: 80px; max-height: 480px; }
  .chatbot-toggle { right: 16px; bottom: 16px; }
}

@media (max-width: 575.98px) {
  .landing-body { padding: 1.25rem 0.75rem 3rem; }
  .landing-card { padding: 1.1rem; }
  .landing-price-table thead th, .landing-price-table tbody td { padding: 0.5rem 0.6rem; font-size: 0.8rem; }
  .chatbot-container { width: calc(100vw - 20px); right: 10px; bottom: 75px; height: 420px; }
  .chatbot-toggle { right: 12px; bottom: 12px; width: 50px; height: 50px; font-size: 1.25rem; }
  .modal-dialog { margin: 0.5rem; }
}
