@charset "UTF-8";
/* ==========================================================================
   1. VARIÁVEIS E CONFIGURAÇÕES GERAIS
   ========================================================================== */
:root {
  /* Paleta de Cores */
  --cn-wine: #3f0e12;
  --cn-wine-dark: #29080b;
  --cn-yellow: #f4b643;
  --cn-orange: #e68e00;
  --cn-orange-hover: #cc7e00;
  --cn-beige-bg: #fbf9f4;
  --cn-green: #25d366;
  --cn-green-hover: #20bd5a;
  --cn-white: #ffffff;
  --cn-gray-light: #f5f5f5;
  --cn-gray-border: #e1e1e1;
  --cn-text-dark: #333333;
  --cn-text-gray: #666666;
  /* Tipografia */
  --font-primary: "Open Sans", sans-serif;
  /* Texto corrido */
  --font-heading: "Montserrat", sans-serif;
  /* Títulos e Botões */
  /* Espaçamento e Layout */
  --container-width: 1240px;
  --gutter: 15px;
  --border-radius: 4px;
  --transition-speed: 0.3s;
}

/* ==========================================================================
   2. RESET E BASE
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: var(--cn-gray-light);
  color: var(--cn-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  transition: color var(--transition-speed) ease;
  color: inherit;
}
a:hover, a:focus, a:active, a:visited {
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Tipografia Global */
h1,
h2,
h3,
h4,
h5,
h6,
button,
.btn {
  font-family: var(--font-heading);
}

/* Utilitários Flexbox */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-start {
  display: flex;
  align-items: flex-start;
}

/* Utilitários de Visibilidade */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* ==========================================================================
   3. CABEÇALHO (HEADER)
   ========================================================================== */
.cn-header {
  background-color: var(--cn-wine);
  color: var(--cn-white);
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 3.1 Topbar */
.cn-topbar {
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cn-topbar a {
  color: #ddd;
}

.cn-topbar a:hover {
  color: var(--cn-orange);
}

.sep {
  margin: 0 8px;
  color: #666;
}

/* 3.2 Mainbar (Logo, Busca, Ações) */
.cn-mainbar {
  padding: 25px 0;
}

.cn-logo img {
  max-width: 120px;
}

/* Ajuste conforme proporção da logo real */
/* Busca */
.cn-search-wrapper {
  flex-grow: 1;
  margin: 0 40px;
  position: relative;
  display: flex;
  justify-content: center;
}

.cn-search-form {
  display: flex;
  position: relative;
  width: 480px;
}

.search-field {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border-radius: var(--border-radius);
  border: none;
  font-size: 14px;
  outline: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
  font-family: var(--font-primary);
}

.search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* Ações (Login e Carrinho) */
.cn-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.cn-account {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cn-white);
}

.cn-account .text-box {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.3;
}

.cn-account strong {
  font-size: 13px;
  font-weight: 700;
}

.cn-cart {
  position: relative;
  color: var(--cn-white);
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--cn-orange);
  color: var(--cn-white);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 50%;
  border: 2px solid var(--cn-wine);
  min-width: 18px;
  text-align: center;
}

