/* ============================
   QQ GIN — LANDING PAGE
   Serrana · Artesanal · Joven
   ============================ */

:root {
  --verde: #2d5a3d;
  --verde-claro: #3d7a52;
  --verde-oscuro: #1a3626;
  --tierra: #8b5e3c;
  --tierra-claro: #c4845a;
  --crema: #f5f0e8;
  --crema-oscuro: #ede5d4;
  --dorado: #c9a84c;
  --dorado-claro: #e8c96a;
  --bronce: #9c6b3c;
  --cereza: #8b1a2e;
  --cereza-claro: #c94060;
  --oscuro: #1a2410;
  --texto: #2a2015;
  --blanco: #ffffff;

  --font-display: 'Abril Fatface', serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 40px rgba(26, 36, 16, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 36, 16, 0.20);
  --shadow-eti: 0 24px 60px rgba(26, 36, 16, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--crema);
  color: var(--texto);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================
   REVEAL
   ======================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.btn--primary { background: var(--verde); color: var(--blanco); }
.btn--primary:hover { background: var(--verde-claro); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,90,61,0.35); }
.btn--ghost { background: transparent; color: var(--crema); border: 1.5px solid rgba(245,240,232,0.45); }
.btn--ghost:hover { background: rgba(245,240,232,0.1); border-color: rgba(245,240,232,0.7); }
.btn--roble { background: var(--tierra); color: var(--blanco); }
.btn--roble:hover { background: var(--tierra-claro); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,94,60,0.35); }
.btn--cerezas { background: var(--cereza); color: var(--blanco); }
.btn--cerezas:hover { background: var(--cereza-claro); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,26,46,0.35); }
.btn--large { padding: 18px 40px; font-size: 1.1rem; }

/* ========================
   SECTION HELPERS
   ======================== */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--verde);
  font-weight: 500;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--oscuro);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: #5a4e3a;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 40px; }

/* ========================
   NAV
   ======================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, rgba(15,25,10,0.7) 0%, transparent 100%);
}
.nav.scrolled {
  background: rgba(26, 36, 16, 0.96);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-img {
  height: 40px; width: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  transition: height 0.3s;
  flex-shrink: 0;
}
.nav.scrolled .nav__logo-img { height: 34px; width: 34px; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--crema);
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  transition: font-size 0.3s;
}
.nav.scrolled .nav__logo-text { font-size: 1.15rem; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--crema);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__links {
  display: none;
  list-style: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--oscuro);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 101;
}
.nav__links.open { display: flex; }
.nav__links a {
  color: var(--crema);
  font-size: 1.6rem;
  font-family: var(--font-serif);
  font-weight: 700;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--dorado); }
.nav__cta {
  background: var(--dorado) !important;
  color: var(--oscuro) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__links {
    display: flex;
    position: static;
    background: transparent;
    flex-direction: row;
    gap: 28px;
    z-index: auto;
  }
  .nav__links a { color: var(--crema); font-size: 0.88rem; font-family: var(--font-body); font-weight: 400; }
  .nav__cta { font-size: 0.85rem !important; padding: 8px 20px !important; }
}

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 100px;
  overflow: hidden;
  text-align: center;
}

/* fondo.png como textura en el hero */
.hero__fondo {
  position: absolute;
  inset: 0;
  background-image: url('images/fondo.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18, 30, 14, 0.88) 0%,
    rgba(30, 54, 22, 0.82) 50%,
    rgba(15, 22, 10, 0.90) 100%
  );
  z-index: 1;
}

