/* ==========================
   GERAL & RESET
========================== */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background-color: #1E1E1E;
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================
   WHATSAPP FLUTUANTE
========================== */
.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}

.whatsapp-float.show {
    opacity: 1;
    pointer-events: all;
}

/* ==========================
   PROMOÇÃO TOPO
========================== */
.promocao {
    background: #fff;
    color: #000;
    text-align: center;
    font-size: .8rem;
    padding: 6px 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.promocao h1 {
    margin: 0;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

/* ==========================
   CABEÇALHO (HEADER)
========================== */
.header-container {
    background: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    position: sticky;
    top: 0;
    z-index: 9998;
}

.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 215px; /* Tamanho para desktop */
    height: auto;
}

/* Menu Principal (Desktop) */
.nav__links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav__links .link a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav__links .link a:hover {
    color: #f1c40f;
}

/* Ícones de Usuário e Carrinho */
.icon-persona {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
}

.icon-persona button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
}

.icon-persona button:hover,
.icon-persona a:hover {
    color: #f1c40f;
}

/* BOTÃO HAMBURGUER (Toggle) */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 9999;
    padding: 0;
}

/* Estilo para troca de Ícones */
.menu-toggle .fa-xmark {
    display: none;
}
.menu-toggle.active .fa-bars {
    display: none;
}
.menu-toggle.active .fa-xmark {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

nav.menu {
    display: flex;
}

/* ==========================
   MEGA MENU (Desktop Hover)
========================== */
.link.has-mega-menu {
    position: relative; 
}

.mega-menu {
    display: none; 
    position: absolute;
    top: 100%; 
    left: 50%; 
    transform: translateX(-50%); 
    background-color: #0e0e0e; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 250px;
    z-index: 1000; 
    padding: 20px;
    border-radius: 4px;
    border-top: 3px solid #f1c40f;
}

.mega-menu-wide {
    min-width: 600px;
    max-width: 800px;
}

.link.has-mega-menu:hover .mega-menu {
    display: block;
}

.mega-menu-content {
    display: flex;
    gap: 40px; 
    justify-content: space-around;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    min-width: 140px; 
}

.column-title {
    font-size: 0.9em;
    font-weight: 700;
    color: #e4c200;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-column a {
    color: #b0b0b0;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.mega-menu-column a:hover {
    color: #f1c40f; 
}

/* ==========================
   BANNER PRINCIPAL
========================== */
.banner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-bottom: 2px solid #f1c40f20;
}

/* ==========================
   BENEFÍCIOS (OCULTADO)
========================== */
.beneficios-container {
    display: none;
}

/* ==========================
   TÍTULOS (CTA)
========================== */
.novidades-cta {
    color: #ffffff;
    text-align: center;
    padding: 15px 10px;
    text-transform: uppercase;
    margin: 40px 0 20px;
}

.novidades-cta h1,
.novidades-cta h2 {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
}

/* ==========================
   PRODUTOS - GRID
========================== */
.produtos-novidades {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.produtos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 30px; 
}

/* ==========================
   CARD PRODUTO
========================== */
.card-link { 
    text-decoration: none; 
}

/* Animação de Scroll */





.card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.25; 
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.card-produto:hover .card-img img {
    transform: scale(1.04);
}

/* Controle das Imagens Principal/Hover */
.card-img .img-principal {
    opacity: 1;
    transition: opacity 0.35s ease;
}
.card-img .img-hover {
    opacity: 0;
    position: absolute;
    inset: 0;
    transition: opacity 0.35s ease;
}

.card-produto:hover .img-principal { 
    opacity: 0; 
}
.card-produto:hover .img-hover { 
    opacity: 1; 
}

/* Info Enxuta */
.card-info {
    padding: 8px 2px;
}

.card-titulo {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #fff;
    line-height: 1.2;
}

.preco-atual {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.parcelamento {
    font-size: 11px;
    color: #ccc;
    margin-top: 2px;
}

/* ==========================
   PROMOÇÕES (Cards de Promoção)
========================== */
.promocoes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.card-promocao {
    position: relative;
    width: 300px;
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
    background-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none; 
}

.card-promocao:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.card-promocao img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; 
    transition: opacity 0.3s ease;
}

.card-promocao:hover img {
    opacity: 0.5;
}

.conteudo-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.conteudo-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.conteudo-card p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
}

.btn-comprar {
    background-color: #f5a623;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block; 
}

.btn-comprar:hover {
    background-color: #d98b1e;
}

/* ==========================
   FOOTER
========================== */