/* 3.3 Navbar (Menu Principal) */
.cn-navbar {
  background-color: var(--cn-wine-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cn-menu {
  display: flex;
  justify-content: space-between;
  padding: 0;
  width: 520px;
  margin: 0 auto;
}

.cn-menu li a {
  display: block;
  padding: 15px 10px;
  color: var(--cn-white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
}

.cn-menu li a:hover {
  color: var(--cn-orange);
  border-bottom-color: var(--cn-orange);
}

/* Botões Especiais no Menu */
.btn-outline a {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 5px 18px !important;
  margin-top: 7px;
  /* Alinhamento vertical fino */
  border-bottom: none !important;
  /* Remove borda hover padrão */
  transition: all var(--transition-speed);
}

.btn-outline a:hover {
  background-color: var(--cn-white);
  color: var(--cn-wine) !important;
  border-color: var(--cn-white);
}

/* ==========================================================================
   5. RODAPÉ (FOOTER)
   ========================================================================== */
.cn-newsletter {
  /* Cor de fundo base sólida */
  background-color: var(--cn-yellow);
  /* Gradiente "Tom sobre Tom" para a textura */
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.02) 0px, rgba(0, 0, 0, 0.02) 15px, transparent 15px, transparent 30px);
  /* Opcional: Efeito de fundo fixo ao rolar (Paralaxe sutil) */
  /* background-attachment: fixed; */
  color: var(--cn-wine);
  padding: 50px 0;
  margin-top: 40px;
}

/* Mantém o container centralizado */
.cn-newsletter .container {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.news-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.news-text h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.news-form-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cn-form-news {
  display: flex;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cn-form-news input {
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  width: 350px;
  font-family: var(--font-primary);
  font-size: 14px;
}

.cn-form-news button {
  background: var(--cn-wine);
  color: var(--cn-white);
  border: none;
  padding: 0 35px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.cn-form-news button:hover {
  background: var(--cn-wine-dark);
}

.news-form-container small {
  font-size: 11px;
  margin-top: 8px;
  color: var(--cn-wine-dark);
  opacity: 0.8;
}

/* 5.2 Rodapé Principal */
.cn-footer-main {
  background: var(--cn-beige-bg);
  color: var(--cn-text-dark);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.footer-grid {
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr 1fr;
  gap: 30px;
}

/* Placeholder Imagem Verde */
.footer-image-placeholder {
  width: 260px;
  margin-top: -140px;
}

.footer-image-placeholder img {
  width: 260px;
}

/* Colunas do Footer */
.f-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--cn-text-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.f-col ul li {
  margin-bottom: 12px;
}

.f-col ul li a {
  color: var(--cn-text-gray);
  font-size: 14px;
  font-family: var(--font-primary);
  display: block;
  /* Para o padding funcionar */
}

.f-col ul li a:hover {
  color: var(--cn-orange);
  padding-left: 5px;
}

/* Card de Contato */
.contact-card {
  background: var(--cn-white);
  padding: 15px;
  border: 1px solid var(--cn-gray-border);
  border-radius: 6px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 14px;
  color: #555;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.contact-card strong {
  color: var(--cn-text-dark);
  font-weight: 700;
  font-size: 15px;
  display: block;
  margin-top: 5px;
}

/* Botão Whatsapp */
.btn-whatsapp {
  display: block;
  background: var(--cn-green);
  color: var(--cn-white);
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
  transition: all var(--transition-speed);
}

.btn-whatsapp:hover {
  background: var(--cn-green-hover);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.pay-text {
  font-size: 14px;
  color: var(--cn-text-gray);
  font-family: var(--font-primary);
}

/* 5.3 Rodapé Inferior */
.cn-copyright {
  background: #eeeeee;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: #888;
  font-family: var(--font-primary);
  border-top: 1px solid #e0e0e0;
}

/* ==========================================================================
   6. RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 991px) {
  /* Visibilidade */
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  /* Layout Header Mobile */
  .cn-mainbar .container {
    justify-content: space-between;
  }
  .cn-logo img {
    max-height: 45px;
  }
  /* Menu Hambúrguer */
  .mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }
  .mobile-menu-btn .bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--cn-white);
    margin: 5px 0;
    border-radius: 2px;
  }
  /* Busca Mobile */
  .cn-mobile-search {
    padding: 10px 15px;
    background: var(--cn-wine-dark);
    margin-top: 10px;
  }
  .cn-mobile-search form {
    display: flex;
  }
  .cn-mobile-search input {
    width: 100%;
    padding: 10px;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border: none;
  }
  .cn-mobile-search button {
    background: var(--cn-orange);
    border: none;
    color: var(--cn-white);
    padding: 0 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
  }
  /* Footer Mobile */
  .cn-newsletter {
    text-align: center;
    padding: 30px 0;
  }
  .news-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .news-text h3 {
    font-size: 20px;
  }
  .news-form-container,
  .cn-form-news {
    width: 100%;
  }
  .cn-form-news input {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .f-col {
    text-align: center;
  }
  /* Reordenar para Mobile (Placeholder no topo) */
  .footer-image-placeholder {
    order: -1;
    min-height: 200px;
  }
  .contact-card {
    text-align: center;
  }
}
/* ==========================================================================
   7. DRAWER MENU (Mobile Slide-in)
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: var(--cn-white);
  z-index: 1000;
  transition: left var(--transition-speed) ease-in-out;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.active {
  left: 0;
}

.drawer-header {
  background: var(--cn-wine);
  color: var(--cn-white);
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.drawer-header button {
  background: none;
  border: none;
  color: var(--cn-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.drawer-list li {
  border-bottom: 1px solid var(--cn-gray-border);
}

.drawer-list li a {
  display: block;
  padding: 15px 20px;
  color: var(--cn-text-dark);
  font-weight: 600;
  font-size: 14px;
}

.drawer-list li a:hover {
  background-color: var(--cn-gray-light);
  color: var(--cn-orange);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  /* Efeito moderno */
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================= AGE GATE MODAL (CORRIGIDO) ================= */
.age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 10, 12, 0.98);
  /* Fundo bem escuro */
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 999999;
  /* Z-Index altíssimo para ficar acima de tudo */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Estado inicial: Escondido */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Classe ativa: Força a aparição */
.age-overlay.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
}

.age-box {
  background: #fff;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
  border-top: 5px solid var(--cn-orange);
  position: relative;
}

.age-logo img {
  max-height: 80px;
  margin: 0 auto 20px;
  display: block;
}

.age-box h2 {
  color: var(--cn-wine);
  margin-bottom: 15px;
  font-size: 22px;
}

.age-box p {
  color: #555;
  margin-bottom: 25px;
}

.age-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-age-yes {
  background: var(--cn-green);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.btn-age-no {
  background: transparent;
  border: 1px solid #ccc;
  color: #666;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
}

/* Remove margens e paddings padrão para garantir full width */
.hero-section.full-width-slider {
  width: 100%;
  overflow: hidden;
  /* Esconde os slides que estão fora da tela */
  position: relative;
  padding: 0;
  margin: 0;
}

.slider-wrapper {
  width: 100%;
  max-width: 100%;
  /* Garante que não respeite container global */
}

.slider-container {
  position: relative;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* Animação suave */
  width: 100%;
}

.slide {
  min-width: 100%;
  /* Ocupa 100% da largura da tela */
  box-sizing: border-box;
}

.banner-content {
  width: 100%;
  height: 100%;
}

.banner-content img {
  width: 100%;
  height: 500px;
  /* DEFINA A ALTURA DESEJADA AQUI */
  -o-object-fit: cover;
     object-fit: cover;
  /* Garante que a imagem cubra a área sem distorcer */
  display: block;
}

/* --- Botões de Navegação --- */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* --- Paginação (Bolinhas) --- */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
  .banner-content img {
    height: 300px;
    /* Altura menor para celulares */
  }
  .slider-btn {
    width: 30px;
    height: 30px;
  }
}
/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 60px 0;
  background-color: var(--cn-beige-bg);
  /* Fundo bege suave */
}

