/* ============================== RESET GLOBAL ============================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f7fa;
}

/* CONTAINER PADRÃO DO SITE */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ============================== TOPO ============================== */
.topo-site {
  width: 100%;
  background: #0d6efd;
}

.topo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.topo-container img {
  height: 60px;
}

/* MENU DESKTOP */
.topo-menu {
  display: flex;
  gap: 25px;
}

.topo-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn-topo {
  border: 1px solid #fff;
  padding: 8px 16px;
  border-radius: 6px;
}

/* BOTÃO HAMBURGUER */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

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

  /* ESCONDE MENU NORMAL */
  .topo-menu {
    display: none;
  }

  /* MOSTRA ÍCONE */
  .menu-toggle {
    display: block;
  }

  /* MENU QUANDO ATIVO */
  .topo-menu.ativo {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 20px;
    background: #0d6efd;
    width: 230px;
    padding: 15px;
    gap: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 999;
  }
}

/* ============================== INFO TOPO (FARMÁCIA + CLIMA) ============================== */
.info-topo-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Mobile */
@media(max-width:900px) {
  .info-topo-container {
    grid-template-columns: 1fr;
  }
}

/* CARDS */
.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
}

/* ============================== CLIMA ORGANIZADO ============================== */
#climaLinha {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.linha-clima {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

@media(max-width:768px) {
  .linha-clima {
    gap: 20px;
    justify-content: space-evenly;
  }
}

/* MOBILE AJUSTADO */
@media(max-width:768px) {
  .linha-clima {
    width: 100%;
    justify-content: space-evenly;
  }

  .linha-clima span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
  }
}

/* ============================== SLIDER ============================== */
.slider-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 40px auto;
}

.slider {
  position: relative;
  height: 420px;
  border-radius: 25px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.ativo {
  opacity: 1;
}

.slide-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  max-width: 500px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
}

.slide-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 17px;
  margin-bottom: 15px;
}

.btn-slide {
  background: #0d6efd;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* SETAS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #0d6efd;
  border: none;
  font-size: 26px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
}

.prev {
  left: -20px;
}