.footer {
    background: #1E1E1E;
    color: #ffffff;
    margin-top: 80px;
    font-family: 'Inter', sans-serif;
}

/* NEWSLETTER */
.footer-newsletter {
    border-bottom: 1px solid #ddd;
    padding: 50px 20px;
    background: #1E1E1E;
}

.newsletter-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-logo {
    max-width: 120px;
}

.footer-newsletter h2 {
    font-size: 20px;
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
    min-width: 220px;
}

.newsletter-form button {
    padding: 10px 18px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
}

/* LINKS */
.footer-links {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-column h4 {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-column a,
.footer-column p {
    display: block;
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-payments {
    max-width: 140px;
    margin-bottom: 15px;
}

.footer-social a {
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #ddd;
    text-align: center;
    padding: 15px;
    font-size: 12px;
    color: #ffffff;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }
}

/* ==========================
   HOVER AMARELO - FOOTER
========================== */

.footer-column a {
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: #f1c40f; /* amarelo Faith */
}

/* redes sociais */
.footer-social a {
    transition: color 0.25s ease;
}

.footer-social a:hover {
    color: #f1c40f;
}

/* assinatura */
.footer-signature {
    margin-top: 8px;
    font-size: 12px;
    color: #777;
}

.footer-signature .heart {
    color: #e74c3c;
}
/* ==========================
   PAGAMENTO & REDES SOCIAIS
========================== */

.pagamento-social h4 {
    margin-bottom: 12px;
}

/* pagamento */
.payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.payment-icons img {
    height: 22px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
}

/* redes sociais */
.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    font-size: 18px;
    color: #555;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    color: #f1c40f;
    transform: translateY(-2px);
}

/* espaçamento entre títulos */
.footer-column .mt {
    margin-top: 20px;
}
.payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 28px;
    color: #999;
}

.payment-icons .pix {
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #999;
    padding: 4px 8px;
    border-radius: 4px;
    color: #999;
}

/* ==========================
   FOOTER - SOBRE
========================== */

.footer-about {
    background: #111;
    padding: 70px 20px 50px;
    text-align: center;
}

.about-content {
    max-width: 820px;
    margin: 0 auto;
}

.about-logo {
    max-width: 160px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #bfbfbf;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-text strong {
    color: #f1c40f; /* amarelo Faith */
    font-weight: 500;
}

/* mobile */
@media (max-width: 600px) {
    .about-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ==========================
   MEDIA QUERIES
========================== */

/* DESKTOP (3 COLUNAS) */
@media (min-width: 769px) {
    .produtos {
        display: grid;
        grid-template-columns: repeat(3, minmax(260px, 1fr));
        gap: 30px;
    }
}

/* MOBILE (2 COLUNAS & HEADER ESTILIZADO) */
@media (max-width: 768px) {
    
    /* CABEÇALHO */
    .header-container {
        justify-content: space-between;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%); 
    }
    .logo img {
        width: 150px;
    }
    
    .menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
}

    .menu-toggle {
        display: block;
        order: -1; 
    }
    
    .icon-persona {
        margin-left: auto;
    }

    .nav__links {
        display: none; 
    }

  nav.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #0f0f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left .35s ease;
  z-index: 10000;
}

nav.menu.active {
  left: 0;
}

    
    .nav__links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    /* GRID 2 COLUNAS MOBILE */
    .produtos-novidades {
        padding: 0;
    }
    
    .produtos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 5px;
    }

    .produtos > a:nth-child(3),
    .produtos > div:nth-child(3) {
        display: none;
    }

    .card-img {
        aspect-ratio: 1 / 1.05; 
        height: auto; 
    }

    .card-titulo {
        font-size: 12px;
    }

    .preco-atual {
        font-size: 13px;
    }

    .parcelamento {
        font-size: 10px;
    }

    .banner,
    .banners-promocionais {
        display: none;
    }
}
/* ==========================
   PROMOÇÃO PRINCIPAL
========================== */

.promo-destaque {
  display: flex;
  justify-content: center;
  margin: 60px 0 100px;
}

.promo-link {
  width: 90%;
  max-width: 1100px;
  text-decoration: none;
}

.promo-card-grande {
  position: relative;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.promo-card-grande img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 30px;
}

.promo-overlay h3 {
  font-size: 72px;
  letter-spacing: 4px;
  margin: 10px 0;
}

.promo-overlay p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 25px;
}