.faq-title {
  text-align: center;
  font-size: 28px;
  color: var(--cn-wine);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Linha decorativa abaixo do título */
.faq-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--cn-orange);
  margin: 10px auto 0;
  border-radius: 2px;
}

.faq-list {
  max-width: 800px;
  /* Limita a largura para leitura confortável */
  margin: 0 auto;
}

/* Mensagem de "Nenhuma pergunta" */
.faq-list > p {
  text-align: center;
  color: #777;
  font-style: italic;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px dashed #ccc;
}

/* --- ITEM DO FAQ --- */
.faq-item {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: #dcdcdc;
}

/* Estado Ativo (Aberto) */
.faq-item.active {
  border-color: var(--cn-wine);
  /* Borda fica vinho quando aberto */
  box-shadow: 0 5px 15px rgba(63, 14, 18, 0.1);
}

/* --- CABEÇALHO (Pergunta) --- */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #fff;
  transition: background 0.3s;
}

.faq-header span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: #444;
  padding-right: 20px;
}

.faq-item.active .faq-header span {
  color: var(--cn-wine);
  /* Cor muda quando ativo */
}

/* Ícone da seta */
.icon-box {
  color: var(--cn-orange);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.icon-box svg {
  width: 20px;
  height: 20px;
}

/* Gira a seta quando aberto */
.faq-item.active .icon-box {
  transform: rotate(180deg);
}

/* --- CORPO (Resposta) --- */
.faq-body {
  max-height: 0;
  /* Escondido por padrão */
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  /* Animação suave de slide */
  background-color: #fafafa;
  /* Fundo levemente diferente para a resposta */
}

.faq-body p {
  padding: 0 25px 25px;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ================= SECTION TITLE PREMIUM ================= */
.product-showcase {
  padding: 50px 0;
  /* Opcional: Se quiser um fundo levemente diferente para a seção inteira */
  background: #fff;
}

.section-title {
  font-family: var(--font-heading);
  /* Montserrat */
  font-size: 28px;
  font-weight: 800;
  /* Extra Bold para impacto */
  color: var(--cn-wine);
  /* Cor Vinho da marca */
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  /* Deixa as letras mais juntinhas (moderno) */
  margin-bottom: 45px;
  position: relative;
  /* Flexbox para as linhas laterais */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  /* Espaço entre o texto e as linhas */
}

/* Linhas Decorativas Laterais */
.section-title::before,
.section-title::after {
  content: "";
  display: block;
  height: 3px;
  /* Espessura da linha */
  width: 60px;
  /* Largura da linha */
  background-color: var(--cn-orange);
  /* Cor Laranja */
  border-radius: 2px;
  opacity: 0.7;
}

/* Efeito de Degradê nas linhas (Opcional - dá um toque de luxo) */
.section-title::before {
  background: linear-gradient(to left, var(--cn-orange), transparent);
}

.section-title::after {
  background: linear-gradient(to right, var(--cn-orange), transparent);
}

/* Pequeno ícone ou detalhe abaixo do texto (via CSS) */
/* Isso cria uma setinha sutil apontando para os produtos */
.section-title span {
  position: relative;
  display: inline-block;
}

/* Responsividade */
@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
    gap: 10px;
    margin-bottom: 30px;
  }
  /* No celular, diminuímos as linhas para caber o texto */
  .section-title::before,
  .section-title::after {
    width: 30px;
  }
}
/* ================= SEÇÃO DE BANNERS ================= */
/* Espaçamento geral da seção */
.banner {
  padding: 30px 0;
  width: 100%;
  background: #fff;
}

