@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bg-dark:   #000000;
    --bg-light:  #181818;
    --card-bg:   #1e1e1e;
    --text:      #eee3be;
    --accent:    rgb(210, 25, 68);
    --accent-rgb: 209,24,67;
  }
  body {
    font-family: 'Kanit', sans-serif;
    background: linear-gradient(21deg, var(--bg-dark), var(--bg-light));
    color: var(--text);
    min-height: 100vh;
  }
  .flavor-list-section {
    padding: 2rem 1rem 6rem; /* espaço pra tab bar */
  }
  
  .section-title {
    color: var(--text);
    font-size: 2.4rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: left;
  }
  
  .flavor-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .flavor-list li {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    transition: background 0.2s ease;
  }
  
  .flavor-list li:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .accent {
    color: var(--accent); 
    font-weight: 600;
  }
  
  .description {
    color: var(--text);
    font-weight: 200;
    font-style: italic;
  }
  .burn-icon {
    height: 1rem; /* ou o tamanho que tu preferir */
    width: auto;
    vertical-align: left;
    margin-left: auto;
    transform: translateY(0.1rem); /* sobe ou desce finamente */
  }
  .price {
    color: var(--accent);
    font-weight: 600;
    margin-left: 1rem;
    font-size: 0.9rem;
  }
  
  .badge {
    background-color: var(--accent);
    color: var(--bg-color);
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-left: 0.5rem;
  }

  .drink-section h3 {
    padding-bottom: 1.5rem; /* ou mais, tipo 1.5rem, se quiser mais espaço */
    padding-top: 1rem;
  }

  .wine-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .wine-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
  }
  
  .wine-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    flex-grow: 0;
  }

  .wine-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .wine-name {
    font-weight: 600;
    color: var(--texto-normal);
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  
  .flag-icon {
    margin-right: 0.4rem;
  }
  
  .description {
    font-style: italic;
    color: var(--texto-normal);
    margin-bottom: 0.2rem;
  }
  
  .wine-price {
    font-weight: bold;
  }

  @keyframes fadeSlideUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .wine-item {
    animation: fadeSlideUp 0.9s ease forwards;
    opacity: 0; /* inicia invisível */
  }

  @keyframes fadeSlideUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-fadeSlideUp {
    animation: fadeSlideUp 0.4s ease forwards;
  }

.wine-section {

  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

  /* —— LAYOUT BASE (desktop ≥ 1280px) —— */
@media (min-width: 1280px) {
  :root {
    --container-max: 1440px;
    --gutter: 24px;
    --radius-2xl: 20px;
  }

  .container,
  .content-wrapper,
  main {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: calc(var(--gutter) * 1.5);
  }

  /* Tipografia sobe um degrau no desktop */
  h1, .h1 { font-size: clamp(28px, 2.2vw, 40px); }
  h2, .h2 { font-size: clamp(22px, 1.6vw, 30px); }
  h3, .h3 { font-size: clamp(18px, 1.2vw, 24px); }
  .text-normal { font-size: clamp(14px, .95vw, 18px); }

  /* Cartões ganham sombra e raio maiores */
  .card, .category-card, .story-card {
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    backdrop-filter: blur(8px);
  }
}  
  
.section-divider {
  border: none;
  height: 1px;
  margin: 15px auto;
  max-width: 1440px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(210, 25, 68),
    transparent
  );
}
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: linear-gradient(21deg, var(--bg-dark), var(--bg-light)) !important;
}

/* mata qualquer fundo branco herdado */
iframe, .iframe, #preview-body, #preview-html {
  background: linear-gradient(21deg, var(--bg-dark), var(--bg-light)) !important;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: linear-gradient(21deg, var(--bg-dark), var(--bg-light)) !important;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
.title-navbar {
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0rem 1rem;
}
.section-title-navbar {
  font-weight: bold;
  color: var(--accent);
  font-size: 2.4rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  text-align: left;
}

/* força o conteúdo principal a ter sua própria camada */
main, .collection-section, .collection-grid {
  will-change: transform;
  transform: translateZ(0);
}