.next {
  right: -20px;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dots span.ativo {
  background: #0d6efd;
}

/* ============================== CONTEÚDO ============================== */
.conteudo {
  width: 80%;
  margin: 50px auto;
  text-align: center;
}

.frase-impacto {
  font-size: 22px;
  font-weight: bold;
  color: #0d6efd;
  margin-bottom: 20px;
}

/* ============================== GRID EMPRESAS ============================== */
.container-empresas {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
}

.grid-empresas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card-empresa {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card-empresa:hover {
  transform: translateY(-6px);
}

.card-empresa img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

@media(max-width:900px) {
  .grid-empresas {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .grid-empresas {
    grid-template-columns: 1fr;
  }
}

/* ============================== FOOTER ============================== */
/* ===== RODAPÉ ===== */
footer {
  background: #0d6efd;
  color: #fff;
  padding: 60px 0 0 0;
}

.footer-site {
  background: #0d6efd;
  color: #fff;
  margin-top: 60px;
}

.footer-container {
  width: 80%;
  margin: auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p {
  line-height: 1.6;
  font-size: 15px;
}

.footer-col a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-btn {
  margin-top: 15px;
  display: inline-block;
  background: #ffc107;
  color: #000;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.footer-bottom {
  background: #0b5ed7;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* ============================== RESPONSIVO GERAL ============================== */
/* RESPONSIVO */
@media(max-width:768px) {
  .footer-container {
    width: 95%;
    text-align: center;
  }
}

.slider.video {
  position: relative;
  height: 60vh;
  max-height: 600px;
  overflow: hidden;
}

.slider.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media(max-width:768px) {
  .slider video {
    display: none;
  }

  .slider {
    background-image: url('../assets/images/guaraci-mobile.jpg');
  }
}

/* ===== CLIMA ORGANIZADO ===== */
#climaLinha {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

/* Cada linha do clima */
.linha-clima {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Desktop mantém 2 linhas fixas */
@media(min-width:769px) {
  .linha-clima {
    flex-wrap: nowrap;
  }
}

/* Mobile divide melhor */
@media(max-width:768px) {
  .linha-clima {
    flex-wrap: wrap;
    gap: 10px;
  }

  .linha-clima span {
    flex: 1 1 45%;
    text-align: center;
  }
}

/* ===================================== CLIMA ===================================== */
.clima-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  font-weight: 500;
  transition: 0.4s ease;
}

/* Fundos dinâmicos */
.clima-card.limpo {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.clima-card.nublado {
  background: linear-gradient(135deg, #757f9a, #d7dde8);
}

.clima-card.chuva {
  background: linear-gradient(135deg, #314755, #26a0da);
}

.clima-card.noite {
  background: linear-gradient(135deg, #141E30, #243B55);
}

/* Temperatura dinâmica */
.frio {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.moderado {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.quente {
  background: linear-gradient(135deg, #ff9966, #ff5e62);
}

/* Linha do clima em duas linhas */
#climaLinha {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 15px;
}

.linha-clima {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* SOL GIRANDO */
.sol-animado {
  display: inline-block;
  animation: girarSol 8s linear infinite;
}

@keyframes girarSol {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* LUA */
.lua-animada {
  display: inline-block;
  animation: brilharLua 3s ease-in-out infinite alternate;
}

@keyframes brilharLua {
  from {
    transform: scale(1);
    opacity: .8;
  }

  to {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* CHUVA */
.chuva-animacao {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .3) 1px, transparent 1px);
  background-size: 2px 20px;
  animation: chuva 0.6s linear infinite;
  opacity: .25;
}

@keyframes chuva {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 20px;
  }
}

/* RELÂMPAGO */
.relampago {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .8);
  opacity: 0;
  pointer-events: none;
  animation: piscarRelampago 6s infinite;
}

@keyframes piscarRelampago {

  0%,
  90%,
  100% {
    opacity: 0;
  }

  92% {
    opacity: 1;
  }

  94% {
    opacity: 0;
  }

  96% {
    opacity: 1;
  }

  98% {
    opacity: 0;
  }
}

/* VENTO NAS LETRAS */
.vento-letras {
  animation: ventoTexto 1.5s ease-in-out infinite alternate;
}

@keyframes ventoTexto {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(3px);
  }
}

/* ===== COR DINÂMICA TEMPERATURA ===== */
.frio {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.moderado {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.quente {
  background: linear-gradient(135deg, #ff9966, #ff5e62);
}

/* ===== VENTO NAS LETRAS ===== */
.vento-letras {
  animation: ventoTexto 1.5s ease-in-out infinite alternate;
}

@keyframes ventoTexto {
  from {
    transform: translateX(0px);
  }

  to {
    transform: translateX(3px);
  }
}

/* ===================================== RESPONSIVO GERAL ===================================== */
.slider-wrapper {
  width: 95%;
}

.slide-content {
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.footer-container {
  width: 95%;
  text-align: center;
}
}

/* ============================== CLIMA VISUAL PREMIUM ============================== */
.clima-card {
  position: relative;
  color: #fff;
  border-radius: 14px;
  padding: 20px;
  overflow: hidden;
  transition: 0.4s ease;
}

/* DIA ENSOLARADO */
.clima-card.limpo {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

/* NUBLADO */
.clima-card.nublado {
  background: linear-gradient(135deg, #757f9a, #d7dde8);
}

/* CHUVA */
.clima-card.chuva {
  background: linear-gradient(135deg, #314755, #26a0da);
}

/* NOITE */
.clima-card.noite {
  background: linear-gradient(135deg, #141E30, #243B55);
}

/* ============================== EMPRESAS ============================== */
/* PLANOS */
.row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.col-4 {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* efeito flutuar */
.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* plano destaque */
.card.destaque {
  transform: scale(1.05);
  border: 3px solid #28a745;
  z-index: 2;
}

.card.destaque h2 {
  color: #28a745;
}

/* lista */
.card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* botões */
.btn-copy {
  margin-top: 10px;
  padding: 10px 18px;
  background: #198754;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.btn-copy:hover {
  background: #157347;
}

/* ============================== EMPRESAS E PLANOS ============================== */
.container-central {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 15px;
}

.titulo-pagina {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: #0d6efd;
}

.form-busca {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.form-busca input {
  width: 300px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-busca button {
  padding: 10px 18px;
  border: none;
  background: #0d6efd;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;

}


.empresa-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.empresa-card:hover {
  transform: translateY(-5px);
}

.empresa-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.empresa-card h3 {
  font-size: 18px;
  color: #333;
}

/* RESPONSIVO */
@media(max-width:900px) {
  .lista-empresas {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .lista-empresas {
    grid-template-columns: 1fr;
  }

  .form-busca {
    flex-direction: column;
    align-items: center;
  }

  .form-busca input {
    width: 100%;
  }
}

/* ============================== BOTÕES PLANOS ============================== */
.btn-plano {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
  text-align: center;
  min-width: 180px;
  border: none;
  cursor: pointer;
}

/* GRÁTIS */
.btn-plano.gratis {
  background: #198754;
  color: #fff;
}

.btn-plano.gratis:hover {
  background: #157347;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* OURO */
.btn-plano.ouro {
  background: linear-gradient(135deg, #ffc107, #ffb300);
  color: #000;
}

.btn-plano.ouro:hover {
  background: linear-gradient(135deg, #e0a800, #d39e00);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* PREMIUM */
.btn-plano.premium {
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
}

.btn-plano.premium:hover {
  background: linear-gradient(135deg, #0b5ed7, #06357a);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* ============================== PLANOS ============================== */
.planos-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.plano-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s;
}

.plano-card:hover {
  transform: translateY(-6px);
}

.plano-card h3 {
  margin-bottom: 15px;
  color: #0d6efd;
}

.plano-preco {
  font-size: 28px;
  font-weight: bold;
  margin: 15px 0;
}



/* RESPONSIVO */
@media(max-width:900px) {
  .planos-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .planos-container {
    grid-template-columns: 1fr;
  }
}

.categoria-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: 0.2s;
}

.categoria-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.categoria-card i {
  font-size: 30px;
  color: #0d6efd;
  display: block;
  margin-bottom: 10px;
}
.categoria-card span {
  font-weight: bold;
  display: block;
}

.categoria-card small {
  color: #666;
}


/* =============================== MAPA HOME ================================ */
.mapa-home {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.mapa-home h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* =============================== CATEGORIAS HOME ================================ */
.categorias-home {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.grid-categorias {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

#mapaEmpresas {
  height: 400px;
  border-radius: 10px;
}

/* =============================== FARMACIA PLANTAO ================================ */
.farmacia-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.farmacia-logo img {
  width: 120px;
  height: 80px;
  object-fit: contain;
}

.farmacia-info h3 {
  margin: 0 0 5px 0;
}

.farmacia-info p {
  margin: 3px 0;
}

.acoes-farmacia {
  margin-top: 8px;
  display: flex;
  gap: 10px;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.btn-mapa {
  background: #0d6efd;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}
@media(max-width:480px){

    .acoes-farmacia{
        flex-direction:column;
    }

    .btn-farmacia{
        width:100%;
    }
}

.agro-grid {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.agro-item {
  font-size: 18px;
  background: #f7f7f7;
  padding: 12px 20px;
  border-radius: 8px;
}

.moedas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.moeda-item {
  background: #f7f7f7;
  padding: 10px;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
}

.ticker-moedas {
  width: 100%;
  background: #f1f1f1;
  overflow: hidden;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  padding: 8px 0;
}

.ticker-item {
  display: inline-block;
  margin-right: 40px;
  font-size: 14px;
  color: #333;
}
/* animação correta */
@keyframes tickerMoedas {

  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }

}

@keyframes ticker {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =============================== maps empresas ================================ */
.lista-empresas{
margin-top:40px;
}

.grid-empresas{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.logo-empresa{
width:80px;
height:80px;
object-fit:contain;
margin-bottom:10px;
}

.btn-ver{
display:inline-block;
margin-top:10px;
padding:6px 12px;
background:#0d6efd;
color:#fff;
border-radius:6px;
text-decoration:none;
font-size:14px;
}

@media(max-width:900px){
.grid-empresas{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:500px){
.grid-empresas{
grid-template-columns:1fr;
}
}

/* ================================
SLIDER PROMOÇÕES
================================ */
.slider-promocoes{
background:#f3f5f9;
padding:50px 0;
text-align:center;
}

.slider-promocoes h2{
font-size:28px;
margin-bottom:35px;
color:#333;
}

.promo-carousel{
position:relative;
max-width:1200px;
margin:auto;
}

.promo-viewport{
overflow:hidden;
}

.slider-track{
display:flex;
gap:20px;
transition:transform .4s ease;
}
.promo-prev,
.promo-next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#fff;
border:none;
width:40px;
height:40px;
border-radius:50%;
cursor:pointer;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
z-index:10;
}

.promo-prev{ left:-20px; }
.promo-next{ right:-20px; }

/* TABLET */

@media(max-width:1000px){

.promo-card{
flex:0 0 calc(50% - 10px);
}

}

/* MOBILE */

@media(max-width:768px){

.promo-card{
flex:0 0 100%;
}

.promo-img{
height:200px;
object-fit:contain;
}

}
.btn-promo{
display:inline-block;
background:#1f6de2;
color:#fff;
padding:10px 20px;
border-radius:8px;
text-decoration:none;
font-size:14px;
font-weight:600;
margin-top:10px;
transition:0.2s;
}

.btn-promo:hover{
background:#1557c0;
}
@media(max-width:768px){

.btn-promo{
width:100%;
display:block;
}

}
.preco {
  font-size: 28px;
  font-weight: 900;
  color: #ff0000;
  margin: 10px 0;

  text-shadow:
    0 2px 0 #fff,
    0 3px 5px rgba(0, 0, 0, 0.25);
}
/* EMPRESA */

.empresa-promo {
  font-size: 13px;
  color: #777;
  display: block;
  margin-bottom: 4px;
}

/* TITULO */

.promo-card h3 {
  font-size: 18px;
  color: #333;
  margin: 6px 0;
  min-height: 45px;
}

/* PREÇO */

.preco {
  font-size: 28px;
  font-weight: 900;
  color: #ff0000;
  margin-bottom: 10px;

  text-shadow:
    0 2px 0 #fff,
    0 3px 6px rgba(0, 0, 0, 0.25);
}

/* BOTÃO */


/* BADGE */

.badge-promocao,
.badge-desconto {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
}

.badge-promocao {
  background: #ffa500;
}

.badge-desconto {
  background: #e60023;
}

/* CONTADOR */

.contador {
  margin-top: 6px;
  font-size: 13px;
  color: #555;
}

@media(max-width:1000px) {

  .promo-card {
    flex: 0 0 calc(50% - 10px);
  }

}

@media(max-width:768px) {

  .promo-card {
    flex: 0 0 100%;
  }

  .promo-img {
    height: 200px;
  }

}
.botoes-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 12px;
}

/* botão comprar */

.btn-comprar {
  background: #1f6de2;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-comprar:hover {
  background: #174fb3;
}

/* link detalhes */

.link-detalhes {
  color: #1f6de2;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.link-detalhes:hover {
  text-decoration: underline;
}
@media(max-width:768px) {

  .botoes-promo {
    flex-direction: column;
    gap: 8px;
  }

  .btn-comprar {
    width: 100%;
  }

}

.container-promocao{
max-width:950px;
margin:auto;
padding:40px 20px;
}

.promo-detalhe{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:start;
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.promo-img-box{
max-width:420px;
width:100%;
}

.promo-img-grande{
width:100%;
height:420px;
object-fit:cover;
border-radius:10px;
}

.promo-info h1{
margin-top:0;
font-size:28px;
}

.empresa{
display:block;
color:#777;
margin-bottom:10px;
}

.preco{
font-size:32px;
color:#d60000;
font-weight:bold;
text-shadow:0 2px 4px rgba(0,0,0,0.2);
margin:15px 0;
}

.variacao{
margin-top:20px;
}

.opcoes{
margin-top:8px;
}

.opcao{
display:inline-block;
padding:8px 14px;
border:1px solid #ccc;
border-radius:6px;
margin-right:6px;
margin-top:6px;
cursor:pointer;
background:#fff;
transition:0.2s;
}

.opcao:hover{
border-color:#0d6efd;
}

.opcao.selecionado{
background:#0d6efd;
color:#fff;
border-color:#0d6efd;
}

.acoes-produto{
margin-top:25px;
display:flex;
gap:15px;
}

.btn-comprar{
background:#25D366;
color:#fff;
padding:14px 25px;
border:none;
border-radius:8px;
cursor:pointer;
font-size:16px;
}

.btn-loja{
background:#0d6efd;
color:#fff;
padding:14px 25px;
border-radius:8px;
text-decoration:none;
font-size:16px;
}

/* celular */

@media(max-width:768px){

.promo-detalhe{
grid-template-columns:1fr;
}

}

.promocoes-loja{
margin-bottom:40px;
max-width:900px;
margin-left:auto;
margin-right:auto;
}

.grid-promocoes{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
margin-top:20px;
}

.produto-img{
margin: 12px;
	
}
@media (max-width:768px){

.produto-img{
    height:240px;
}

}

.promo-card{
width:250px;
background:#fff;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
padding:5px;
text-align:center;
}

.promo-img{
width:90%;
height:270px;
border-radius:8px;
margin-bottom:20px;
}
.promo-card button{
border-radius:8px;
margin-bottom:5px;
}
.promo-card h3{
font-size: 18px;
font-weight: bold;
color: #2e7d32;
margin: 1px 0;
}

.promo-card p{
font-size: 20px;
font-weight: bold;
color:#e60023;
margin: 2px 0;
}

.btn-ver-promo{
display:block;
background:#ff3c00;
color:#fff;
padding:5px;
border-radius:6px;
text-decoration:none;
}
.carrinho-flutuante {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #28a745;
    color: #fff;
    font-size: 22px;
    padding: 15px 18px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

.carrinho-flutuante:hover {
    transform: scale(1.1);
}

.carrinho-flutuante span {
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 3px 7px;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -5px;
}
/* botão comprar promoção da home */
.btn-comprar1{
    display:flex;
    align-items:center;
    justify-content:center;

    background:#25D366;
    color:#fff !important;

    padding:12px;
    border-radius:10px;
    font-weight:bold;
    text-decoration:none;

    width:100%;
    margin-top:10px;

    transition:0.2s;
}

/* HOVER */
.btn-comprar1:hover{
    background:#1ebe5d;
    color:#fff !important;
    text-decoration:none;
}