/*
  Heineken Brasil — Design System
  Extraído do CSS real do heineken.com
*/

/* ─── CSS VARIABLES ─────────────────────────────────── */
:root {
  --hnk-black:        #000000;
  --hnk-green:        #13670b;
  --hnk-dark-green:   #005d1f;
  --hnk-mid-green:    #277816;
  --hnk-light-green:  #6ef70b;
  --hnk-orange:       #ed8b00;
  --hnk-red:          #ff0000;
  --hnk-white:        #ffffff;
  --hnk-gray:         #fafafa;
  --hnk-text:         #333333;
  --hnk-muted:        #646464;
  --hnk-border:       rgba(255,255,255,0.2);

  --primary-fonts:    "PT Sans", sans-serif;
  --secondary-fonts:  "HeinekenSerif18", "PT Sans", serif;
  --special-fonts:    "Heineken", "PT Sans", sans-serif;

  --wrapper-max:      1360px;
  --small-wrapper:    800px;
  --header-height:    70px;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; }
body { line-height: normal; margin: 0; overflow-x: hidden; padding: 0; font-family: var(--primary-fonts); }
ul, li { list-style: none; margin: 0; padding: 0; }
a { text-decoration: none; transition: color .25s ease-out; }
img { border: none; vertical-align: bottom; max-width: 100%; }
p { margin: 0; padding: 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.h1, h1 { font-family: var(--secondary-fonts); font-size: 4rem; font-weight: 700; line-height: 1; }
.h2, h2 { font-family: var(--secondary-fonts); font-size: 2.5rem; font-weight: 700; line-height: 1.1; }
.h3, h3 { font-family: var(--secondary-fonts); font-size: 1.75rem; font-weight: 700; }
.h4, h4 { font-family: var(--primary-fonts); font-size: 1.25rem; font-weight: 700; }

/* ─── WRAPPERS ───────────────────────────────────────── */
.wrapper      { margin: 0 auto; padding: 0 20px; width: 100%; max-width: var(--wrapper-max); }
.small-wrapper{ margin: 0 auto; padding: 0 20px; width: 100%; max-width: var(--small-wrapper); }
@media (min-width: 768px) {
  .wrapper, .small-wrapper { padding: 0 40px; }
}

/* ─── MAIN ───────────────────────────────────────────── */
main { min-height: 80vh; padding-top: var(--header-height); position: relative; }

/* ─── HEADER ─────────────────────────────────────────── */
.header {
  background-color: var(--hnk-black);
  height: var(--header-height);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header .header-wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 20px;
}
.header .header-logo img { height: 50px; width: auto; }
.header .header-logo { display: inline-block; padding-right: 40px; }

/* Hamburger */
.header .hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 22px;
  justify-content: center;
  padding: 0;
  width: 29px;
}
.header .hamburger .slice {
  background-color: var(--hnk-white);
  display: block;
  height: 1px;
  width: 100%;
}

/* Desktop nav */
@media (min-width: 1025px) {
  .header .hamburger { display: none; }
  .mobile-close { display: none !important; }

  .header .header-wrapper { padding: 0; }
  .header .header-logo { padding: 0 70px 0 20px; align-self: center; }

  .header .header-nav {
    background: transparent !important;
    display: flex !important;
    flex: 1;
    flex-direction: row !important;
    height: 100% !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 !important;
    position: static !important;
    width: auto !important;
    overflow: initial !important;
  }
  .header .header-nav .nav-outline {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    height: 100%;
  }
  .header .header-nav nav ul {
    align-items: center;
    display: flex !important;
    flex-direction: row !important;
    height: 100%;
    gap: 0 !important;
    padding-top: 0 !important;
  }
  .header .header-nav nav ul li { margin-right: 22px; }
  .header .header-nav nav ul li:last-child { margin-right: 0; }
  .header .header-nav nav ul li a {
    color: var(--hnk-white) !important;
    font-family: var(--primary-fonts);
    font-size: 13px !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: .3px !important;
    transition: color .3s ease-in-out;
  }
  .header .header-nav nav ul li a:hover { color: var(--hnk-red) !important; }
  .header .header-nav nav ul li a.active { color: var(--hnk-red) !important; }

  /* Country selector */
  .header-country-btn {
    align-items: center;
    border-left: 1px solid rgba(255,255,255,.2);
    color: var(--hnk-white);
    cursor: pointer;
    display: flex;
    font-size: 14px;
    gap: 8px;
    height: var(--header-height);
    padding: 0 20px;
    transition: background .2s;
  }
  .header-country-btn:hover { background: rgba(255,255,255,.05); }
  .header-country-btn .flag { height: 20px; width: 20px; border-radius: 50%; object-fit: cover; }
}