.promo-tag {
  border: 1px solid rgba(255,255,255,0.6);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.btn-promo {
  background: #f5a623;
  color: #000;
  border: none;
  padding: 14px 40px;
  font-weight: bold;
  letter-spacing: 1px;
   cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.promo-destaque {
  width: 100%;
  padding: 40px 0;
}

.promo-card-grande {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.promo-card-grande img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.promo-tag {
  border: 1px solid #fff;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.promo-overlay h3 {
  font-size: 64px;
  font-weight: 800;
  margin: 0;
}

.promo-overlay p {
  margin: 12px 0 28px;
  font-size: 15px;
  opacity: 0.9;
}

/* BOTÃO */
.btn-promo {
  background: #f5a623;
  color: #000;
  padding: 14px 36px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-promo:hover {
  background: #ffb83d;
  transform: translateY(-2px);
}


/* MOBILE */
@media (max-width: 768px) {
  .promo-card-grande {
    height: 300px;
  }

  .promo-overlay h3 {
    font-size: 42px;
  }
}
.loading-faith {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.loading-faith p {
    color: #facc15;
    margin-top: 18px;
    font-size: 15px;
    letter-spacing: 1px;
}

.spinner {
    width: 55px;
    height: 55px;
    border: 4px solid #222;
    border-top: 4px solid #facc15;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.faith-loading {
  position: fixed;
  inset: 0;
  background: #0e0e0e70;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.faith-loading-content {
  text-align: center;
}

.faith-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid #222;
  border-top: 4px solid #facc15;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 18px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.faith-loading p {
  color: #facc15;
  font-size: 16px;
  letter-spacing: 1px;
}
:root {
  --faith-black: #0f0f0f;
  --faith-dark: #1a1a1a;
  --faith-gold: #c9a24d;
  --faith-gold-soft: #e6c97a;
  --faith-white: #ffffff;
  --faith-gray: #b5b5b5;
}
/* ================================
   INSTITUCIONAL – FAITH (CORINGA)
================================ */

.faith-institucional {
  background: linear-gradient(180deg, #0d0d0d, #151515);
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.faith-card {
  width: 100%;
  max-width: 820px;
  background: #111;
  border-radius: 22px;
  padding: 60px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Tag superior */
.faith-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a24d;
  margin-bottom: 18px;
}

/* Título */
.faith-card h1 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 700;
}

/* Texto padrão */
.faith-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #b5b5b5;
  margin-bottom: 20px;
}

/* Lista */
.faith-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.faith-card ul li {
  padding: 14px 0 14px 30px;
  position: relative;
  color: #d0d0d0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faith-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 14px;
  color: #c9a24d;
  font-size: 14px;
}

/* Responsivo */
@media (max-width: 768px) {
  .faith-card {
    padding: 40px 25px;
  }

  .faith-card h1 {
    font-size: 30px;
  }
}
/* ===============================
   BOTÃO FECHAR (X) – HEADER
=============================== */
.menu-close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(241, 196, 15, 0.4);
  border-radius: 50%;

  color: #f1c40f;
  font-size: 18px;

  cursor: pointer;
  transition: background 0.2s ease,
              transform 0.15s ease,
              border 0.2s ease;
  z-index: 10001;
}

/* HOVER / TOQUE */
.menu-close:hover,
.menu-close:active {
  background: rgba(241, 196, 15, 0.15);
  border-color: #f1c40f;
  transform: scale(0.95);
}

@media (min-width: 769px) {
  .menu-close {
    display: none;
  }
}
/* ===============================
   DESATIVA MEGA-MENU NO MOBILE
=============================== */
@media (max-width: 768px) {

  /* Remove qualquer modal/hover desktop */
  .mega-menu,
  .mega-menu-wide {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Remove comportamento hover */
  .has-mega-menu:hover .mega-menu {
    display: none !important;
  }

  /* Garante que o link "VER TUDO" funcione como link normal */
  .has-mega-menu > a {
    pointer-events: auto;
  }

}
.fath-institucional,
.faith-institucional {
  min-height: 100vh;
  background: linear-gradient(180deg, #0e0e0e, #141414);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.faith-card {
  max-width: 800px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 50px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.faith-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: #9aff9a;
  display: block;
  margin-bottom: 15px;
}

.faith-card h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.faith-card p {
  font-size: 16px;
  color: #dcdcdc;
  line-height: 1.7;
  margin-bottom: 18px;
}

.faith-values {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 35px;
}

.faith-values div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.faith-values i {
  font-size: 26px;
  color: #9aff9a;
}

.faith-values span {
  font-size: 14px;
  letter-spacing: 1px;
}