.hero__bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(200px, 45vw, 480px);
  color: rgba(255,255,255,0.025);
  line-height: 1;
  user-select: none;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dorado);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  line-height: 1.1;
  color: var(--crema);
  margin-bottom: 20px;
}
.hero__title span { display: block; }
.hero__title em {
  font-style: italic;
  color: var(--dorado);
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.82em;
}
.hero__sub {
  color: rgba(245,240,232,0.72);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Etiquetas flotando en el hero */
.hero__etiquetas {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero__eti {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__eti img {
  height: clamp(100px, 20vw, 160px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(var(--shadow-eti));
}
.hero__eti--london img { animation: float-a 6s ease-in-out infinite; }
.hero__eti--roble img { animation: float-b 6s ease-in-out infinite; transform-origin: center; }
.hero__eti--cerezas img { animation: float-a 6s ease-in-out infinite; animation-delay: 1s; }

@keyframes float-a {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(-8px) rotate(1deg); }
  50% { transform: translateY(6px) rotate(-1deg); }
}

.hero__eti span {
  font-size: 0.68rem;
  color: rgba(245,240,232,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Medallas hero */
.hero__medals {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 24px;
  justify-content: center;
}
.medal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.medal img {
  width: 64px; height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.45));
  animation: pulse-medal 3s ease-in-out infinite;
}
.medal:nth-child(2) img { animation-delay: 1.5s; }
@keyframes pulse-medal {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}
.medal span {
  font-size: 0.68rem;
  color: rgba(245,240,232,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.35), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.4); }
}

/* ========================
   BAND TICKER
   ======================== */
.band {
  background: var(--verde);
  padding: 14px 0;
  overflow: hidden;
}
.band__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.band__track span {
  color: rgba(245,240,232,0.82);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================
   BANDA SEPARADORA
   banda.png como ribbon entre cards
   ======================== */
.banda-sep {
  width: 100%;
  overflow: hidden;
  margin: 8px 0;
  line-height: 0;
}
.banda-sep img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.banda-sep--second img {
  /* sin transformaciones, igual que el primero */
}

/* BANDA grande entre secciones */
.banda-full {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  max-height: 80px;
}
.banda-full img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.banda-full--invert img {
  transform: scaleY(-1);
}

/* ========================
   GIN CARDS
   ======================== */
.gins {
  padding: 64px 0 40px;
  background: var(--crema);
}

.gin-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 0;
  background: var(--blanco);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.gin-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* El área visual de la etiqueta */
.gin-card__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  overflow: hidden;
}

/* fondo.png como textura dentro del card */
.gin-card__fondo {
  position: absolute;
  inset: 0;
  background-image: url('images/fondo.png');
  background-size: cover;
  background-position: center;
}
.gin-card__fondo--london { filter: hue-rotate(100deg) saturate(0.6) brightness(1.15); }
.gin-card__fondo--roble  { filter: hue-rotate(20deg) saturate(0.8) brightness(1.05) sepia(0.3); }
.gin-card__fondo--cerezas { filter: hue-rotate(300deg) saturate(0.7) brightness(1.1); }

/* Overlay de color por variedad */
.gin-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.gin-card--london .gin-card__visual::after { background: rgba(200, 230, 210, 0.45); }
.gin-card--roble  .gin-card__visual::after { background: rgba(210, 175, 120, 0.45); }
.gin-card--cerezas .gin-card__visual::after { background: rgba(200, 130, 150, 0.40); }

/* La etiqueta encima del fondo */
.gin-card__eti-wrap {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  display: flex;
  justify-content: center;
}
.gin-card__etiqueta {
  height: clamp(200px, 35vw, 300px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
  transition: transform 0.4s ease;
  border-radius: 12px;
}
/* Fotos de botella - mejor con contain y sin recorte */
.gin-card__etiqueta[src$=".jpeg"],
.gin-card__etiqueta[src$=".jpg"] {
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.gin-card:hover .gin-card__etiqueta {
  transform: scale(1.06) rotate(-1.5deg);
}

.gin-card__medal-badge {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 3;
}
.gin-card__medal-badge img {
  width: 62px; height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.gin-card__nuevo-badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 3;
  background: var(--cereza);
  color: var(--blanco);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}

/* Info del card */
.gin-card__info {
  padding: 28px 28px;
}
.gin-card__tag {
  display: inline-block;
  background: rgba(201,168,76,0.14);
  color: var(--tierra);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  border: 1px solid rgba(201,168,76,0.28);
}
.gin-card__tag--bronce {
  background: rgba(156,107,60,0.11);
  color: var(--bronce);
  border-color: rgba(156,107,60,0.22);
}
.gin-card__tag--cerezas {
  background: rgba(139,26,46,0.09);
  color: var(--cereza);
  border-color: rgba(139,26,46,0.18);
}
.gin-card__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3rem);
  color: var(--oscuro);
  margin-bottom: 4px;
  line-height: 1.05;
}
.gin-card__char {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--verde);
  font-weight: 500;
  margin-bottom: 14px;
}
.gin-card__desc {
  color: #5a4e3a;
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.gin-card__serve {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
  align-items: center;
}
.serve-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a8e7a;
  width: 100%;
  font-weight: 500;
}
.serve-item {
  font-size: 0.8rem;
  background: var(--crema);
  padding: 5px 13px;
  border-radius: 50px;
  color: var(--texto);
  border: 1px solid var(--crema-oscuro);
}

