/* =========================
   STOP BEBIDAS - STYLE.CSS
   Refatorado com amor e ódio 🧙‍♂️
========================= */

/* =========================
   BRAND
========================= */
:root {
  --brand-red: #e11d2e;
  --footer-bg: #090909;
  --footer-bg-2: #171717;
  --whatsapp-green: #20c653;
}

/* =========================
   RESET BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #000;
}

body {
  font-family: Arial, sans-serif;
  color: #111;
  background: #fff;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

/* =========================
   HEADER / TOPO
========================= */
.topbar {
  height: 145px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  overflow: visible;
}

/* =========================
   LOGO
========================= */
.logo-area {
  width: 475px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 180px;
}

.logo-area img {
  width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

/* =========================
   HERO SECTION
========================= */
.hero {
  min-height: 609px;
  display: grid;
  grid-template-columns: 36% 64%;
  align-items: center;
  padding: 20px 60px 60px;
  gap: 10px;
}

.hero-text {
  margin-top: 100px;
}

/* =========================
   TEXTO ESQUERDA
========================= */
.hero-text h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-text h1 span {
  color: var(--brand-red);
}

.hero-text p {
  font-size: 20px;
  line-height: 1.6;
  color: #444;
  max-width: 460px;
  margin-bottom: 32px;
}

/* =========================
   BOTÃO PRINCIPAL
========================= */
.btn-red {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  padding: 18px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-red:hover {
  transform: translateY(-2px);
}

.btn-right {
  display: block;
  width: fit-content;
  margin-left: 330px;
  margin-top: 10px;
}

/* =========================
   MODAL COMPRE ONLINE
========================= */
#comingSoonModal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.modal-card {
  background: #ffffff;
  width: 500px;
  max-width: 90%;
  padding: 32px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.modal-card h2 {
  color: var(--brand-red);
  margin-bottom: 14px;
}

.modal-card p {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.coming-highlight {
  display: block;
  color: var(--brand-red);
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
}

.modal-card button {
  background: var(--brand-red);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

/* =========================
   GALERIA / CARROSSEL
========================= */
.gallery-box {
  overflow: hidden;
}

.gallery-title {
  margin-bottom: 28px;
  font-size: 22px;
}

.gallery-title span {
  display: block;
  color: #666;
  margin-top: 6px;
}

.simple-carousel {
  overflow: hidden;
  width: 100%;
}

.simple-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollCarousel 55s linear infinite;
}

.simple-carousel-track img {
  width: 240px;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

@keyframes scrollCarousel {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   FOOTER
========================= */
footer {
  position: relative;
  background: linear-gradient(135deg, var(--footer-bg), var(--footer-bg-2));
  color: #fff;
  padding: 26px 80px 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  justify-items: center;
  text-align: center;
}

footer h3 {
  color: var(--brand-red);
  margin-bottom: 18px;
  font-weight: 700;
}

footer p {
  line-height: 1.5;
  color: #e5e5e5;
}

.footer-copy {
  grid-column: 1 / -1;
  width: calc(100% - 180px);
  margin: 4px auto 0;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.footer-copy a {
  color: #b86cff;
  text-decoration: none;
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
  transition: 0.3s ease;
}

.footer-copy a:hover {
  color: #f0c8ff;
}

/* =========================
   WHATSAPP - BOTÃO
========================= */
.whatsapp-widget {
  position: fixed;
  right: 28px;
  bottom: 22px;
  z-index: 9999;
}

.whatsapp-float {
  position: relative;
  width: 72px;
  height: 72px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  padding: 0;
}

.whatsapp-float img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.whatsapp-notify {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background: #00e676;
  border-radius: 50%;
}

/* =========================
   WHATSAPP - CHAT
========================= */
.whatsapp-chat {
  display: none;
  position: fixed;
  right: 75px;
  bottom: 100px;
  width: 360px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  z-index: 9998;
}

.whatsapp-chat.open {
  display: block;
}

.whatsapp-header {
  background: #07896f;
  color: #fff;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.whatsapp-avatar {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.whatsapp-avatar span {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 11px;
  height: 11px;
  background: #00e676;
  border: 2px solid #07896f;
  border-radius: 50%;
}

.whatsapp-header p {
  font-size: 13px;
  margin-top: 4px;
}

.whatsapp-header button {
  margin-left: auto;
  background: transparent;
  border: none;
  color: #d9fff5;
  font-size: 26px;
  cursor: pointer;
}

.whatsapp-body {
  min-height: 150px;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    #f4eee6;
  background-size: 18px 18px;
}

.whatsapp-message {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.whatsapp-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: #fff;
}

.whatsapp-footer input {
  flex: 1;
  border: none;
  outline: none;
  background: #f4f4f4;
  padding: 13px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.whatsapp-footer button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--whatsapp-green);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .topbar {
    height: auto;
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px 12px;
  }

  .logo-area {
    width: auto;
    height: auto;
    justify-content: center;
    padding-top: 0;
  }

  .logo-area img {
    width: 300px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 32px 22px 48px;
    text-align: center;
  }

  .hero-text {
    margin-top: 0;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 17px;
    max-width: 100%;
  }

  .btn-right {
    margin: 22px auto 0;
  }

  .gallery-title {
    margin-top: 24px;
  }

  .simple-carousel-track img {
    width: 210px;
    height: 300px;
  }

  footer {
    display: flex;
    position: relative;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 34px 24px 24px;
    gap: 18px;
  }

  footer p {
    overflow-wrap: break-word;
  }

  footer > div:not(.whatsapp-widget):not(.footer-copy) {
    width: 92%;
  }

  .whatsapp-widget {
      position: fixed;

      right: 16px;
      bottom: 18px;

      z-index: 9999;

      transform: none;
    }

  .whatsapp-float {
    width: 60px;
    height: 60px;
  }

  .whatsapp-float img {
    width: 60px;
    height: 60px;
  }

  .whatsapp-chat {
      display: none;

      position: fixed;

      right: 16px;
      bottom: 95px;

      width: calc(100vw - 32px);
      max-width: 360px;

      overflow: hidden;

      z-index: 99999;
    }

    .whatsapp-chat.open {
      display: block;
    }

  .footer-copy {
    order: 5;
    width: 100%;
    margin: 0 auto;
    padding-top: 12px;
    font-size: 13px;
    white-space: nowrap;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }

  .modal-card {
    width: calc(100vw - 32px);
    padding: 28px;
  }

  .coming-highlight {
    white-space: normal;
    font-size: 16px;
  }
}