/* Mobile nav */
.header .header-nav {
  background-color: var(--hnk-black);
  display: none;
  height: 100vh;
  left: 0;
  overflow-y: auto;
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  flex-direction: column;
}
.header .header-nav.open { display: flex; }
.mobile-close {
  background: none;
  border: none;
  color: var(--hnk-white);
  cursor: pointer;
  font-size: 28px;
  position: absolute;
  right: 20px;
  top: 20px;
}
.header .header-nav nav ul { flex-direction: column; gap: 20px; padding-top: 60px; }
.header .header-nav nav ul li a { color: var(--hnk-white); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ─── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb {
  background: transparent;
  font-size: 12px;
  padding: 14px 0;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--hnk-white); text-decoration: underline; }
.breadcrumb .sep { color: rgba(255,255,255,.4); margin: 0 6px; }
.breadcrumb .current { color: var(--hnk-white); font-weight: 700; }

/* ─── HERO BANNER ────────────────────────────────────── */
.hero-banner {
  background: radial-gradient(closest-side at 50% 50%, var(--hnk-mid-green) 0, var(--hnk-dark-green) 100%);
  color: var(--hnk-white);
  overflow: hidden;
  padding: 0;
  position: relative;
}
.hero-banner .hero-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 420px;
  padding: 60px 0;
}
.hero-banner .hero-content { flex: 1; min-width: 280px; padding: 20px 0; }
.hero-banner .hero-eyebrow {
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.hero-banner h1 {
  color: var(--hnk-white);
  font-family: var(--secondary-fonts);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}
.hero-banner .tagline {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 420px;
  opacity: .9;
}
.hero-banner .hero-image {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
  width: 380px;
  max-width: 100%;
}
.hero-banner .hero-image img {
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.4));
  height: auto;
  max-height: 380px;
  width: auto;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  cursor: pointer;
  display: inline-block;
  font-family: var(--primary-fonts);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 14px 32px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn-primary { background-color: var(--hnk-green); border: 2px solid var(--hnk-green); color: var(--hnk-white); }
.btn-primary:hover { background-color: var(--hnk-dark-green); border-color: var(--hnk-dark-green); color: var(--hnk-white); }
.btn-outline { background-color: transparent; border: 2px solid var(--hnk-white); color: var(--hnk-white); }
.btn-outline:hover { background-color: rgba(255,255,255,.1); color: var(--hnk-white); }
.btn-outline-green { background: transparent; border: 2px solid var(--hnk-green); color: var(--hnk-green); }
.btn-outline-green:hover { background: var(--hnk-green); color: var(--hnk-white); }

/* ─── SECTION HEADERS ────────────────────────────────── */
.section-header { margin-bottom: 50px; }
.section-eyebrow {
  color: var(--hnk-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--secondary-fonts);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--hnk-text);
  margin-bottom: 20px;
}
.section-sep { background: var(--hnk-green); height: 3px; width: 56px; }

/* Content sections spacing */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.bg-white { background-color: var(--hnk-white); }
.bg-gray { background-color: var(--hnk-gray); }
.bg-green { background-color: var(--hnk-green); }
.bg-dark-green { background-color: var(--hnk-dark-green); }
.bg-black { background-color: var(--hnk-black); }

