/* ==================================================
   INDEX – GUIA DA PEDRA
================================================== */
/* =========================
   OURO HOME SLIDER
========================= */

/* =========================
   HERO
========================= */

.hero {
  min-height: 50vh;
  background: linear-gradient(
      rgba(15, 23, 42, 0.55),
      rgba(15, 23, 42, 0.75)
    ),
    url("../img/pedra2.jpg") center 100% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 30px 20px;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 28px;
}

/* BOTÕES HERO */
.hero-acoes {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primario {
  background: #22c55e;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primario:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.btn-secundario {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.2s ease;
}

.btn-secundario:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* =========================
   CAMINHOS
========================= */
.caminhos {
  margin: 50px auto;
  text-align: center;
}

.caminhos h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}


.caminho-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 22px;
  text-decoration: none;
  color: #1e293b;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.caminho-card span {
  font-size: 36px;
}

.caminho-card h3 {
  margin: 14px 0 8px;
}

.caminho-card p {
  font-size: 0.95rem;
  color: #555;
}

.caminho-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

/* =========================
   DESTAQUES
========================= */
.destaques-home {
  background: #f8fafc;
  padding: 25px 0;
}

.destaques-home h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
}

.destaques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.destaque-box {
  background: #fff;
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.destaque-box h3 {
  margin-bottom: 12px;
}

.destaque-box p {
  color: #555;
  margin-bottom: 16px;
}

.destaque-box a {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.destaque-box a:hover {
  text-decoration: underline;
}

/* =========================
   MANIFESTO
========================= */
.manifesto {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #e5e7eb;
}

.manifesto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.manifesto p {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =========================
   CTA FINAL
========================= */
.cta-final {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta-final h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.cta-final p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
.btn-push {
    padding: 8px 14px;
    font-size: 13px;
  }
  .hero {
    min-height: 42vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .caminhos h2,
  .destaques-home h2,
  .manifesto h2 {
    font-size: 1.7rem;
  }

  .cta-final h2 {
    font-size: 1.9rem;
  }
}


/* Botão interno */
.btn-saiba-mais {
  display: inline-block;
  padding: 8px 16px;
  background: #111827;
  color: #fff;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-saiba-mais:hover {
  background: #000;
}
.fade-ouro {
  animation: fadeInOuro 0.6s ease;
}

@keyframes fadeInOuro {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   CARD OURO – HOME
========================= */
.card-ouro-home {
  background: linear-gradient(
    135deg,
    #facc15 0%,
    #f59e0b 50%,
    #facc15 100%
  );
  color: #1e293b;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(250,204,21,.45);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-ouro-home:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(250,204,21,.6);
}

.card-ouro-home img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-ouro-home .info {
  padding: 20px;
}

.card-ouro-home h3,
.card-ouro-home p {
  color: #1e293b;
}

.card-ouro-home .btn-saiba-mais {
  background: #1e293b;
  color: #ffffff;
}

/* Badge */
.badge-ouro {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #1e293b;
  color: #facc15;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Efeito brilho */
.card-ouro-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);}

@keyframes brilho {
  0% { left: -100%; }
  100% { left: 150%; }
}


/* =========================
   RESPONSIVO – HOME MOBILE
========================= */
@media (max-width: 768px) {

  .card-ouro-home {
    border-radius: 16px;
  }

  .card-ouro-home img {
    height: 130px;
    object-fit: cover;
  }

  .card-ouro-home .info {
    padding: 14px;
  }

  .card-ouro-home h3 {
    font-size: 1rem;
  }

  .card-ouro-home p {
    font-size: .85rem;
    margin-bottom: 10px;
  }

  .card-ouro-home .btn-saiba-mais {
    padding: 8px;
    font-size: .85rem;
  }

  .badge-ouro {
    top: 8px;
    left: 8px;
    font-size: .65rem;
    padding: 4px 10px;
  }

}
.btn-instalar {
  background: linear-gradient(135deg, #0a3d62, #3c6382);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn-instalar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}


.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  z-index: 5;
}

/* ==================================================
   BOTÃO PUSH – PREMIUM COMPLETO
================================================== */

.btn-push {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #0a3d62, #3c6382);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  overflow: visible;
}

/* Hover */
.btn-push:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}

/* Estado ativo */
.btn-push.ativo {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 6px 20px rgba(34,197,94,.5);
}

/* Pulso quando ativo */
.btn-push.ativo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(34,197,94,.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}

/* Tooltip */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BOTÃO APP */
.btn-app {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.btn-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}

/* Micro animação na primeira carga */
.btn-push.intro {
  animation: introAnim .6s ease;
}

@keyframes introAnim {
  0% {
    transform: scale(.6);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==================================================
   HOME – CARROSSEL OURO
================================================== */

.destaques-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.destaques-grid::-webkit-scrollbar {
  display: none;
}

.card-ouro-home {
  flex: 0 0 85%;
  scroll-snap-align: start;
}
/* ==================================================
   EFEITO FOCO – OURO HOME
================================================== */

.card-ouro-home {
  transition: transform .35s ease, opacity .35s ease;
  transform: scale(.92);
  opacity: .7;
}

.card-ouro-home.ativo {
  transform: scale(1.05);
  opacity: 1;
  z-index: 2;
}
/* ==================================================
   HOME – CARROSSEL DEFINITIVO
================================================== */

.card-ouro-home {
  flex: 0 0 85%;
  scroll-snap-align: center;
  transition: transform .35s ease, opacity .35s ease;
  transform: scale(.92);
  opacity: .7;
}

.card-ouro-home.ativo {
  transform: scale(1.05);
  opacity: 1;
  z-index: 2;
}
/* ==================================================
   CAMINHOS – MENU HORIZONTAL CARROSSEL
================================================== */

.caminhos-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.caminhos-grid::-webkit-scrollbar {
  display: none;
}

.caminho-card {
  flex: 0 0 220px;
  scroll-snap-align: center;
  padding: 22px 18px;
  border-radius: 20px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.caminho-card span {
  font-size: 30px;
}

.caminho-card h3 {
  font-size: 1rem;
  margin: 10px 0 6px;
}

.caminho-card p {
  font-size: .85rem;
}
/* ==================================================
   MINI CENTRAL DE NOTIFICAÇÕES
================================================== */

.push-wrapper {
  position: relative;
}

.push-panel {
  position: absolute;
  top: 60px;
  right: 0;
  width: 280px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  padding: 18px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all .25s ease;
  z-index: 100;
}

.push-panel.ativo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.push-panel h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.push-panel p {
  font-size: 13px;
  margin-bottom: 12px;
  color: #555;
}

.push-panel button {
  width: 100%;
  padding: 10px;
  border-radius: 14px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.btn-ativar {
  background: #22c55e;
  color: #fff;
}

.btn-desativar {
  background: #ef4444;
  color: #fff;
}
/* =========================
   BADGE VERMELHO NOTIFICAÇÃO
========================= */

/* BADGE NOTIFICAÇÃO */

.badge-notificacao {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #fff;
}

.badge-notificacao.ativo {
  display: flex;
  animation: pulseBadge 1.5s infinite;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.icon-sino.novo {
  animation: shake 0.6s ease;
}

@keyframes shake {
  0% { transform: rotate(0); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(5deg); }
  100% { transform: rotate(0); }
}

/* ==================================================
   SUPER OFERTA DO DIA
================================================== */

.super-oferta {
  padding: 50px 0;
  background: #ffffff;
}


.super-oferta h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.oferta-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.oferta-carousel::-webkit-scrollbar {
  display: none;
}

.oferta-item {
  flex: 0 0 85%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  transition: transform .3s ease;
  aspect-ratio: 16 / 9;
}

.oferta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.oferta-item:hover {
  transform: scale(1.03);
}

.oferta-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
}
.oferta-carousel {
  cursor: grab;
}

.oferta-carousel:active {
  cursor: grabbing;
}

.btn-share {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.btn-share:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}


