﻿:root {
  --bg: #0b0a09;
  --bg-alt: #151310;
  --card: #191613;
  --accent: #f0b44c;
  --accent-soft: rgba(240, 180, 76, 0.18);
  --text: #f6f1ea;
  --muted: #b9b1a7;
  --glow: rgba(240, 180, 76, 0.4);
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  background: radial-gradient(circle at top, rgba(240, 180, 76, 0.16), transparent 45%), var(--bg);
  color: var(--text);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 6vw;
  background: rgba(240, 180, 76, 0.12);
  border-bottom: 1px solid rgba(240, 180, 76, 0.25);
  font-size: 0.9rem;
}

.topbar p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.topbar a {
  text-decoration: none;
  color: #1a1208;
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topbar a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(240, 180, 76, 0.35);
}

.flag-cta {
  width: calc(100% - 12vw);
  margin: 12px 6vw 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(240, 180, 76, 0.12), rgba(15, 12, 10, 0.95));
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.bubble-cta {
  animation: bubble-pulse 2.8s ease-in-out infinite;
}

.flag-cta::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 30%, rgba(240, 180, 76, 0.22), transparent 60%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.flag-cta:hover {
  border-color: rgba(240, 180, 76, 0.5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.flag-cta:hover::after {
  opacity: 1;
}

.flag-icon {
  width: 38px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 0 0 auto;
  background: #000;
}

.flag-text {
  font-weight: 600;
  letter-spacing: 0.3px;
}

.flag-quote {
  display: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.flag-cta.is-open .flag-text {
  display: none;
}

.flag-cta.is-open .flag-quote {
  display: inline;
}

@keyframes bubble-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  }
  50% {
    transform: scale(1.01);
    box-shadow: 0 14px 30px rgba(240, 180, 76, 0.25);
  }
}

.site-header {
  padding: 32px 6vw 16px;
  background: linear-gradient(180deg, #14110e 0%, #0b0a09 100%);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: "Space Grotesk", sans-serif;
}

.logo {
  font-size: 1.3rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.nav-cta {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  margin-top: 48px;
}

.hero-text h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 12px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0;
}

.subtext {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.primary-btn,
.ghost-btn {
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary-btn {
  background: var(--accent);
  color: #1a1208;
  box-shadow: 0 10px 22px rgba(240, 180, 76, 0.3);
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 28px rgba(240, 180, 76, 0.4);
}

.ghost-btn {
  border: 1px solid var(--accent);
  color: var(--text);
  background: transparent;
}

.ghost-btn:hover {
  background: var(--accent-soft);
  transform: translateY(-3px);
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 180, 76, 0.2);
}

.hero-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.85rem;
}

.hero-card h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.hero-note {
  margin: 0;
  color: var(--muted);
}

.product-section {
  padding: 40px 6vw 72px;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.section-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0;
}

.section-title p {
  color: var(--muted);
  margin: 0;
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.filters input,
.filters select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #11100f;
  color: var(--text);
  font-family: inherit;
}

.filters button {
  align-self: stretch;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.chip {
  background: rgba(240, 180, 76, 0.12);
  border: 1px solid rgba(240, 180, 76, 0.25);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.chip.active,
.chip:hover {
  background: var(--accent);
  color: #1a1208;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(240, 180, 76, 0.35);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.product {
  background: var(--card);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.03);
  filter: drop-shadow(0 6px 12px rgba(240, 180, 76, 0.12));
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
  position: relative;
  overflow: hidden;
}

.product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(240, 180, 76, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
  border-color: rgba(240, 180, 76, 0.5);
}

.product:hover::after {
  opacity: 1;
}

.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.product:hover img {
  transform: scale(1.08);
}

.product h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.price {
  color: var(--accent);
  font-weight: 700;
  margin: 0;
}

.offer {
  color: var(--muted);
  font-size: 0.72rem;
  margin: 0;
}

.product button {
  margin-top: 2px;
  padding: 6px 10px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;
  background: rgba(240, 180, 76, 0.16);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.product button:hover {
  background: var(--accent);
  color: #1a1208;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(240, 180, 76, 0.45);
}

.product.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.96) rotateX(-6deg);
  filter: drop-shadow(0 0 0 rgba(240, 180, 76, 0));
}

.product.reveal.reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
  filter: drop-shadow(0 10px 18px rgba(240, 180, 76, 0.25));
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.section-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.load-more {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.load-more .ghost-btn {
  padding: 10px 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.load-more .ghost-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 26px rgba(240, 180, 76, 0.4);
}

.load-more .ghost-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.load-more .ghost-btn.is-expanded {
  animation: pulse-down 1.6s ease-in-out infinite;
}

@keyframes pulse-down {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 20px rgba(240, 180, 76, 0.3);
  }
  50% {
    transform: translateY(2px) scale(1.02);
    box-shadow: 0 16px 28px rgba(240, 180, 76, 0.5);
  }
}

.story-section,
.visit-section {
  padding: 0 6vw 72px;
}

.story-card,
.visit-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.visit-card {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.visit-card .hero-actions {
  justify-content: flex-end;
}

.cta-strip {
  padding: 0 6vw 72px;
}

.cta-strip-card {
  background: linear-gradient(120deg, rgba(240, 180, 76, 0.12), rgba(25, 22, 19, 0.9));
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 180, 76, 0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-grid {
  padding: 0 6vw 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.cta-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.countdown-section {
  padding: 0 6vw 72px;
}

.countdown-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 180, 76, 0.2);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.countdown-timer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 14px;
}

.time-block {
  background: rgba(240, 180, 76, 0.12);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(240, 180, 76, 0.2);
}

.time-block span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.time-block small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.7rem;
}

.reviews-section {
  padding: 0 6vw 72px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.review-text {
  margin: 0 0 12px;
  color: var(--text);
}

.review-author {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.social-proof {
  padding: 0 6vw 72px;
}

.proof-card {
  background: linear-gradient(120deg, rgba(240, 180, 76, 0.12), rgba(20, 17, 14, 0.95));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 180, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.proof-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.proof-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(240, 180, 76, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(240, 180, 76, 0.1);
  font-size: 1rem;
}

.proof-icon i {
  font-size: 1rem;
}

.timeline-section {
  padding: 0 6vw 72px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
}

.timeline-year {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 1px;
}

.timeline-item h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", sans-serif;
}

.site-footer {
  padding: 32px 6vw 48px;
  background: #090807;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.site-footer h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.site-footer p {
  color: var(--muted);
  margin: 0;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 12px 18px;
  background: #25d366;
  color: #0a1a10;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1000;
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.55);
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.modal.is-open {
  display: flex;
  animation: modal-fade 0.25s ease;
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.7);
}

.modal-content {
  position: relative;
  z-index: 1;
  background: #12100e;
  border-radius: var(--radius);
  padding: 24px;
  width: min(980px, 92vw);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  border: 1px solid rgba(240, 180, 76, 0.2);
  box-shadow: var(--shadow);
}

.modal-gallery img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  object-position: center;
}

.modal-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.modal-thumbs .thumb {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.modal-thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-details h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.specs-list {
  margin: 16px 0;
  padding-left: 18px;
  color: var(--muted);
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-gallery img {
    max-height: 240px;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .visit-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .filters {
    grid-template-columns: 1fr;
  }

  .filter-chips {
    justify-content: flex-start;
  }

  .section-cta,
  .hero-actions {
    width: 100%;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
    text-align: center;
  }

  .proof-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product {
    padding: 10px;
    gap: 5px;
  }

  .product h3 {
    font-size: 0.85rem;
  }

  .offer {
    font-size: 0.7rem;
  }

  .product button {
    padding: 6px 9px;
    font-size: 0.78rem;
  }
}

@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 18px;
  }

  .modal-gallery img {
    max-height: 220px;
  }

  .load-more .ghost-btn {
    width: 100%;
  }
}