@media (min-width: 680px) {
  .gin-card { grid-template-columns: 1fr 1fr; }
  .gin-card--reverse .gin-card__visual { order: 2; }
  .gin-card--reverse .gin-card__info { order: 1; }
}

/* ========================
   HISTORIA
   fondo.png como textura oscura
   ======================== */
.historia {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.historia__fondo {
  position: absolute;
  inset: 0;
  background-image: url('images/fondo.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.historia__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 14, 0.90);
  z-index: 1;
}
.historia__watermark {
  position: absolute;
  right: -8%; top: 50%;
  transform: translateY(-50%);
  width: 55%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 2;
}
.historia__watermark img { width: 100%; }
.historia__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 3;
}
.historia__text .section-eyebrow { color: var(--dorado); }
.historia__text .section-title { color: var(--crema); }
.historia__text p {
  color: rgba(245,240,232,0.72);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 520px;
}
.historia__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillar {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.pillar:hover { background: rgba(255,255,255,0.09); }
.pillar__icon { font-size: 1.7rem; margin-bottom: 10px; }
.pillar h4 { font-family: var(--font-serif); color: var(--crema); font-size: 0.98rem; margin-bottom: 6px; font-weight: 700; }
.pillar p { color: rgba(245,240,232,0.58); font-size: 0.8rem; line-height: 1.6; }

@media (min-width: 768px) {
  .historia__content { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ========================
   DESTILERIA
   ======================== */
.destileria {
  padding: 64px 0;
  background: var(--verde);
}
.destileria__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.destileria__badge {
  display: inline-block;
  background: var(--dorado);
  color: var(--oscuro);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.destileria__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--crema);
  line-height: 1.15;
  margin-bottom: 20px;
}
.destileria__sub {
  color: rgba(245,240,232,0.78);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.destileria__sub strong { color: var(--dorado); }
.destileria__logos {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.destileria__eternal-logo {
  height: 58px; width: auto;
  filter: brightness(0) invert(1) opacity(0.8);
}
.destileria__stats {
  display: flex;
  border: 1px solid rgba(245,240,232,0.18);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  flex: 1;
  padding: 24px 14px;
  border-right: 1px solid rgba(245,240,232,0.14);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--dorado);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label { font-size: 0.7rem; color: rgba(245,240,232,0.6); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* ========================
   PREMIOS
   fondo.png textura crema suave
   ======================== */
.premios {
  padding: 64px 0;
  position: relative;
  background: var(--crema-oscuro);
}
.premios__fondo {
  position: absolute;
  inset: 0;
  background-image: url('images/fondo.png');
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}
.premios .container { position: relative; z-index: 1; }

.premios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.premio {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.premio:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Visual con etiqueta + medalla */
.premio__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 20px 16px;
}
.premio--oro .premio__visual { background: linear-gradient(135deg, #f8f2e0 0%, #e8d8a0 100%); }
.premio--bronce .premio__visual { background: linear-gradient(135deg, #f2ebe0 0%, #d4b896 100%); }

.premio__medal {
  width: 72px; height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.2));
}
.premio__eti {
  height: 100px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}
.premio__info {
  padding: 16px 20px 22px;
}
.premio__info h3 { font-family: var(--font-serif); font-size: 1.15rem; color: var(--oscuro); margin-bottom: 4px; font-weight: 700; }
.premio__info p { color: var(--verde); font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; }
.premio__info span { color: #6a5e48; font-size: 0.82rem; line-height: 1.6; }

.marca-pais {
  background: var(--oscuro);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.marca-pais__text h4 { font-family: var(--font-serif); color: var(--dorado); font-size: 1rem; margin-bottom: 6px; }
.marca-pais__text p { color: rgba(245,240,232,0.72); font-size: 0.84rem; line-height: 1.6; }
.marca-pais__seal { font-size: 2.8rem; flex-shrink: 0; }

@media (min-width: 640px) {
  .premios__grid { grid-template-columns: 1fr 1fr; }
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
  padding: 64px 20px;
  background: linear-gradient(135deg, #1a2d1e 0%, #2d4a22 60%, #1a2010 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.cta-section__bg img { width: 55%; opacity: 0.04; animation: float-a 9s ease-in-out infinite; }
.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-section__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--crema);
  margin-bottom: 14px;
}
.cta-section__inner > p {
  color: rgba(245,240,232,0.72);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Las tres etiquetas en el CTA */
.cta-etis {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 40px;
}
.cta-eti {
  height: clamp(100px, 18vw, 160px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}
.cta-eti--1 { animation: float-a 7s ease-in-out infinite; }
.cta-eti--2 { animation: float-b 7s ease-in-out infinite; height: clamp(120px, 22vw, 190px); }
.cta-eti--3 { animation: float-a 7s ease-in-out infinite; animation-delay: 0.8s; }
.cta-eti:hover { transform: scale(1.08) translateY(-8px); }

/* ========================
   CONTACTO
   ======================== */
.contacto {
  padding: 56px 0;
  background: var(--crema);
}
.contacto__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.contacto__logo { height: 46px; width: auto; margin-bottom: 16px; }
.contacto__info p {
  color: #6a5e48;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.contacto__links { display: flex; flex-direction: column; gap: 14px; }
.contacto__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--verde);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, gap 0.2s;
}
.contacto__link:hover { color: var(--verde-claro); gap: 14px; }
.contacto__link svg { flex-shrink: 0; }

.orgullo__text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-style: italic;
  color: var(--oscuro);
  line-height: 1.35;
  margin-bottom: 24px;
}
.orgullo__bird { width: 110px; opacity: 0.18; }

@media (min-width: 640px) {
  .contacto__inner { grid-template-columns: 1fr 1fr; }
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--oscuro);
  padding: 22px 20px;
  text-align: center;
}
.footer p {
  color: rgba(245,240,232,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

/* ========================
   MOBILE EXTRAS
   ======================== */
@media (max-width: 480px) {
  .historia__pillars { grid-template-columns: 1fr; }
  .destileria__stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.14); }
  .stat:last-child { border-bottom: none; }
  .marca-pais { flex-direction: column; text-align: center; }
  .hero__etiquetas { gap: 12px; }
}

/* ========================
   WHATSAPP FLOTANTE
   ======================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--blanco);
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  /* Animación de entrada */
  animation: wa-entry 0.6s ease 1.5s both;
}
@keyframes wa-entry {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.18);
}
.wa-float svg {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.wa-float__label {
  display: inline-block;
  font-size: 0.82rem;
}

/* En mobile, círculo solo abajo a la derecha */
@media (max-width: 600px) {
  .wa-float {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 16px;
    top: auto;
    left: auto;
  }
  .wa-float__label { display: none; }
}