/* 
   ==========================================================================
   PICK DONUTS - PRÉ-CAPA BONITA E FUNCIONAL
   ========================================================================== 
*/

/* 1. PRÉ-CAPA */
.pick-hero-final {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #d9ebf5; /* azul clarinho da Pick */
    z-index: 999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* esconde o site enquanto a pré-capa está ativa */
body.pre-capa #cabecalho,
body.pre-capa #corpo,
body.pre-capa #rodape,
body.pre-capa .secao-banners {
    display: none !important;
}

/* estrutura interna */
.pick-hero-final__inner {
    display: flex;
    max-width: 1180px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 34px;
    border-radius: 32px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}

/* texto */
.pick-hero-final__texto {
    flex: 1;
    max-width: 560px;
    text-align: left;
}

.pick-hero-final__tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(19,74,115,0.10);
    color: #134a73;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.pick-hero-final__texto h1 {
    margin: 0 0 14px 0;
    font-size: 56px;
    line-height: 0.98;
    font-weight: 900;
    color: #134a73;
    letter-spacing: -1.3px;
}

.pick-hero-final__texto p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: #31566f;
}

/* botões */
.pick-hero-final__botoes {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.pick-hero-final__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.25s ease;
    text-align: center;
}

.pick-hero-final__btn--principal {
    background: linear-gradient(135deg, #ffe04d, #ffcc00);
    color: #134a73 !important;
    box-shadow: 0 6px 20px rgba(255,204,0,0.35);
}

.pick-hero-final__btn--principal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,204,0,0.48);
}

.pick-hero-final__btn--secundario {
    background: #134a73;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(19,74,115,0.22);
}

.pick-hero-final__btn--secundario:hover {
    transform: translateY(-2px);
    background: #0f3c5e;
}

/* imagens */
.pick-hero-final__imagens {
    flex: 1;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
}

.pick-hero-final__coluna {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pick-hero-final__card {
    background: rgba(255,255,255,0.92);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

.pick-hero-final__card--maior {
    width: 310px;
}

.pick-hero-final__card--menor {
    width: 230px;
}

.pick-hero-final__card img {
    width: 100%;
    height: auto;
    display: block;
}

/* animação leve estilo iPhone */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pick-hero-final__texto h1,
.pick-hero-final__texto p,
.pick-hero-final__botoes {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.pick-hero-final__texto h1 { animation-delay: 0.2s; }
.pick-hero-final__texto p { animation-delay: 0.4s; }
.pick-hero-final__botoes { animation-delay: 0.6s; }

.pick-hero-final__imagens {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.8s;
}

/* 2. MOBILE */
@media (max-width: 768px) {
    .pick-hero-final {
        padding: 30px 18px;
        align-items: flex-start;
    }

    .pick-hero-final__inner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .pick-hero-final__texto {
        order: 1;
        max-width: 100%;
        text-align: center;
    }

    .pick-hero-final__texto h1 {
        font-size: 36px;
    }

    .pick-hero-final__texto p {
        font-size: 17px;
    }

    .pick-hero-final__botoes {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .pick-hero-final__btn {
        width: 100%;
    }

    .pick-hero-final__imagens {
        order: 2;
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
    }

    .pick-hero-final__card--maior {
        width: 100%;
        max-width: 320px;
    }

    .pick-hero-final__card--menor {
        display: none;
    }
}

/* 3. FUNDO DO SITE DEPOIS DO CLIQUE */
body:not(.pre-capa) {
    background-repeat: repeat-y !important;
    background-position: center top !important;
    background-size: 100% auto !important;
    background-attachment: scroll !important;
}

body:not(.pre-capa) #corpo,
body:not(.pre-capa) #corpo .conteiner,
body:not(.pre-capa) #rodape {
    background: transparent !important;
}

/* produtos bonitos depois do clique */
body:not(.pre-capa) .listagem-item,
body:not(.pre-capa) .produto,
body:not(.pre-capa) .pagina-produto .conteudo {
    background: rgba(255,255,255,0.90) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    border: none !important;
}
.pick-cardapio {
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
}

.pick-cardapio h1 {
  font-size: 42px;
  color: #134a73;
  margin-bottom: 10px;
}

.pick-cardapio p {
  color: #31566f;
  margin-bottom: 30px;
}

/* GRID TROCADO POR FLEX (compatível) */
.pick-cardapio__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pick-cardapio__item {
  width: 260px;
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  text-decoration: none;
  color: #134a73;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.2s;
}

.pick-cardapio__item:hover {
  transform: translateY(-5px);
}

.pick-cardapio__item img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 10px;
}