/* Regras gerais para TODAS as imagens dentro dos banners */
.banner img {
  width: 100%;
  /* Garante que ocupe a largura do pai */
  height: auto;
  /* Mantém a proporção */
  display: block;
  /* Remove espaços estranhos abaixo da imagem */
  border-radius: 8px;
  /* Bordas arredondadas modernas */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  /* Sombra suave */
  transition: all 0.3s ease;
  /* Animação suave para o hover */
}

a.btn-buy {
  display: block; /* Garante que o link ocupe o espaço do botão */
  text-align: center;
  text-decoration: none;
}

.cart-action {
  padding: 0 !important;
}

/* Efeito ao passar o mouse (opcional, mas fica elegante) */
.banner img:hover {
  transform: translateY(-3px);
  /* Sobe levemente */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /* Sombra aumenta */
}

/* --- BANNER PRINCIPAL --- */
/* O primeiro .container já cuida do alinhamento e largura máxima.
   Não precisamos de CSS extra específico aqui, pois a img width: 100% resolve. */
/* --- ÁREA DOS MINI BANNERS (EMBAIXO) --- */
.container-2 {
  display: flex;
  /* Ativa o modo Flexbox */
  justify-content: space-between;
  /* Espalha os itens */
  gap: 20px;
  /* Espaço entre os dois banners */
  margin-top: 20px;
  /* Espaço entre o banner grandão e os pequenos */
}

.mini-banner {
  flex: 1;
  /* Faz com que ambos tenham exatamente 50% de largura */
  display: flex;
  /* Garante que a div abrace a imagem */
}

/* --- RESPONSIVIDADE (CELULAR) --- */
@media (max-width: 768px) {
  .container-2 {
    flex-direction: column;
    /* Empilha um embaixo do outro no celular */
    gap: 15px;
  }
}
/* ================= REDES SOCIAIS (VERTICAL) ================= */
.social-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-vertical a {
  display: flex;
  align-items: center;
  color: #666; /* Cor cinza do texto */
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-vertical a i {
  width: 24px; /* Largura fixa para alinhar texto */
  font-size: 16px;
  color: var(--cn-wine); /* Ícone cor Vinho */
  transition: color 0.3s ease;
}

.social-vertical a:hover {
  color: var(--cn-orange); /* Texto fica laranja no hover */
  padding-left: 5px; /* Leve movimento para a direita */
}

.social-vertical a:hover i {
  color: var(--cn-orange);
}

/* ================= BOTÃO WHATSAPP FIXO ================= */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 99999; /* Garante que fique acima de tudo */
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite; /* Animação de pulso */
}

.whatsapp-fixed:hover {
  background-color: #20bd5a;
  transform: scale(1.1);
  color: #fff;
}

/* Tooltip (Texto "Atendimento" que aparece ao passar o mouse) */
.tooltip-wa {
  position: absolute;
  right: 70px;
  background-color: #333;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: var(--font-primary);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.whatsapp-fixed:hover .tooltip-wa {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Animação de Pulso */
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/* Ajuste Mobile para o botão fixo */
@media (max-width: 768px) {
  .whatsapp-fixed {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
  .tooltip-wa {
    display: none;
  } /* Esconde tooltip no celular */
}
/* ================= AJUSTE DO GRID DO FOOTER ================= */
/* Como adicionamos uma coluna extra (Redes Sociais), ajustamos o grid */
.footer-grid {
  /* 5 colunas agora: Imagem | Sobre | Redes | Contato | Pagamento */
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
  gap: 20px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr; /* 1 coluna no mobile */
    text-align: center;
  }
  .social-vertical {
    align-items: center; /* Centraliza itens no mobile */
  }
}/*# sourceMappingURL=style.css.map */