:root {
  --primary: var(--color-primary);
  --primary-light: var(--color-primary-light);
  --primary-dark: var(--color-primary-dark);
  --background: #fafafa;
  --foreground: #1a1a1a;
  --muted: #f0f0f0;
  --muted-foreground: #666;
  --border: #e5e5e5;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(var(--color-primary-rgb), 0.3);
  --radius: 0.75rem;
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-short {
  background: #faf8f5;
  padding: 2.5rem 1rem 2rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-nav {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.breadcrumb-nav a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  margin: 0 0.5rem;
  color: var(--border);
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 500;
}

.hero-short-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.hero-short-title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.hero-short-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted-foreground);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* ===== STATUS PILL (HERO) ===== */
.status-pill-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.open {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot.closed {
  background: #ef4444;
}

.status-text {
  font-weight: 500;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 3rem 1rem 4rem;
}

.section-muted {
  background: rgba(240, 235, 229, 0.3);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.op-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.op-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.op-card:hover {
  border-color: rgba(var(--color-primary-rgb), 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.op-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background var(--transition-base);
}

.op-card:hover .op-card-icon {
  background: rgba(var(--color-primary-rgb), 0.15);
}

.op-card-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.op-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.op-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.op-card-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.op-card-toggle:hover {
  color: var(--primary-dark);
}

.op-card-toggle i {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.op-card-toggle.expanded i {
  transform: rotate(180deg);
}

.schedule-table {
  margin-top: 1rem;
  text-align: left;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row.today {
  color: var(--foreground);
  background: rgba(var(--color-primary-rgb), 0.04);
  border-radius: 6px;
  padding: 0.4rem 0.5rem;
  margin: 0 -0.5rem;
}

.schedule-day {
  min-width: 40px;
}

.schedule-hours {
  font-variant-numeric: tabular-nums;
}

.schedule-closed {
  color: #ef4444;
  font-weight: 500;
  font-size: 0.8rem;
}

.op-card-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.25rem;
  font-variant-numeric: tabular-nums;
}

/* -- Card: Address -- */
.op-card-address {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

/* -- Card: Action buttons -- */
.op-card-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.op-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: white;
  color: var(--foreground);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.op-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(var(--color-primary-rgb), 0.04);
}

.op-btn i {
  font-size: 1rem;
}

.op-btn-whatsapp {
  border-color: #25d366;
  color: #25d366;
}

.op-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.08);
  color: #25d366;
  border-color: #25d366;
}

.op-btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.op-btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== MAP SECTION ===== */
.map-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-static {
  position: relative;
  background: linear-gradient(135deg, #f0ebe5 0%, #e8e0d8 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-static-overlay {
  text-align: center;
  padding: 2rem;
}

.map-pin-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
  animation: float-pin 3s ease-in-out infinite;
}

@keyframes float-pin {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.map-static-address {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.map-load-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: 2px solid var(--primary);
  background: white;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.map-load-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.map-load-btn i {
  font-size: 1.1rem;
}

.map-iframe-container {
  width: 100%;
  min-height: 400px;
}

.map-iframe-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* -- Google Maps external button -- */
.btn-outline-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  color: var(--muted-foreground);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-outline-maps:hover {
  border-color: #4285f4;
  color: #4285f4;
  background: rgba(66, 133, 244, 0.04);
}

.btn-outline-maps i {
  font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.section-cta {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 4rem 1rem;
  text-align: center;
}

.cta-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cta-title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.cta-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  background: white;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition-base), color var(--transition-base),
    background-color var(--transition-base);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
  background: #f0f0f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  color: var(--primary-dark);
}

.btn-cta i {
  font-size: 1.1rem;
}

/* ===== FLOATING ACTIONS (WhatsApp + Instagram) ===== */
.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-base);
}

.floating-actions.hidden {
  transform: translateX(150%);
  opacity: 0;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-btn-whatsapp {
  background: #25d366;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.floating-btn-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #f77737 100%);
  animation: pulse-instagram 2.5s ease-in-out infinite;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

@keyframes pulse-whatsapp {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  }
}

@keyframes pulse-instagram {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(131, 58, 180, 0.6);
  }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  text-decoration: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== COPY TOAST ===== */
.copy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--foreground);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all var(--transition-base);
  z-index: 2000;
  pointer-events: none;
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== VLIBRAS ===== */
.vw-plugin-top-wrapper {
  z-index: 1060;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {
  .op-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-short {
    padding: 2rem 1rem 1.5rem;
  }

  .hero-short-title {
    font-size: 1.5rem;
  }

  .section {
    padding: 2.5rem 0.75rem 3rem;
  }

  .map-static {
    min-height: 260px;
  }

  .map-iframe-container,
  .map-iframe-container iframe {
    min-height: 320px;
    height: 320px;
  }

  .section-cta {
    padding: 3rem 1rem;
  }

  .floating-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    left: 0.75rem;
    bottom: 0.75rem;
  }
}

/* Small mobile */
@media (max-width: 479px) {
  .op-card {
    padding: 1.5rem 1rem;
  }

  .op-card-actions {
    flex-direction: column;
  }

  .op-btn {
    justify-content: center;
  }

  .map-static {
    min-height: 220px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
  }

  .floating-btn svg {
    width: 20px;
    height: 20px;
  }

  .cta-title {
    font-size: 1.35rem;
  }

  .btn-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 767px) {
  .vw-plugin-top-wrapper {
    bottom: 70px !important;
  }
}
