
body {
    margin: 0;
    background: #f6f6f6;
}
.header-top {
    background: #222;
    width: 100vw;
    height: 180px;
    position: relative;
    z-index: 2;
}
.curva-branca {
    width: 100vw;
    height: 120px;
    background: #fff;
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}
.circle-container {
  position: absolute;
  left: 50%;
  top: 160px;
  transform: translate(-50%, -50%);
  width: 320px;        /* ← AUMENTADO de 140px */
  height: 320px;       /* ← AUMENTADO de 140px */
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid #fff;  /* Borda mais grossa */
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);  /* Sombra forte */
  background: #fff;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.content {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 5;
}
.titulo-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.titulo {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
}
.verificado {
    width: 55px;
    height: 55px;
    vertical-align: middle;
}
.status-box {
    position: fixed;
    top: 18px;
    left: 20px;
    background: #cafac7;
    border-radius: 24px;
    padding: 5px 22px 5px 14px;
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 0.98rem;
    z-index: 20;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    gap: 8px;
}
.bolinha {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #19c511;
    box-shadow: 0 0 8px #19c511;
    animation: pisca 1s infinite;
}
@keyframes pisca {
    0%, 100% { opacity: 1;}
    50% { opacity: 0.2;}
}
.semana {
    color: #222;
    background: #17a80f;
    border-radius: 16px;
    padding: 2px 12px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
}

/* Pop-ups e carregando */
.modal-geo {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    display: flex; justify-content: center; align-items: center;
    background: rgba(0,0,0,0.22);
    z-index: 1000;
}
.modal-geo-box {
    background: #fff;
    border-radius: 18px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(0,0,0,0.16);
    min-width: 250px;
}
.modal-geo-box h2 {
    margin-bottom: 14px;
    font-size: 1.28rem;
}
.modal-geo-box input {
    border: 2px solid #17a80f;
    border-radius: 8px;
    font-size: 1rem;
    padding: 8px;
    margin-bottom: 10px;
    width: 85%;
}
.modal-geo-box button {
    background: #17a80f;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 22px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
}

.loader-bolinhas {
    display: flex;
    flex-direction: row;
    gap: 7px;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}
.bolinha.carregando {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #19c511;
    box-shadow: 0 0 12px #19c511;
    animation: blink 0.8s infinite;
}
.bolinha.carregando.delay1 { animation-delay: 0.25s; }
.bolinha.carregando.delay2 { animation-delay: 0.5s; }
@keyframes blink {
    0%, 100% { opacity: 1;}
    50% { opacity: 0.1;}
}

.entrega-banner {
    margin: 26px auto 0 auto;
    padding: 13px 22px;
    max-width: 670px;
    border: 2px solid #218938;
    border-radius: 16px;
    text-align: center;
    font-size: 1.22rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #218938;
    background: #fff;
    font-weight: normal;
    display: block;
}
.entrega-destaque {
    font-weight: bold;
    color: #218938;
}
.entrega-local {
    font-weight: bold;
    color: #197635;
}

.info-resumo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  margin-top: 16px;
  margin-bottom: 16px;
}