/* ─── PRODUCT CARDS ──────────────────────────────────── */
.product-card {
  background: var(--hnk-white);
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.product-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); transform: translateY(-4px); }
.product-card .card-img {
  align-items: center;
  background: #f8f8f8;
  display: flex;
  height: 220px;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.product-card .card-img img { max-height: 100%; object-fit: contain; transition: transform .3s ease; }
.product-card:hover .card-img img { transform: scale(1.05); }
.product-card .card-body { padding: 20px; }
.product-card .card-name { font-size: 15px; font-weight: 700; color: var(--hnk-text); margin-bottom: 4px; }
.product-card .card-desc { font-size: 13px; color: var(--hnk-muted); margin-bottom: 16px; line-height: 1.4; }
.product-card .card-link { color: var(--hnk-green); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.product-card .card-link:hover { color: var(--hnk-dark-green); text-decoration: underline; }

/* ─── FAQ ACCORDION ──────────────────────────────────── */
.faq-list { border-top: 1px solid #e8e8e8; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-toggle {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  font-family: var(--primary-fonts);
  justify-content: space-between;
  padding: 22px 0;
  text-align: left;
  width: 100%;
  gap: 16px;
}
.faq-toggle .q { color: var(--hnk-text); font-size: 15px; font-weight: 700; }
.faq-toggle:hover .q { color: var(--hnk-green); }
.faq-icon {
  color: var(--hnk-green);
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: transform .3s;
  width: 20px;
  text-align: center;
}
.faq-answer { display: none; padding: 0 40px 22px 0; }
.faq-answer p { color: var(--hnk-muted); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── NUTRITIONAL TABLE ──────────────────────────────── */
.nut-table { border-collapse: collapse; width: 100%; font-size: 14px; }
.nut-table th { background: var(--hnk-dark-green); color: var(--hnk-white); font-weight: 700; padding: 12px 16px; text-align: left; text-transform: uppercase; letter-spacing: .05em; }
.nut-table td { border-bottom: 1px solid #e8e8e8; color: var(--hnk-text); padding: 11px 16px; }
.nut-table tr:last-child td { border-bottom: none; }
.nut-table tr:nth-child(even) td { background: #f8f8f8; }
.nut-table .nut-sub td:first-child { padding-left: 32px; color: var(--hnk-muted); }

/* ─── VIDEO BLOCK ────────────────────────────────────── */
.video-block {
  aspect-ratio: 16/9;
  background: var(--hnk-black);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.video-block .vid-thumb {
  height: 100%;
  left: 0;
  object-fit: cover;
  opacity: .35;
  position: absolute;
  top: 0;
  width: 100%;
}
.video-block .play-btn {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.play-btn .play-circle {
  align-items: center;
  background: rgba(19, 103, 11, .9);
  border-radius: 50%;
  display: flex;
  height: 72px;
  justify-content: center;
  transition: background .2s;
  width: 72px;
}
.play-btn:hover .play-circle { background: var(--hnk-dark-green); }
.play-btn .play-label { color: var(--hnk-white); font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* ─── SHARE BUTTONS ──────────────────────────────────── */
.share-bar {
  align-items: center;
  border-top: 1px solid #e8e8e8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
}
.share-bar .share-label { color: var(--hnk-text); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-right: 6px; }
.share-btn {
  align-items: center;
  border-radius: 3px;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  padding: 8px 14px;
  text-decoration: none;
  transition: opacity .2s;
}
.share-btn:hover { opacity: .85; }
.share-btn.fb   { background: #1877F2; color: #fff; }
.share-btn.tw   { background: #000; color: #fff; }
.share-btn.li   { background: #0A66C2; color: #fff; }

/* ─── GRID LAYOUTS ───────────────────────────────────── */
.products-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1025px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.two-col {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; align-items: center; } }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer4-br2 {
  background-color: var(--hnk-dark-green);
  color: var(--hnk-white);
  font-size: 14px;
  position: relative;
}
@media (min-width: 1024px) {
  .footer4-br2 {
    background-color: var(--hnk-green);
  }
  .footer4-br2::before {
    background: radial-gradient(ellipse at center, transparent 43%, rgba(0,0,0,.39) 100%);
    bottom: 0; content: ""; left: 0; position: absolute; right: 0; top: 0; z-index: 1;
  }
}
.footer4-br2 .footer4-br2-inner {
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.8));
  padding: 60px 20px 90px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .footer4-br2 .footer4-br2-inner {
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    padding: 80px 40px 60px;
    gap: 60px;
    justify-content: space-between;
  }
}
.footer4-br2 .footer-logo { text-align: center; margin-bottom: 50px; }
.footer4-br2 .footer-logo img { height: 50px; }
@media (min-width: 1024px) {
  .footer4-br2 .footer-logo { text-align: left; margin-bottom: 0; flex-shrink: 0; }
}

.footer4-br2 .footer-nav { text-align: center; }
@media (min-width: 1024px) { .footer4-br2 .footer-nav { text-align: left; } }
.footer4-br2 .footer-nav .footer-section { margin-bottom: 30px; }
.footer4-br2 .footer-nav .footer-section h5 {
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
@media (min-width: 1024px) {
  .footer4-br2 .footer4-br2-inner > .footer-nav-cols {
    display: flex;
    gap: 60px;
  }
}
.footer4-br2 .footer-nav ul li { margin-bottom: 10px; }
.footer4-br2 .footer-nav ul li a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  letter-spacing: .05em;
  text-decoration: none;
  transition: color .2s;
}
.footer4-br2 .footer-nav ul li a:hover { color: var(--hnk-white); text-decoration: underline; }

.footer4-br2 .footer-social { margin-top: 60px; text-align: center; }
@media (min-width: 1024px) { .footer4-br2 .footer-social { margin-top: 0; text-align: left; } }
.footer4-br2 .footer-social p { color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: .08em; margin-bottom: 14px; text-transform: uppercase; }
.footer4-br2 .footer-social ul { display: flex; gap: 20px; justify-content: center; }
@media (min-width: 1024px) { .footer4-br2 .footer-social ul { justify-content: flex-start; } }
.footer4-br2 .footer-social ul li a { display: flex; }
.footer4-br2 .footer-social ul li a img { height: 20px; width: 20px; opacity: .8; transition: opacity .3s; }
.footer4-br2 .footer-social ul li a:hover img { opacity: 1; }

.footer4-br2 .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 24px;
  position: relative;
  z-index: 2;
}
.footer4-br2 .footer-bottom p, .footer4-br2 .footer-bottom a {
  color: rgba(255,255,255,.5);
  font-size: 12px;
}
.footer4-br2 .footer-bottom a:hover { color: var(--hnk-white); }

/* ─── ANIMATIONS ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE HELPERS ─────────────────────────────── */
.desktop-only { display: none !important; }
@media (min-width: 1025px) { .desktop-only { display: block !important; } .mobile-only { display: none !important; } }
