* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #333;
}

main {
  flex: 1;
}

/* CONTAINER PRINCIPAL */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header.claro {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* LOGO */
.logo {
  height: 70px;
  width: auto;
  display: block;
}

/* MENU */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-left: 0;
}

nav a {
  text-decoration: none;
  color: #800028;
  font-weight: bold;
  font-size: 25px;
  font-family: 'Chau Philomene One', serif;
}

.nav-link {
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #800028;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;          
  height: 3px;          
  width: 0;
  background: #800028;
  transition: width 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* BUSCA */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.search-box form {
  position: relative;
}

.search-box input[type="text"] {
  padding: 8px 40px 8px 12px;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 14px;
  width: 200px;
  transition: 0.3s ease;
}

.search-box button {
  position: absolute;
  right: 10px;
  top: 10%;
  transform: translateY(-30%);
  background: none;
  border: none;
  font-size: 16px;
  color: #800028;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BANNER CAROUSEL */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  position: relative;
  height: auto;
}

.carousel img {
  width: 100%;
  height: auto;
  display: none;
  transition: opacity 0.5s ease;
}

.carousel img.active {
  display: block;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-controls button {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 24px;
  padding: 8px 15px;
  cursor: pointer;
  pointer-events: all;
  transition: background-color 0.3s;
  border-radius: 50%;
}

.carousel-controls button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}


/* CATEGORIAS */
.categorias {
  padding: 40px 20px;
  text-align: center;
}

.icones-categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.categoria-item {
  text-decoration: none; /* remove o sublinhado */
  color: inherit;  
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.icon-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #80002810;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.icon-circle img {
  width: 380px; 
  margin-top: 30px;           
}

.categoria-item p{
   font-size: 20px;
   transition: transform 0.2s ease;
   will-change: transform;
   font-family: 'Chau Philomene One', serif;
   
}


.categoria-item:hover{
  transform: scale(1.1) translateY(-4px);
}





 /* PRODUTOS */
.produtos {
  padding: 40px 20px;
  text-align: center;
}

.lista-produtos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.produto {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  width: 180px;
}

.produto h3 {
  min-height: 48px; /* garante espaço fixo para os nomes */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Chau Philomene One', serif;
}

.produto img {
  width: 100%;
  border-radius: 8px;
}

/* BOTÃO DE ADICIONAR UNIDADE */
.acao-produto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.quantidade-input {
  width: 48px;
  height: 34px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 10px;
}

/* SESSÃO COMBINA COM */
.combina-com {
  padding: 60px 20px;
  text-align: center;
  background-color: #fdfdfd;
}


.combina-com .secao-titulo p {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.combina-com .linha {
  width: 40px;
  height: 3px;
  background-color: #800028;
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

.combina-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card-combina {
  position: relative;
  width: 220px;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.card-combina:hover {
  transform: scale(1.03);
}

.card-combina img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-combina .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(128, 0, 40, 0.85);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Depoimentos */

.depoimentos {
  padding: 60px 20px;
  text-align: center;
}


.depoimentos p {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
  margin-top: 10px;
}

.depoimentos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.depoimento {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.depoimento img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #800028;
}

.depoimento h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.depoimento p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}








/* BOTÃO de comprar */
button {
  background-color: #800028;
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

/* FOOTER */
footer {
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
}

footer nav {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

footer nav a {
  color: #800028;
  text-decoration: none;
  font-weight: 600;
}


/* PERSONALIZAÇÃO DO TITULO */
.secao-titulo {
  text-align: center;
  margin-bottom: 20px;
  color: #800028;
  font-family: 'Chau Philomene One', serif;
}

.secao-titulo .linha {
  width: 60px;
  height: 3px;
  background-color: #800028;
  margin: 8px auto 0;
  border-radius: 5px;
}

/* PAGINA DE VINHOS */
/* Banner vinho */
.vinho-container {
  width: 100%;
}

.vinho-banner {
  width: 100%;
  max-width: 100%;
  height: auto; /* Deixe a altura fluir com base no conteúdo da imagem */
  overflow: hidden;
}

.vinho-banner img {
  width: 100%;
  height: auto; /* Mantém proporção original da imagem */
  display: block;
}

/* SECAO-TITULO DOS VINHOS */

.secao-titulo-vinho {
  text-align: left;
  margin-bottom: 20px;
  color: #800028;
  font-family: 'Chau Philomene One', serif;
}

.secao-titulo-vinho .linha-t {
  width: 35px; /* Curta — para "Tintos" */
  height: 3px;
  background-color: #800028;
  margin: 4px 12px;
  border-radius: 5px;
}

.secao-titulo-vinho .linha-b {
  width: 40px; /* Curta — para "Brancos" */
  height: 3px;
  background-color: #800028;
  margin: 4px 16px;
  border-radius: 5px;
}

.secao-titulo-vinho .linha-long-e {
  width: 70px; /* exlusivos */
  height: 3px;
  background-color: #800028;
  margin: 4px 20px;
  border-radius: 5px;
}



.secao-titulo-vinho .linha-short {
  width: 25px; /* Muito curta — ideal para "Kits" */
  height: 3px;
  background-color: #800028;
  margin: 4px 7px;
  border-radius: 5px;
}

.secao-titulo-vinho .linha-long {
  width: 70px; /* Longa — ideal para "Espumantes", "Sobremesas", etc. */
  height: 3px;
  background-color: #800028;
  margin: 4px 30px;
  border-radius: 5px;
}

/* lista-produtos para os vinhos */ 
.lista-produtos-vinhos {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

/* Página Ofertas */
/* Título da seção de ofertas */
.subtitulo-ofertas {
  font-size: 18px;
  margin-top: 8px;
  color: #555;
}

.secao-titulo-oferta {
  text-align: left;
  margin-bottom: 20px;
  color: #800028;
  font-family: 'Chau Philomene One', serif;
}




/* Caixa em destaque para ofertas */
.produto.oferta {
  border: 2px solid #c62828;
  background-color: #fff8f8;
  position: relative;
}

/* Selo de desconto */
.selo-desconto {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #c62828;
  color: white;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

/* Preço com desconto */
.produto.oferta p s {
  color: #888;
  font-size: 14px;
}

.secao-titulo-oferta .linha-oferta {
  width: 90px; /* linha pra oferta */
  height: 3px;
  background-color: #800028;
  margin: 4px 90px;
  border-radius: 5px;
}



/* Página de Sobre */


 .timeline {
  padding: 50px 20px;
  text-align: center;
}


.timeline p {
  font-family: 'Chau Philomene One', serif;
}

.timeline-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.evento {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 180px;
  transition: transform 0.3s ease;
}

.evento:hover {
  transform: scale(1.05);
}

.evento .ano {
  display: inline-block;
  background-color: #800028;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.mais-sobre {
  padding: 60px 20px;
}

.mais-sobre p {
  font-family: 'Chau Philomene One', serif;
  font-size: 20px;
}


.mais-sobre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.mais-sobre .box {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.mais-sobre .box:hover {
  transform: translateY(-5px);
}

.mais-sobre .box h3 {
  color: #800028;
  font-size: 25px;
  margin-bottom: 10px;
  font-family: 'Chau Philomene One', serif;
}

.mais-historia {
  padding: 60px 20px;
  background-color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.mais-historia-texto p {
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
  font-family: 'Chau Philomene One', serif;
}



/* PASSO A PASSO */
.experiencia-compra {
  padding: 60px 30px;
  margin-top: 40px;
}


.container-experiencia {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px
}

.passo-a-passo {
  flex: 1;
  min-width: 300px;
  font-family: 'Chau Philomene One', serif;
}

.passo-a-passo ol {
  counter-reset: etapa;
  list-style: none;
  padding-left: 0;
}

.passo-a-passo li {
  margin-bottom: 24px;
  position: relative;
  padding-left: 36px;
  color: #333;
  font-size: 20px;
  line-height: 2.0;
}

.passo-a-passo li strong {
  font-size: 22px;
}

.passo-a-passo li::before {
  counter-increment: etapa;
  content: counter(etapa);
  position: absolute;
  left: 0;
  top: 0;
  background: #800028;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  top: 8px;
}

.info-lateral {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Vídeo */
.video-box h3 {
  font-family: 'Chau Philomene One', serif;
  color: #800028;
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
}

.video-box p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
  color: #444;
  font-family: 'Chau Philomene One', serif;
}

/* Tabela */
.tabela-frete-elegante {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: 'Chau Philomene One', serif;
}

.tabela-frete-elegante h3 {
  color: #800028;
  font-family: 'Chau Philomene One', serif;
  font-size: 22px;
  margin-bottom: 16px;
}

.tabela-frete-elegante table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: #333;
}

.tabela-frete-elegante thead {
  background-color: #800028;
  color: white;
}

.tabela-frete-elegante th,
.tabela-frete-elegante td {
  padding: 12px;
  border: 1px solid #ddd;
}

.tabela-frete-elegante tbody tr:nth-child(even) {
  background-color: #fff4f7;
}

.aviso-frete {
  color: #800028;
  font-weight: bold;
  margin-top: 10px;
  font-size: 14px;
}


/* pagina de contato */
/* Info de Contato */
.secao-titulo-contato {
  text-align: center;
  margin: 60px 0 30px;
  color: #800028;
  font-family: 'Chau Philomene One', serif;
}

.secao-titulo-contato .linha {
  width: 60px;
  height: 3px;
  background-color: #800028;
  margin: 10px auto 0;
  border-radius: 5px;
}
.secao-titulo-contato p {
  margin-top: 10px;
  font-size: 20px;
  color: #444;
}

.contato-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.formulario-contato {
  background-color: #fff6f8;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Chau Philomene One', serif;
  flex: 1.2;
  min-width: 320px;
}

.formulario-contato form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formulario-contato label {
  font-size: 17px;
  color: #800028;
  font-weight: bold;
  margin-bottom: 6px;
}

.formulario-contato input,
.formulario-contato textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: 'Chau Philomene One', serif;
}

.formulario-contato button {
  width: 100%;
  background-color: #800028;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.formulario-contato button:hover {
  background-color: #a20035;
}

.info-contato-box {
  background-color: #fff6f8;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Chau Philomene One', serif;
  flex: 1;
  min-width: 280px;
}

.info-contato-box h3 {
  font-size: 22px;
  color: #800028;
  margin-bottom: 10px;
}

.info-contato-box p {
  margin: 50px 0;
  font-size: 20px;
  color: #333;
}

.info-contato-box p span {
  font-weight: bold;
  color: #800028;
}

.info-contato-box .whatsapp-link {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.info-contato-box .whatsapp-link:hover {
  background-color: #1ebe57;
}

/*padronizando todas as fontes */

.secao-titulo h2,
.secao-titulo-vinho h2,
.secao-titulo-oferta h2,
.secao-titulo-contato h2 {
  font-size: 28px;
  font-family: 'Chau Philomene One', serif;
  color: #800028;
}



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

  /* HEADER */
  header .container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .logo {
    height: 60px;
  }

  /* NAVEGAÇÃO */
  nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  nav a {
    font-size: 25px;
  }

  /* BUSCA */
  .search-box {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .search-box input[type="text"] {
    width: 100%;
    max-width: 300px;
    padding: 10px 16px;
    font-size: 16px;
  }

  .search-box button {
    right: 12px;
    top: 25%;
    transform: translateY(-50%);
    font-size: 17px;
  }

  /* CATEGORIAS */
  .icones-categorias {
    gap: 16px;
  }

  .categoria-item p {
    font-size: 18px;
  }

  .icon-circle {
    width: 100px;
    height: 100px;
  }

  .icon-circle img {
    width: 250px;
    margin-top: 20px;
  }

  /* PRODUTOS */
  .lista-produtos {
    gap: 20px;
  }

  .produto {
    width: 160px;
    padding: 16px;
  }

  .produto h3 {
    font-size: 16px;
  }

  .quantidade-input {
    width: 42px;
    height: 30px;
    font-size: 14px;
  }

  /* COMBINA COM */
  .combina-cards {
    gap: 16px;
  }

  .card-combina {
    width: 160px;
    height: 220px;
  }

  .card-combina .overlay {
    font-size: 16px;
    padding: 10px 0;
  }

  /* DEPOIMENTOS */
  .depoimento {
    width: 90%;
    padding: 16px;
  }

  .depoimento p {
    font-size: 14px;
  }

  /* FOOTER */
  footer {
    font-size: 13px;
  }

  footer nav {
    flex-direction: column;
    gap: 6px;
  }

  /* CAROUSEL SETAS */
  .carousel-controls button {
    font-size: 20px;
    padding: 6px 10px;
  }

  /* TÍTULOS */
  .secao-titulo h2 {
    font-size: 24px;
  }

  .secao-titulo .linha {
    width: 40px;
    height: 2px;
  }
}





@media (min-width: 1800px) {

  /* Espaço mais amplo entre os itens do menu */
  nav ul {
    gap: 40px;
  }

  /* Aumenta o espaçamento geral das seções */
  .categorias,
  .produtos,
  .combina-com,
  .depoimentos {
    padding: 60px 40px;
  }

  /* Produtos mais largos e equilibrados */
  .produto {
    width: 220px;
  }

  /* Cards da seção "Combina com" mais espaçados */
  .combina-cards {
    justify-content: space-between;
    gap: 40px;
  }

  /* Categorias mais respiradas */
  .icones-categorias {
    gap: 40px;
  }

  /* Busca mais larga */
  .search-box input[type="text"] {
    width: 250px;
  }

  /* Títulos com tamanho levemente maior */
  .secao-titulo h2 {
    font-size: 32px;
  }

  /* Footer mais espaçoso */
  footer {
    padding: 40px 20px;
    font-size: 15px;
  }
}