.info-linha {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #f0fdf4;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
  color: #059669;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}

.info-avaliacao {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 16px;
  white-space: nowrap;
}

.info-icone {
  width: 20px;
  height: 20px;
  color: #059669;
}

.info-gratis {
    color: #218938;
    font-weight: bold;
    margin-left: 2px;
}

.info-avaliacao { 
    font-size: 1rem; 
    color: #059669; 
    margin-left: 2px; 
    font-weight: 700; 
}

.banner-destaque {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 28px auto 0 auto;
}
.banner-img {
    width: 100%;
    max-width: 930px;
    border-radius: 22px;
    display: block;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

/* Depoimentos e Ticker */
.depoimentos-box {
    max-width: 980px;
    margin: 65px auto 40px auto;
    background: #fff;
    border-radius: 22px;
    padding: 38px 22px 16px 22px;
    box-shadow: 0 2px 18px rgba(40,160,40,0.08);
}
.depoimento-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.2px solid #e4e8e6;
    padding-bottom: 22px;
    margin-bottom: 16px;
}
.depoimento-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.depoimento-texto {
    flex: 1;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.09rem;
    color: #262626;
    line-height: 1.32;
    padding-right: 32px;
    min-width: 220px;
}
.depoimento-texto b {
    font-size: 1.13rem;
    color: #383f3c;
}
.depoimento-nota {
    font-weight: 700;
    color: #218938;
    font-size: 1.06rem;
}
.depoimento-estrelas {
    color: #f7bc34;
    font-size: 1.05rem;
    margin-left: 2px;
}
.depoimento-img img {
    width: 86px;
    height: 67px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(80,80,80,0.07);
    background: #f8f8f8;
}
.depoimento-img {
    display: flex;
    align-items: center;
    min-width: 90px;
    justify-content: flex-end;
}

/* Responsivo para dispositivos móveis */
@media (max-width:900px) {
    .depoimentos-box {
        max-width: 98vw;
        padding: 13px 4px 6px 4px;
        border-radius: 8px;
    }
    .depoimento-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .depoimento-texto {
        padding-right: 0;
        margin-bottom: 9px;
        min-width: unset;
    }
    .depoimento-img img {
        width: 78px;
        height: 61px;
        margin-bottom: 5px;
    }
}

/* Ticker */
.ticker-container {
    position: fixed;
    left: 18px;
    bottom: 18px;
    min-width: 290px;
    max-width: 370px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: none;
}
.ticker-nome-estrelas {
    margin-left: 8px;
    margin-bottom: 1px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.05rem;
    font-weight: bold;
    color: #244a24;
    letter-spacing: 0.004em;
    display: flex;
    gap: 9px;
    align-items: center;
    background: none;
}
.estrelas-ticker {
    font-size: 1.19em;
    color: #f7bc34;
    margin-left: 4px;
    letter-spacing: 1.2px;
    font-weight: normal;
}
.depoimento-ticker-card {
    background: #fff;
    color: #253326;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.94rem;
    border-radius: 15px;
    box-shadow: 0 6px 21px rgba(42,191,78,0.11), 0 2px 7px rgba(30,180,60,0.08);
    padding: 12px 16px 12px 16px;
    border: 2px solid #2cc463;
    min-width: 290px;
    max-width: 370px;
    opacity: 0.98;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.label-ticker {
    font-weight: bold;
    color: #218938;
    font-size: 0.96rem;
}
@media(max-width:600px){
    .ticker-container, .depoimento-ticker-card {
        left: 0;
        min-width: 96vw;
        max-width: 100vw;
        border-radius: 0;
        bottom: 0;
        font-size: 0.93rem;
        padding-left: 8px;
    }
}

.avaliacao-box {
    max-width: 900px;
    margin: 66px auto 32px auto;
    padding: 24px 0;
    border: 2.3px solid #218938;
    border-radius: 18px;
    text-align: center;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 2px 18px rgba(40,160,40,0.06);
}
.avaliacao-nota {
    font-size: 2.04rem;
    font-weight: 600;
    color: #274042;
    margin-bottom: 9px;
}
.avaliacao-estrelas {
    font-size: 1.46rem;
    color: #f7bc34;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.avaliacao-texto {
    font-size: 1.09rem;
    color: #222;
    margin-top: 5px;
    line-height: 1.23;
}
.avaliacao-texto b {
    font-weight: 600;
}

.rodape-site {
    background: #181818;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 32px 0 16px 0;
    font-size: 1.14rem;
    border-top: 2px solid #333;
    margin-top: 64px;
    width: 100vw;
}
.rodape-info {
    font-size: 1.17rem;
    font-weight: bold;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
}
.rodape-info strong {
    font-size: 1.19rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.015em;
}
.rodape-contato {
    margin-bottom: 7px;
    font-size: 1.06rem;
    font-weight: 400;
}
.rodape-links {
    margin-top: 9px;
    font-size: 1.04rem;
}
.rodape-link {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
    letter-spacing: 0.01em;
    transition: color 0.18s;
}
.rodape-link:hover {
    color: #29db45;
}
@media (max-width:600px){
    .rodape-site {
        font-size: 0.97rem;
        padding: 23px 0 11px 0;
        border-radius: 0;
    }
    .rodape-info {
        font-size: 1.04rem;
    }
    .rodape-contato, .rodape-links {
        font-size: 0.97rem;
    }
}

.ticker-fixed-container {
  position: fixed;
  bottom: 75px;
  left: 18px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza nome+estrelas e caixa */
  gap: 6px;
  z-index: 1000;
  max-width: 400px;
  width: fit-content;
}

.nome-estrelas-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1rem;
  color: #193624;
  justify-content: center; /* Centraliza linha do nome + estrelas */
  width: 100%;
}

#tickerNome {
  /* Nome sem modificação extra */
}

.estrelas-ticker {
  font-size: 1.2rem;
  color: #f7bc34;
  letter-spacing: 1.2px;
  font-weight: normal;
}

.depoimento-ticker-box {
  background: #fff;
  border-radius: 15px;
  border: 2px solid #2cc463;
  padding: 16px 20px;
  box-shadow: 0 6px 21px rgba(42, 191, 78, 0.11);
  color: #253326;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.3;
  max-width: 400px;
  width: 100%;
  text-align: left;
}

.entrega-banner {
  max-width: 1230px;       /* Mesma largura do banner */
  margin: 28px auto 0 auto;
  padding: 12px 24px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;       /* Fonte maior */
  font-weight: 700;
  color: #059669;          /* Verde destacado */
  background-color: #f0fdf4;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.entrega-destaque {
  font-weight: 900;
  color: #047857;          /* Verde mais escuro */
  margin-right: 6px;
}

.entrega-local {
  font-weight: 600;
  color: #065f46;          /* Verde intermediário */
}
/* GEOLOCALIZAÇÃO - POP-UPS MELHORADOS */
.modal-geo {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: flex; justify-content: center; align-items: center;
  background: rgba(0,0,0,0.5); z-index: 9999;
  backdrop-filter: blur(2px);
}

.modal-geo-box {
  background: #fff; border-radius: 24px;
  padding: 40px 28px; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  min-width: 320px; max-width: 90vw;
  position: relative; animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.loader-bolinhas {
  display: flex; gap: 10px; justify-content: center;
  margin: 20px 0;
}

.bolinha.carregando {
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(45deg, #17a80f, #19c511);
  box-shadow: 0 0 15px #19c511; animation: blink 1s infinite;
}

.bolinha.carregando.delay1 { animation-delay: 0.2s; }
.bolinha.carregando.delay2 { animation-delay: 0.4s; }

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.2); }
}

/* BANNER DINÂMICO */
.entrega-local { font-weight: 700 !important; color: #065f46 !important; }

.info-avaliacao .info-icone {
  color: #f7bc34 !important;      /* dourado da estrela */
  fill: #f7bc34 !important;
}


/* ==========================================
   MOBILE CARDS RESPONSIVO - CORRIGIDO
   ========================================== */

/* MOSTRA mobile em celular < 768px */
@media (max-width: 767px) {
  .mobile-group-45, .mobile-group-67, .mobile-group-1112,
  .mobile-group-132, .mobile-group-8109 { 
    display: block !important; 
  }
}

/* ESCONDE mobile em desktop ≥ 768px */
@media (min-width: 768px) {
  .mobile-group-45, .mobile-group-67, .mobile-group-1112,
  .mobile-group-132, .mobile-group-8109 { 
    display: none !important; 
  }
}

/* Cards mobile layout */
.mobile-row-45, .mobile-row-67, .mobile-row-1112, 
.mobile-row-13, .mobile-row-810 { 
  width: 95vw; margin: 0 auto; 
}

.card-small { min-height: 380px; flex: 1; }
.card-big { width: 90vw; margin: 0 auto; }


/* ==========================================
   PREÇOS VERTICAIS - FORÇA CIMA/BAIXO
   ========================================== */

/* Cards pequenos (1,3,4,5,6,7,8,10,11,12) */
#card-1, #card-3, #card-4, #card-5, #card-6, #card-7, 
#card-8, #card-10, #card-11, #card-12,
#card-1-mobile, #card-3-mobile, #card-4-mobile, #card-5-mobile,
#card-6-mobile, #card-7-mobile, #card-8-mobile, #card-10-mobile,
#card-11-mobile, #card-12-mobile {
  .flex.flex-col {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  
  .text-red-500.line-through {
    order: 1 !important;  /* RISCADO PRIMEIRO (CIMA) */
    margin-bottom: 0.25rem !important;
  }
  
  .text-green-600.font-extrabold {
    order: 2 !important;  /* VERDE DEPOIS (BAIXO) */
    margin-top: 0 !important;
  }
}

/* Mobile específico */
@media (max-width: 767px) {
  .card-small .flex.flex-col {
    flex-direction: column !important;
    gap: 0.25rem !important;
  }
}
