:root {
  --verde-oscuro: #3e4210;
  --verde-medio: #5a7a2e;
  --verde-oliva: #7a9c3a;
  --verde-claro: #8fb040;
  --dorado: #c8a030;
  --crema: #f5f0e0;
  --blanco: #ffffff;
  --gris-claro: #e8e8e8;
  --negro: #222222;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  background-color: var(--crema);
  color: #222;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Agrandir', sans-serif;
}

/* ── NAVBAR ── */
.navbar-dorcher {
  background-color: var(--verde-oscuro);
  padding: 14px 40px;
}
.navbar-dorcher .brand-logo {
  font-family: 'Agrandir', sans-serif;
  font-size: 1.5rem;
  color: var(--crema);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
}
.navbar-dorcher .brand-logo a {
  color: var(--crema);
  text-decoration: none;
}
.navbar-dorcher .brand-logo span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 5px;
  font-weight: 400;
  color: var(--dorado);
}
/* ── NAV LINKS desktop ── */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}
.nav-links li { list-style: none; position: relative; }

.nav-links li a,
.navbar-dorcher .nav-link {
  display: inline-block;
  color: var(--crema) !important;
  font-family: 'Agrandir', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover,
.navbar-dorcher .nav-link:hover {
  color: var(--dorado) !important;
  background: rgba(255,255,255,0.07);
}

/* Ítem activo (current-menu-item) */
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a {
  color: var(--dorado) !important;
  border-bottom: 2px solid var(--dorado);
  padding-bottom: 4px;
}

/* ── DROPDOWN (sub-menu) desktop ── */
.nav-links .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  min-width: 180px;
  background: var(--verde-oscuro);
  border: 1px solid rgba(200,160,48,0.25);
  border-radius: 6px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  z-index: 1200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
  display: block;
}
.nav-links .sub-menu li { position: relative; }
.nav-links .sub-menu li a {
  display: block;
  padding: 8px 18px;
  border-radius: 0;
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 1px;
}
.nav-links .sub-menu li a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--dorado) !important;
}

/* ── LANGUAGE SWITCHER desktop ── */
.lang-switcher {
  margin-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 14px;
}
.lang-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}
.lang-links li { position: relative; list-style: none; }
.lang-links li a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--crema);
  font-family: 'Agrandir', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(200,160,48,0.4);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.lang-links li a:hover,
.lang-links li.current-lang a {
  color: var(--dorado);
  border-color: var(--dorado);
  background: rgba(200,160,48,0.1);
}
/* ── Dropdown del language switcher ── */
.lang-links .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  min-width: 100%;
  background: var(--verde-oscuro);
  border: 1px solid rgba(200,160,48,0.25);
  border-radius: 6px;
  padding: 4px 0;
  list-style: none;
  margin: 0;
  z-index: 1200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.lang-links li:hover > .sub-menu,
.lang-links li:focus-within > .sub-menu { display: block; }
.lang-links .sub-menu li { position: relative; }
.lang-links .sub-menu li a {
  display: block;
  padding: 7px 14px;
  border-radius: 0;
  border: none;
  white-space: nowrap;
  font-size: 0.78rem;
}

/* ── LANGUAGE SWITCHER mobile ── */
.mobile-lang-links {
  border-top: 1px solid rgba(200,160,48,0.3);
  margin-top: 4px;
  padding-top: 4px;
  display: flex !important;
  flex-direction: row;
  gap: 8px;
}
.mobile-lang-links li { border-bottom: none !important; }
.mobile-lang-links li a {
  padding: 8px 14px !important;
  border: 1px solid rgba(200,160,48,0.4);
  border-radius: 4px;
  font-size: 0.82rem !important;
}
.mobile-lang-links li a:hover,
.mobile-lang-links li.current-lang a {
  color: var(--dorado) !important;
  border-color: var(--dorado);
}

/* ── DROPDOWN sub-menu móvil ── */
.mobile-nav-links .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 4px 14px;
}
.mobile-nav-links .sub-menu li { border-bottom: none; }
.mobile-nav-links .sub-menu li a {
  font-size: 0.85rem !important;
  padding: 7px 4px !important;
  color: rgba(245,240,224,0.8) !important;
  letter-spacing: 1px;
}
.mobile-nav-links .sub-menu li a:hover { color: var(--dorado) !important; padding-left: 10px !important; }

/* ── HAMBURGUESA ── */
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--crema);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
/* Animación X al abrir */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MENÚ MÓVIL ── */
.mobile-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  background: var(--verde-oscuro);
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  position: relative;
  z-index: 1000;
}
.mobile-menu.is-open {
  max-height: 400px;
  padding: 12px 20px 16px;
  border-top: 1px solid rgba(200,160,48,0.3);
}
.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-links li:last-child { border-bottom: none; }
.mobile-nav-links li a {
  display: block;
  color: var(--crema);
  font-family: 'Agrandir', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 4px;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-links li a:hover {
  color: var(--dorado);
  padding-left: 10px;
}
.mobile-nav-links li.current-menu-item > a,
.mobile-nav-links li.current_page_item > a {
  color: var(--dorado);
}

/* ── HERO ── */
.hero-section {
  position: relative;
  height: 415px;
  background-image: url('../images/5.jpg');
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.capa-verde {
  height: 615px;
  position: absolute;
  width: 100%;
  opacity: .4;
}
.hero-bg-bottles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  opacity: 0.25;
}
.hero-bg-bottles img {
  height: 300px;
  object-fit: contain;
  filter: brightness(1.2);
}
.hero-title-box {
  position: relative;
  z-index: 2;
  /*background: rgba(90,122,46,0.72);
  border: 2px solid rgba(200,160,48,0.5);*/
  padding: 18px 60px;
}
.hero-title-box h1 {
  font-family: 'Agrandir', sans-serif !important;
  color: var(--blanco);
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 6px;
  margin: 0;
  text-transform: uppercase;
  background-image: url(https://dorcherbier.com/wp-content/uploads/2026/05/titulo-center-ok.png);
  padding: 33px 40px 0;
  background-size: contain;
  height: 150px;
}
.hero-title-box h1:before, .hero-title-box h1:after {
  background-image: url('../images/titulo-left.png');
  background-size: 60px;
  background-repeat: no-repeat;
  content: '';
  height: 150px;
  display: block;
  width: 60px;
  position: absolute;
  left: -60px;
  top: 0px;
}
.hero-title-box h1:after {
  background-image: url('../images/titulo-right.png');
  left: initial;
  right: -60px;
}
/* ── INTRO SECTION ── */
.intro-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  background-image: url('../images/fondo7.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* sunburst */
.sunburst {
  position: absolute;
  right: 320px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  opacity: 0.18;
  background: repeating-conic-gradient(#fff 0deg 10deg, transparent 10deg 20deg);
  border-radius: 50%;
}
.intro-cans-placeholder {
  width: 340px;
  height: 260px;
  /*background: rgba(255,255,255,0.12);
  border: 2px dashed rgba(255,255,255,0.3);*/
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-family: 'Agrandir', sans-serif;
  letter-spacing: 1px;
}

/* ── CAROUSEL DE PRODUCTOS ── */
.products-carousel-section {
  background-color: var(--blanco);
  padding: 40px 0;
}
.carousel-arrow {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--verde-oscuro);
  cursor: pointer;
  padding: 0 20px;
  line-height: 1;
}
.product-thumb {
  text-align: center;
  padding: 0 10px;
}
.product-thumb .img-placeholder {
  width: 90px;
  height: 160px;
  background: var(--gris-claro);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #aaa;
  font-size: 0.7rem;
  font-family: 'Agrandir', sans-serif;
  letter-spacing: 1px;
}
.product-thumb p {
  font-family: 'Agrandir', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--verde-oscuro);
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

/* ── DETALLE DE PRODUCTO ── */
.product-detail-section {
  background-image: url(https://dorcherbier.com/wp-content/uploads/2026/05/3-scaled.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}
.product-detail-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
}
.product-detail-section h2.product-name {
  color: var(--verde-claro) !important;
  font-size: 3.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 4px;
}
h2.js-anim.from-left.visible {
    font-size: 3.1rem;
    font-weight: 700;
    font-family: 'Agrandir', sans-serif;
    text-transform: uppercase;
    color: var(--verde-oscuro);
}
.underline-white {
  width: 300px;
  height: 6px;
  background: var(--blanco);
  margin: 20px auto 0 0;
  display: block;
}
.linea-home{
  margin: 20px auto 0 !important;
}
.d-flex.align-items-center.gap-3.mb-3 {
    margin-top: 25px;
}
/* variantes */
.variant-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blanco);
  border: none;
  display: inline-block;
  margin-right: 6px;
  cursor: pointer;
  vertical-align: middle;
}
.variant-label {
  font-family: 'Agrandir', sans-serif;
  color: var(--blanco);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 6px;
}
.variant-box {
  display: none;
  /*display: inline-block;
  border: 2px solid var(--blanco);
  padding: 3px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--blanco);
  margin-top: 4px;*/
}
/* subtitulos */
.detail-subtitle {
  font-family: 'Agrandir', sans-serif;
  color: var(--blanco);
  font-size: 1.05rem;
  font-weight: 700;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  margin-top: 32px;
  margin-bottom: 6px;
}
.detalles{
  margin-top: 9%;
}
.detail-list {
  list-style: none;
  padding: 0; margin: 0;
}
.detail-list li {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.7;
}
/*.detail-list li::before { content: '– '; }*/

/* botella central */
.bottle-placeholder {
  width: 220px;
  height: 420px;
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-family: 'Agrandir', sans-serif;
  letter-spacing: 1px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ingredientes */
.ingredients-section h3 {
  font-family: 'Agrandir', sans-serif;
  color: var(--blanco);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.ingredient-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ingredient-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blanco);
  flex-shrink: 0;
}
.ingredient-item span {
  font-family: 'Agrandir', sans-serif;
  color: var(--blanco);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.makes-special h3 {
  font-family: 'Agrandir', sans-serif;
  color: var(--blanco);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 28px;
  margin-bottom: 10px;
}
.makes-special p {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
  color: var(--blanco);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── MERCH ── */
.merch-section {
  background-image: url(https://dorcherbier.com/wp-content/uploads/2026/05/trama-verde-claro-ok.png);
  background-position: bottom;
  padding: 0 0 60px;
  background-size: 60px;
}
.merch-banner {
  background-image: url(https://dorcherbier.com/wp-content/uploads/2026/05/4-scaled.png) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 150px 40px;
  margin-bottom: 40px;
}
.merch-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.merch-banner h2 {
  position: relative;
  z-index: 1;
}
.merch-section h2 {
  font-family: 'Agrandir', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--blanco);
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 0;
}
.merch-section h2 strong {
  font-size: 4rem;
  font-weight: 700;
}
.merch-card {
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: block;
}
.merch-card:hover { text-decoration: none; }
.merch-img-placeholder {
  width: 100%;
  height: 220px;
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-family: 'Agrandir', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.merch-card p {
  font-family: 'Agrandir', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blanco);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  min-height: 48px;
}
.merch-grid-wrap {
  padding: 0 40px 40px;
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: 120px;
  transition: opacity 0.2s;
}
.merch-grid.loading { opacity: 0.45; pointer-events: none; }
.merch-card-wrap { /* grid item wrapper */ }
.hide-desktop { display: none !important; }
@media (max-width: 768px) {
  .merch-grid {
    grid-template-columns: 1fr;
  }
  .hide-desktop { display: block !important; }
  .hide-mobile { display: none !important; }
}
/* Filtros */
.merch-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.merch-results-count {
  font-family: 'Agrandir', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(255,255,255,0.65);
}
.merch-filter-controls {
  display: flex;
  gap: 10px;
}
.merch-dropdown { position: relative; }
.merch-filter-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--blanco);
  font-family: 'Agrandir', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s;
}
.merch-filter-btn:hover { border-color: #fff; }
.merch-dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--verde-oscuro);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 6px 0;
  min-width: 150px;
  z-index: 200;
  list-style: none;
  margin: 0;
}
.merch-dropdown.open .merch-dropdown-list { display: block; }
.merch-dropdown-list li {
  padding: 8px 16px;
  font-family: 'Agrandir', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  white-space: nowrap;
}
.merch-dropdown-list li:hover,
.merch-dropdown-list li.selected { color: #fff; background: rgba(255,255,255,0.08); }
/* Paginación */
.merch-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 0 0;
}
.merch-page-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
  font-family: 'Agrandir', sans-serif;
  font-size: 0.85rem;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.merch-page-btn:hover,
.merch-page-btn.active { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

/* ── FOOTER ── */
.footer-dorcher {
  background-color: var(--verde-oscuro);
  padding: 50px 60px 30px;
  color: rgba(255,255,255,0.7);
}
.footer-dorcher .brand-logo {
  font-family: 'Agrandir', sans-serif;
  font-size: 1.4rem;
  color: var(--crema);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 200px;
}
.footer-dorcher .brand-logo img {
  width: 100%;
}
.footer-dorcher .brand-logo span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: var(--dorado);
}
.footer-dorcher .contact-info {
  font-size: 0.82rem;
  line-height: 1.9;
  margin-top: 10px;
}
.footer-dorcher .footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-dorcher .footer-links li {
  margin-bottom: 10px;
}
.footer-dorcher .footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-dorcher .footer-links a:hover { color: var(--dorado); }
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 30px;
  padding-top: 20px;
}
/* Social icons placeholder */
.social-icons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
}
.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Agrandir', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.social-icon:hover { background: var(--dorado); color: var(--verde-oscuro); }
.woocommerce-page img.cerveza-imagen {
  width:100%;
  height:100%;
  border-radius:14px;
  object-fit:cover;
  opacity:0.9;
}
/* ── Responsive tweaks ── */
@media (max-width: 768px) {
  .intro-section { padding: 40px 24px; }
  .product-detail-section { padding: 50px 24px; }
  .hero-title-box h1 { font-size: 2.2rem; }
  .product-detail-section h2.product-name { font-size: 2rem; }
  .footer-dorcher { padding: 40px 24px 24px; }
  .social-icons { justify-content: flex-start; margin-top: 20px; }
}

/* ── CONTACTO: estilos adicionales ── */

/* HERO – imagen de fondo simulada con placeholder oscuro */
.hero-contact {
  position: relative;
  height: 360px;
  background: linear-gradient(160deg, #1a2e10 0%, var(--verde-oscuro) 50%, #3d5c22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-contact .hero-photo-bg {
  position: absolute;
  inset: 0;
  background: url('https://placehold.co/1400x360/1a2e10/2d4a1e?text=') center/cover no-repeat;
  opacity: 0.55;
}
/* botellas decorativas hero */
.hero-contact .deco-bottles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  padding-bottom: 0;
  opacity: 0.35;
}
.hero-contact .deco-bottles img {
  height: 320px;
  object-fit: contain;
}
.hero-contact .hero-title-box {
  position: relative;
  z-index: 3;
}

/* ── INTRO CONTACTO ── */
.contact-intro-section {
  background-image: url(https://vibra.work/dorcher/wp-content/uploads/2026/05/Recurso-94-scaled.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.contact-intro-section .sunburst {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  opacity: 0.12;
  background: repeating-conic-gradient(#fff 0deg 10deg, transparent 10deg 20deg);
  border-radius: 50%;
}
.contact-intro-section h2 {
  color: #3e4310;;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-intro-section .underline-gold {
  width: 360px; height: 6px;
  background: var(--blanco);
  margin-bottom: 22px;
}
.contact-intro-section p {
  color: var(--crema);
  font-size: 1rem;
  line-height: 1.75;
  /*max-width: 400px;*/
}
.contact-intro-section p span {
  font-weight: bold;
}
.contact-intro-section .sub-italic {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: bold;
  color: var(--crema);
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 6px;
}
.contact-photo-box {
  position: relative;
  z-index: 2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  width: 100%;
}
.contact-photo-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* ── MAPA + PUNTOS DE VENTA ── */
.locations-section {
  background-color: var(--crema);
  padding: 0;
  min-height: 380px;
}
.map-col {
  position: relative;
  min-height: 380px;
  background: #d8d8c8;
  overflow: hidden;
}
/* iframes de mapa (tabs) */
.map-iframe-wrapper {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 380px;
}
.map-iframe-wrapper.active { display: block; }
.map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  border: 0;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%) sepia(20%);
}
/* pin decorativos */
.map-pin {
  position: absolute;
  width: 28px; height: 28px;
  background: var(--verde-oscuro);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid var(--dorado);
}
.map-pin::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: var(--crema);
  border-radius: 50%;
}
.pin-1 { top: 30%; left: 28%; }
.pin-2 { top: 55%; left: 55%; }
.pin-3 { top: 20%; left: 60%; }

/* lista de puntos de venta */
.puntos-col {
  background-image: url(https://dorcherbier.com/wp-content/uploads/2026/05/Recurso-21-scaled.png);;
  padding: 0;
  overflow-y: auto;
  max-height: 380px;
}
.punto-item {
  background: var(--verde-oliva);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 22px;
  cursor: pointer;
  transition: background 0.2s;
}
.punto-item:hover { background: var(--verde-claro); }
.punto-item.active {
  background: var(--verde-claro);
  border-radius: 20px;
}
.punto-item h5 {
  font-family: 'Agrandir', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--crema);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 3px;
}
.punto-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.4;
}

/* ── FORMULARIO ── */
.contact-form-section {
  background-image: url(https://vibra.work/dorcher/wp-content/uploads/2026/05/Recurso-48-scaled.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 40px;
}
.form-wrapper {
  max-width: 1060px;
  margin: 0 auto;
  border-radius: 4px;
  padding: 30px 30px;
  position: relative;
}
/* doble borde decorativo */
.form-wrapper::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 2px;
  pointer-events: none;
}
/* esquinas decorativas */
.form-corner {
  position: absolute;
  width: 20px; height: 20px;
}
.form-corner.tl { top: 6px; left: 6px; border-width: 2px 0 0 2px; }
.form-corner.tr { top: 6px; right: 6px; border-width: 2px 2px 0 0; }
.form-corner.bl { bottom: 6px; left: 6px; border-width: 0 0 2px 2px; }
.form-corner.br { bottom: 6px; right: 6px; border-width: 0 2px 2px 0; }

.contact-form-section .form-control {
  border: 4px solid #3e420f;
  border-radius: 15px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #333;
  padding: 12px 16px;
  background: transparent;
}
.contact-form-section .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(90,122,46,0.2);
  border-color: var(--verde-medio);
}
.contact-form-section .form-control::placeholder {
  color: #aaa;
}
.titulo-form{
  font-family: 'Agrandir', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #3e4310;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
}
.texto-form {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
}
textarea.form-control {
  resize: none;
  min-height: 130px;
}
.btn-submit {
  display: block;
  margin: 24px auto 0;
  background: transparent;
  border: 4px solid #3e420f;
  border-radius: 30px;
  font-family: 'Agrandir', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde-oscuro);
  padding: 10px 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-submit:hover {
  background: var(--verde-oscuro);
  color: var(--crema);
}

/* responsive */
@media (max-width: 768px) {
  .contact-intro-section { padding: 40px 24px; }
  .contact-form-section { padding: 40px 16px; background-image: url(https://dorcherbier.com/wp-content/uploads/2026/05/4-2-1-scaled.png);}
  .form-wrapper { padding: 36px 24px; }
  .puntos-col { max-height: none; }
  .map-col { min-height: 260px; }
}

/* ─────────────────────────────────────
    1. BANNER / HERO SLIDER
───────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: var(--verde-oscuro);
}
.hero-slider .slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  height: 580px;
}
.hero-slider .slide.active { opacity: 1; }
.hero-slider .slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(45,74,30,0.72) 0%, rgba(45,74,30,0.2) 60%, transparent 100%);
}
/* Slides placeholder con degradados */
.slide-1 { background: linear-gradient(135deg, #1a3010 0%, #3d6020 50%, #5a7a2e 100%); }
.slide-2 { background: linear-gradient(135deg, #2a4520 0%, #4a6a30 50%, #6a8a3a 100%); }
.slide-3 { background: linear-gradient(135deg, #223818 0%, #3a5828 50%, #506e30 100%); }

.hero-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  z-index: 3;
}
.hero-badge {
  display: inline-block;
  background: var(--dorado);
  color: var(--verde-oscuro);
  font-family: 'Agrandir', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.hero-title {
  font-family: 'original absinthe', sans-serif !important;
  font-size: 115px;
  font-weight: bold;
  color: var(--blanco);
  text-transform: lowercase;
  letter-spacing: 3px;
  line-height: 1.05;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title-anexo {
  font-size: 24px;
  font-family: 'Agrandir', sans-serif;
  vertical-align: bottom;
  color: #fff;
}
.product-additional {
  max-width: 1140px;
  margin: 50px auto 0;
}
.product-additional li {
  font-size: 16px;
}
.hero-title span { color: var(--dorado); }
.hero-cta {
  display: inline-block;
  border: 2px solid var(--dorado);
  color: var(--dorado);
  font-family: 'Agrandir', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 32px;
  transition: background 0.25s, color 0.25s;
}
.hero-cta:hover { background: var(--dorado); color: var(--verde-oscuro); }

/* Slider controls wrapper (arrows + dots) */
.slider-controls {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Dots */
.slider-dots {
  display: flex; gap: 8px;
  align-items: center;
}
.slider-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slider-dots span.active {
  background: var(--dorado);
  transform: scale(1.3);
}

/* Flechas slider */
.slider-arrow {
  z-index: 5;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 50%;
  color: var(--blanco);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}
.slider-arrow:hover { background: var(--dorado); color: var(--verde-oscuro); }

/* ─────────────────────────────────────
    2. CLIENTES (logos carousel)
───────────────────────────────────── */
.clientes-section {
  background: var(--blanco);
  padding: 36px 0;
  border-bottom: 3px solid var(--verde-oscuro);
  overflow: hidden;
}
.clientes-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scrollLogos 22s linear infinite;
  width: max-content;
}
@keyframes scrollLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cliente-logo {
  width: 120px;
  height: 60px;
  background: var(--gris-claro);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Agrandir', sans-serif;
  font-size: 0.72rem;
  color: #aaa;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.clientes-label {
  font-family: 'Agrandir', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde-medio);
  white-space: nowrap;
  margin-bottom: 16px;
  padding-left: 40px;
}

/* ─────────────────────────────────────
    3. TÍTULO Y CUERPO
───────────────────────────────────── */
.titulo-cuerpo-section {
  background-image: url(https://vibra.work/dorcher/wp-content/uploads/2026/05/Recurso-21-scaled.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
/* ── tc slider ── */
.tc-track-outer { overflow: hidden; }
.tc-track {
  display: flex;
  transition: transform 0.5s ease;
}
.tc-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 60px 0;
}
.tc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  color: var(--blanco);
  width: 52px; height: 100%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  padding: 0;
}
.tc-prev { left: 0; }
.tc-next { right: 0; }
@media (max-width: 767px) { .tc-slide { padding: 60px 0; } }
.titulo-cuerpo-section::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,200,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.sunburst {
  /*position: absolute;
  left: 55%; top: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  opacity: 0.12;
  background: repeating-conic-gradient(#fff 0deg 10deg, transparent 10deg 20deg);
  border-radius: 50%;
  pointer-events: none;*/
  display: none;
}
.titulo-cuerpo-section h2 {
  color: var(--crema);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.underline-gold {
  width: 60px; height: 3px;
  background: var(--dorado);
  margin-bottom: 24px;
}
.titulo-cuerpo-section p {
  color: var(--crema);
  font-size: 1rem;
  line-height: 1.8;
}
.btn-outline-crema {
  display: inline-block;
  border: 2px solid var(--crema);
  border-radius: 15px;
  color: var(--crema);
  font-family: 'Agrandir', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 28px;
  margin-top: 24px;
  transition: background 0.25s, color 0.25s;
}
.btn-outline-crema.blanco {
  background-color: var(--blanco);
  color: var(--verde-oscuro);
}
.btn-outline-crema:hover { background: var(--crema); color: var(--verde-oscuro); }

.media-placeholder {
  background: rgba(255,255,255,0.12);
  border: 2px dashed rgba(255,255,255,0.35);
  border-radius: 12px;
  height: 320px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-family: 'Agrandir', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.media-placeholder .play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(200,160,48,0.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--blanco);
}

/* ─────────────────────────────────────
    4. ESTADÍSTICAS / NÚMEROS
───────────────────────────────────── */
.stats-section {
  background: var(--verde-oscuro);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-conic-gradient(rgba(255,255,255,0.03) 0deg 10deg, transparent 10deg 20deg);
}
.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-number {
  font-family: 'Original Absinthe', sans-serif;
  font-size: 70px;
  font-weight: normal;
  color: #333;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,240,224,0.75);
}

/* ─────────────────────────────────────
    5. TESTIMONIOS
───────────────────────────────────── */
.testimonios-section {
  background: var(--crema);
  padding: 80px 0;
}
.section-heading {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blanco);
  margin-bottom: 6px;
}
.underline-verde {
  width: 100%;
  height: 6px;
  background: var(--verde-claro);
  margin-bottom: 40px;
  max-width: 450px;
}
.testimonio-card {
  background: var(--blanco);
  border-left: 4px solid var(--dorado);
  padding: 28px 28px 24px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 20px rgba(45,74,30,0.08);
  height: 100%;
  position: relative;
}
.testimonio-card .quote-icon {
  font-size: 3rem;
  color: var(--verde-claro);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: 14px; right: 20px;
}
.testimonio-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #444;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonio-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonio-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--verde-medio);
  display: flex; align-items: center; justify-content: center;
  color: var(--crema);
  font-family: 'Agrandir', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonio-name {
  font-family: 'Agrandir', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--verde-oscuro);
  letter-spacing: 1px;
}
.testimonio-cargo {
  font-size: 0.78rem;
  color: #888;
}
.stars { color: var(--dorado); font-size: 0.85rem; margin-bottom: 4px; }

/* ─────────────────────────────────────
    6. SERVICIOS
───────────────────────────────────── */
.servicios-section {
  background-image: url('../images/fondo3.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #f3f3f3;
  padding: 100px 0;
}
.servicios-frame {
  padding: 56px 48px;
  outline: 4px solid #f5f0e8;
  outline-offset: -12px;
}
/* Título de la sección */
.serv-titulo {
  color: var(--verde-oscuro);
  font-size: 2.4rem;
}
.serv-intro {
  color: #444;
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
/* Mini grilla de items */
.serv-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.serv-item-title {
  font-family: 'Agrandir', sans-serif;
  font-size: .95rem;
  font-weight: bold;
  color: var(--verde-oscuro);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.serv-item-texto {
  font-size: .82rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}
/* Formulario */
.servicios-form { width: 100%; }
.serv-field {
  width: 100%;
  background: transparent;
  border: 4px solid #3e420f;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .88rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.serv-field::placeholder { color: #aaa; }
.serv-field:focus { border-color: var(--verde-oscuro); }
.serv-field.error { border-color: #c0392b; }
.serv-field-error-msg { color: #c0392b; font-size: .78rem; margin-top: 4px; display: block; }
.btn-serv-form {
  display: inline-block;
  background: transparent;
  border: 4px solid var(--verde-oscuro);
  border-radius: 14px;
  color: var(--verde-oscuro);
  font-family: 'Agrandir', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 36px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-serv-form:hover { background: var(--verde-oscuro); color: var(--crema); }
.serv-form-ok {
  color: var(--verde-oscuro);
  font-family: 'Agrandir', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 20px;
  border: 1px solid var(--verde-oscuro);
  border-radius: 4px;
  text-align: center;
}

.btn-verde {
  display: inline-block;
  background: var(--verde-oscuro);
  color: var(--crema);
  font-family: 'Agrandir', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 36px;
  border-radius: 30px;
  transition: background 0.25s, transform 0.2s;
  margin-top: 36px;
}
.btn-verde:hover { background: var(--verde-medio); color: var(--crema); transform: translateY(-2px); }

/* ─────────────────────────────────────
    7. MISIÓN
───────────────────────────────────── */
.mision-section {
  display: none;
  background: var(--crema);
  padding: 80px 0;
}
.mision-text h2 {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--verde-oscuro);
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.mision-text p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 480px;
}
/* Grid de imágenes asimétrico */
.mision-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
}
.mision-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.mision-img .img-ph {
  width: 100%; height: 100%;
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Agrandir', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}
.mi-1 { grid-column: 1; grid-row: 1; }
.mi-2 { grid-column: 2; grid-row: 1 / 3; } /* central destacado */
.mi-3 { grid-column: 3; grid-row: 1; }
.mi-4 { grid-column: 1; grid-row: 2; }
.mi-5 { grid-column: 3; grid-row: 2; }

.mi-bg-1 { background: linear-gradient(135deg, #2d4a1e, #5a7a2e); }
.mi-bg-2 { background: linear-gradient(160deg, #1e3a10, #4a6a28); }
.mi-bg-3 { background: linear-gradient(135deg, #3d6a20, #6a8a3e); }
.mi-bg-4 { background: linear-gradient(135deg, #253e18, #487230); }
.mi-bg-5 { background: linear-gradient(135deg, #1a3010, #3d5c22); }

.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.play-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(200,160,48,0.85);
  display: flex; align-items: center; justify-content: center;
  color: var(--blanco);
  font-size: 1.2rem;
  backdrop-filter: blur(2px);
}

/* ─────────────────────────────────────
    8. GALERÍA
───────────────────────────────────── */
.galeria-section {
  background: var(--verde-oscuro);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.galeria-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-conic-gradient(rgba(255,255,255,0.03) 0deg 10deg, transparent 10deg 20deg);
}
.galeria-section .section-heading { color: var(--crema); }
.galeria-section .underline-verde { background: var(--dorado); }
.galeria-section p.lead-text {
  color: rgba(245,240,224,0.75);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}

.galeria-track-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.galeria-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}
.galeria-slide {
  flex-shrink: 0;
  width: calc(33.333% - 12px);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.galeria-slide .slide-ph {
  height: 220px;
  display: flex; align-items: flex-end;
  padding: 16px;
}
.galeria-slide .slide-title {
  font-family: 'Agrandir', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--crema);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(45,74,30,0.75);
  padding: 6px 12px;
  border-radius: 4px;
}
.gs-1 { background: linear-gradient(135deg, #1a3010, #4a6428); }
.gs-2 { background: linear-gradient(135deg, #2d4a1e, #587030); }
.gs-3 { background: linear-gradient(135deg, #223820, #3d5a28); }
.gs-4 { background: linear-gradient(135deg, #1e3818, #4a6830); }
.gs-5 { background: linear-gradient(135deg, #283c18, #527033); }
.gs-6 { background: linear-gradient(135deg, #1e3012, #3a5823); }

.galeria-nav {
  display: flex; align-items: center; gap: 10px;
  margin-top: 28px;
  position: relative; z-index: 1;
}
.galeria-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(200,160,48,0.4);
  color: var(--crema);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.galeria-btn:hover { background: var(--dorado); color: var(--verde-oscuro); }

/* ─────────────────────────────────────
    9. VALIDACIÓN
───────────────────────────────────── */
.validacion-section {
  background-image: url('../images/fondo6.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0;
  background-color: #9aa440;
  position: relative;
}
.validacion-section .mano1, .validacion-section .mano2 {
  background-image: url('../images/mano1.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 350px;
  width: 350px;
  position: absolute;
  top: 100px;
}
.validacion-section .mano1 {
  background-position-x: -25px;
}
.validacion-section .mano2 {
  background-image: url('../images/mano2.png');
  top: 200px;
  right: 0;
  background-position: 25px;
}
.validacion-card {
  background-image: url('../images/caja1.png');
  background-repeat: no-repeat;
  background-size: contain;
  padding: 110px 90px;
  text-align: center;
  background-position: center;
  height: 100%;
}
.validacion-card-2 {
  background-image: url('../images/caja2.png');
}
.val-icon { display: none; }
.validacion-card h4 {
  font-family: 'Agrandir', sans-serif;
  font-size: 38ppx;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--crema);
  margin-bottom: 10px;
}
.validacion-card h4::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: rgba(34,34,34,0.5);
  margin: 10px auto 16px;
}
.validacion-card p {
  font-size: 16px;
  color: var(--crema);
  line-height: 1.75;
  margin-bottom: 24px;
}
.servicios-frame {
  border-color: var(--verde-claro);
}
.btn-validar {
  display: inline-block;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 30px;
  color: var(--blanco);
  font-family: 'Agrandir', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 28px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-validar:hover { background: rgba(255,255,255,0.12); border-color: var(--blanco); }

/* ─────────────────────────────────────
    RESPONSIVE
───────────────────────────────────── */
@media (max-width: 991px) {
  .mision-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
  }
  .validacion-section .mano1, .validacion-section .mano2 {
    display: none;
  }
  .mi-2 { grid-column: 1 / 3; grid-row: 1; }
  .mi-1 { grid-column: 1; grid-row: 2; }
  .mi-3 { grid-column: 2; grid-row: 2; }
  .mi-4 { grid-column: 1; grid-row: 3; }
  .mi-5 { grid-column: 2; grid-row: 3; }
  .galeria-slide { width: calc(50% - 8px); }
  .woocommerce-page img.cerveza-imagen {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .hero-slider { height: 380px; }
  .stat-item + .stat-item::before { display: none; }
  .servicios-frame { padding: 32px 20px; }
  .serv-items-grid { grid-template-columns: 1fr; }
  .validacion-card::before,
  .validacion-card::after { display: none; }
  .woocommerce-page img.cerveza-imagen {
    width: initial;
  }
}

/* ─────────────────────────────────────
   ANIMACIONES DE ENTRADA (scroll reveal)
───────────────────────────────────── */
.js-anim {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js-anim.from-left  { transform: translateX(-44px); }
.js-anim.from-right { transform: translateX(44px); }
.js-anim.scale-up   { transform: scale(0.91) translateY(14px); }
.js-anim.visible    { opacity: 1 !important; transform: none !important; }

/* Stagger delays */
.js-anim.d1 { transition-delay: 0.08s; }
.js-anim.d2 { transition-delay: 0.16s; }
.js-anim.d3 { transition-delay: 0.24s; }
.js-anim.d4 { transition-delay: 0.32s; }
.js-anim.d5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .js-anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─────────────────────────────────────
   ANIMACIÓN DE CARGA DEL HERO
───────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge     { animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.hero-title     { animation: heroFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.45s both; }
.hero-cta       { animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.75s both; }
.hero-title-box h1 { animation: heroFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s both; }

/* ─────────────────────────────────────
   HOVER MEJORADO EN CARDS
───────────────────────────────────── */
.validacion-card {
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.32s ease;
}
.merch-card {
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
}
.merch-card:hover { transform: translateY(-6px); }

.product-thumb {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.product-thumb:hover { transform: scale(1.05); }

.punto-item {
  transition: background 0.25s ease, padding-left 0.25s ease;
  border-radius: 20px;
  width: 70%;
  margin: 10px;
  margin-left: 15%;
}
.punto-item:hover {
  background: rgba(200,160,48,0.07);
  padding-left: 24px;
}

/* ─────────────────────────────────────
   PARALLAX: hero-section (páginas internas)
───────────────────────────────────── */
.hero-section {
  background-image: url(https://dorcherbier.com/wp-content/uploads/2026/05/Recurso-105-scaled.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.caja-hero {
  background-image: url('../images/caja.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  padding: 60px 32px;
  width: 637px;
  height: 430px;
}
.hero-content .container {
  max-width: 1460px;
}
/* ─────────────────────────────────────
   TIPOS DE CERVEZAS
───────────────────────────────────── */
.tipos-cervezas-section {
  background-image: url('https://dorcherbier.com/wp-content/uploads/2026/05/bg-nosotros-vosc.png');
  /*background-size: contain;*/
  background-position: top;
  background-repeat: repeat;
  padding: 90px 0 100px;
  overflow: hidden;
  position: relative;
}
.tipos-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.tipos-heading {
  font-family: 'Agrandir', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--blanco) !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
}
.tipos-heading span {
  color: var(--verde-claro);
}
.tipos-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.tipos-track-outer {
  overflow: hidden;
  flex: 1;
}
.tipos-track {
  display: flex;
  gap: 24px;
  width: 100%;
}
.tipo-slide {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 calc(50% - 12px);
  width: calc(50% - 12px);
  background: transparent;
  padding: 10px 0;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 20px;
}
.tipo-img {
  flex: 0 0 140px;
  text-align: center;
}
.tipo-img img {
  max-height: 280px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.45));
}
.tipo-img-ph {
  width: 120px;
  height: 280px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  margin: 0 auto;
}
.tipo-info {
  flex: 1;
  color: var(--blanco);
  padding-right: 20px;
}
.tipo-subtitulo {
  font-family: 'Agrandir', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--blanco);
  font-style: italic;
}
.tipo-info .underline-gold {
  width: 200px;
  height: 3px;
  background: var(--blanco);
  margin-bottom: 12px;
}
.tipo-info p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}
.btn-tipo {
  display: inline-block;
  border: 2px solid var(--blanco);
  background: var(--blanco);
  color: var(--verde-oscuro);
  font-family: 'Agrandir', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 26px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-radius: 10px;
}
.btn-tipo:hover {
  color: var(--blanco);
  background: transparent;
}
.tipos-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff61;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--verde-oscuro);
  color: var(--blanco);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
}
.tipos-arrow.tipos-prev {
  left: 5%;
}
.tipos-arrow.tipos-next {
  right: 5%;
}
.tipos-arrow:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--blanco);
}
.tc-arrow.tc-prev.tipos-arrow {
  left: 1%;
}
.tc-arrow.tc-next.tipos-arrow {
  right: 1%;
}

/* ─────────────────────────────────────
   MOSAICO DE FOTOS
───────────────────────────────────── */
.mosaico-section {
  width: 100%;
  overflow: hidden;
}
.mosaico-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 0;
}
/* Fila 1: 50% – 25% – 25% | Fila 2: 25% – 25% – 50% */
.mosaico-item:nth-child(1),
.mosaico-item:nth-child(6) { grid-column: span 2; }
.mosaico-item {
  overflow: hidden;
}
.mosaico-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mosaico-item:hover img {
  transform: scale(1.05);
}
.mosaico-ph {
  width: 100%;
  height: 100%;
  background: var(--verde-medio);
}

@media (max-width: 767px) {
  .tipo-slide { flex: 0 0 100%; width: 100%; }
  .tipos-heading { font-size: 1.8rem; }
  .mosaico-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 480px) {
  .mosaico-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}

/* ─────────────────────────────────────
   PUNTOS DESTACADOS
───────────────────────────────────── */
.puntos-section {
  background-image: url(https://vibra.work/dorcher/wp-content/uploads/2026/05/Recurso-22-scaled.png);
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.puntos-logo-icon, .puntos-logo-icon2 {
  position: absolute;
  top: -83px;
  width: 100px;
  left: -32px;
}
.puntos-logo-icon2 {
  top: initial;
  left: initial;
  right: 20px;
  bottom: 10px;
  width: 55px;
}
.puntos-subtitulo {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde-oliva);
  margin-bottom: 8px;
}
.puntos-titulo {
  font-family: 'Agrandir', sans-serif;
  font-size: 5.8rem !important;
  font-weight: 700;
  color: var(--blanco) !important;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}
.puntos-divider {
  border: none;
  border-top: 6px solid var(--blanco);
  width: 300px;
  margin: 0 0 28px 0;
  opacity: 1;
}
.puntos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
.puntos-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 10px;
  padding: 20px;
  transition: background 0.25s ease;
}
.puntos-card:hover {
  background: rgba(255,255,255,0.09);
}
.puntos-dot {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--blanco);
  margin-top: 4px;
  background-color: #fff;
}
.puntos-card-subtitulo {
  font-family: 'Agrandir', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blanco);
  margin-bottom: 6px;
}
.puntos-card-texto {
  font-size: 18px;
  color: var(--crema);
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .puntos-titulo { font-size: 2.1rem; }
  .puntos-grid { grid-template-columns: 1fr; }
  .tipo-info {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .puntos-section { padding: 60px 0; }
}

/* ─────────────────────────────────────
   VIDEO DORCHER
───────────────────────────────────── */
.video-dorcher-section {
  background-image: url('https://vibra.work/dorcher/wp-content/uploads/2026/05/Recurso-27-scaled.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.video-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-ph {
  width: 100%;
  height: 100%;
  background: var(--verde-oscuro);
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--blanco);
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.video-play-btn:hover {
  background: rgba(255, 255, 255, 0.38);
  color: var(--blanco);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-titulo {
  font-family: 'Agrandir', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--verde-oscuro);
  margin-bottom: 24px;
}
.video-titulo-pre {
  color: #fff;
}
.video-texto {
  color: #fff;
  line-height: 1.75;
  font-size: 16px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .video-titulo { font-size: 2.4rem; }
}
@media (max-width: 767px) {
  .video-dorcher-section { padding: 60px 0; }
  .video-titulo { font-size: 2rem; }
}
/* ── HERO NOSOTROS ── */
.hero-nosotros {
  position: relative;
  height: 615px;
  background: var(--verde-oscuro);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-nosotros .capa-verde {
  position: absolute;
  inset: 0;
  opacity: .5;
}
.hero-nosotros .hero-title-box {
  position: relative;
  z-index: 2;
  padding: 18px 60px;
}
.hero-nosotros .hero-title-box h1 {
  font-family: 'Agrandir', sans-serif;
  color: var(--blanco);
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 6px;
  margin: 0;
  text-transform: uppercase;
}

/* ── INTRO SECTION ── */
.valores-section p.intro-subtitulo {
  font-family: 'Inter', sans-serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde-claro);
  margin-bottom: 0;
}
.intro-titulo {
  font-family: 'Agrandir', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.underline-gold {
  width: 360px;
  height: 6px;
  background: var(--blanco);
  margin-bottom: 22px;
}
.intro-section p {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.intro-img-wrapper {
  border-radius: 4px;
  overflow: hidden;
  height: 460px;
  background: #2f4b1f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--verde-medio), var(--verde-oscuro));
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-img-ph span {
  font-family: 'Agrandir', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── VALORES / PUNTOS SECTION ── */
.valores-section {
  background-color: var(--verde-oscuro);
  background-image: url('../images/fondo5.png');
  background-size: cover;
  background-position: center bottom;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.page-template-page-merchs .valores-section {
  padding-bottom: 70px;
  background-image: url('https://dorcherbier.com/wp-content/uploads/2026/05/Recurso-21-scaled.png');
  background-size: contain;
}
.page-template-page-merchs .merch-section {
  padding-top: 60px;
}
.valores-section h2 {
  color: var(--crema);
  font-size: 74px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.valores-section .underline-gold {
  width: 320px;
  height: 3px;
  background: var(--blanco);
  margin-bottom: 22px;
}
.valores-section p {
  color: var(--crema);
  font-size: 0.95rem;
  line-height: 1.75;
}
.valores-section::before,
.valores-section::after { display: none; }

/* ocultar flores SVG — reemplazadas por el nuevo diseño */.valores-flor-izq,
.valores-flor-izq, .valores-flor-der {
    background-image: url('../images/nos1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 185px;
    left: -170px;
}
.valores-flor-der {
  background-image: url('../images/nos2.png');
  left: auto;
  right: -170px;
}

.valores-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  background: rgb(163 180 34 / 50%);
  border-radius: 50px 50px 0 0;
  padding: 48px 44px;
  position: relative;
  margin: 60px auto 0;
  border: 5px solid #fff;
  border-bottom: 0;
  max-width: 900px;
}
.valores-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: transparent;
  border-radius: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  transition: none;
}
.valores-card:hover { background: transparent; }
.valores-dot {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  margin-top: 3px;
}
.valores-section .valores-card-subtitulo {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 8px;
  font-style: italic;
}
.valores-card-texto {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── ESTADÍSTICAS / NÚMEROS ── */
.stats-section {
  background: var(--blanco);
  padding: 50px 0;
  border-top: 1px solid rgba(45,74,30,0.1);
  border-bottom: 1px solid rgba(45,74,30,0.1);
}
.stat-item {
  text-align: center;
  padding: 10px 0;
}
.stat-numero {
  font-family: 'Original Absinthe', sans-serif;
  font-size: 70px;
  font-weight: normal;
  color: #333;
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: 'Agrandir', sans-serif;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--negro);
  display: block;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  background: rgba(45,74,30,0.2);
  align-self: stretch;
  margin: 10px 0;
}

/* ── PRODUCTOS CAROUSEL ── */
.productos-section {
  background-image: url(https://vibra.work/dorcher/wp-content/uploads/2026/05/Recurso-21-scaled.png);
  padding: 100px 0;
}
.productos-track-wrapper {
  position: relative;
}
.productos-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
}
.producto-card {
  flex-shrink: 0;
  width: calc(50% - 12px);
  /*background: var(--blanco);*/
  border: 3px solid rgb(255 255 255);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.producto-card:hover {
  box-shadow: 0 12px 36px rgba(45,74,30,0.14);
  transform: translateY(-4px);
}
.producto-img-wrap {
  flex-shrink: 0;
  width: 110px;
  height: 160px;
  background: var(--gris-claro);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.producto-img-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.producto-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--verde-medio), var(--verde-oscuro));
}
.producto-nombre {
  font-family: 'Agrandir', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 10px;
}
.producto-texto {
  font-size: 0.87rem;
  color: #ffffff;
  line-height: 1.65;
  margin-bottom: 18px;
}
.btn-producto {
  display: inline-block;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: 'Agrandir', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-producto:hover {
  background: var(--verde-oscuro);
  color: var(--blanco);
}

/* flechas carrusel */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--verde-oscuro);
  border: none;
  color: var(--blanco);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.carousel-arrow:hover { background: var(--dorado); }
.arrow-prev { left: -22px; }
.arrow-next { right: -22px; }

/* ── TESTIMONIOS / TEXTO SECCIÓN ── */
.testimonio-section {
  background: #f2f0ea;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonio-section::before { display: none; }

/* slider track */
.txt-track-outer {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.txt-track {
  display: flex;
  transition: transform 0.45s ease;
}
.txt-slide {
  flex: 0 0 100%;
  width: 100%;
}
.testimonio-seccion-label {
  font-family: 'Agrandir', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #3e4310;
  margin-bottom: 0;
  position: relative;
}
.testimonio-seccion-label::after {
  content: '';
  display: block;
  width: 200px;
  height: 2px;
  background: #3e4310;
  margin: 16px auto 0;
}
.testimonio-texto {
  max-width: 800px;
  margin: 32px auto 0;
  font-size: 0.97rem;
  line-height: 1.85;
  color: #3e4310;
  position: relative;
}
.btn-testimonio {
  display: inline-block;
  background: var(--verde-oscuro);
  color: #ffffff;
  font-family: 'Agrandir', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 0;
  text-decoration: none;
  margin-top: 36px;
  border-radius: 8px;
  width: min(220px, 100%);
  text-align: center;
  transition: background 0.22s;
  cursor: pointer;
}
.btn-testimonio:hover {
  background: #5a6820;
  color: #ffffff;
}

/* arrows laterales */
.txt-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #3e4310;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px 20px;
  z-index: 5;
  transition: opacity 0.2s;
}
.txt-carousel-arrow:hover { opacity: 0.5; }
.txt-arrow-prev { left: 20px; }
.txt-arrow-next { right: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .hero-nosotros .hero-title-box h1 { font-size: 2.2rem; letter-spacing: 3px; }
  .hero-nosotros .hero-title-box { padding: 14px 28px; }
  .intro-titulo { font-size: 2.2rem; }
  .valores-card-grid { grid-template-columns: 1fr; }
  .producto-card { width: 100%; flex-direction: column; text-align: center; }
  .stat-divider { display: none; }
  .testimonio-seccion-label { font-size: 2rem; }
}
@media (max-width: 575px) {
  .producto-card { width: calc(100%); }
  .tipo-info {
    padding-right: 0;
  }
}
/* ── HERO BLOG ── */
.hero-blog {
  position: relative;
  height: 415px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-blog .capa-verde {
  position: absolute;
  inset: 0;
  opacity: .5;
}
.hero-blog .hero-title-box {
  position: relative;
  z-index: 2;
  padding: 18px 80px;
}
.hero-blog .hero-title-box h1 {
  font-family: 'Agrandir', sans-serif;
  color: var(--blanco);
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 6px;
  margin: 0;
  text-transform: uppercase;
}
/* ── FILTROS DE CATEGORÍAS ── */
.filtros-section {
  padding: 18px 0 0;
  background-image: url(https://dorcherbier.com/wp-content/uploads/2026/05/2-scaled.png);
}
.filtros-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 0 18px;
  justify-content: center;
}
.btn-filtro {
  font-family: 'Agrandir', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 26px;
  border: 2px solid var(--blanco);
  border-radius: 4px;
  background: transparent;
  color: var(--blanco);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  border-radius: 25px;
}
.btn-filtro:hover,
.btn-filtro.activo {
  background: var(--blanco);
  color: var(--verde-oscuro);
}

/* ── GRID DE POSTS ── */
.posts-grid-section {
  background-image: url(https://dorcherbier.com/wp-content/uploads/2026/05/2-scaled.png);
  padding: 0 0 50px;
}
.post-card {
  cursor: pointer;
  transition: transform 0.25s ease;
}
.post-card:hover { transform: translateY(-4px); }

.post-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--verde-medio);
  margin-bottom: 12px;
}
.post-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.post-card:hover .post-img-wrap img { transform: scale(1.05); }

.post-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--verde-medio), var(--verde-oscuro));
}

.post-titulo {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--blanco);
  line-height: 1.5;
  margin-bottom: 4px;
}
.post-titulo strong { font-weight: 700; }
.post-fecha {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.72);
}

/* ── ARTÍCULO / POST DETALLE ── */
.articulo-section {
  background: var(--crema);
  padding: 60px 0 70px;
}
.articulo-titulo {
  font-family: 'Agrandir', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 18px;
}
.articulo-autor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.autor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--verde-oscuro);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.autor-avatar svg { width: 20px; height: 20px; }
.autor-nombre {
  font-family: 'Agrandir', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde-oscuro);
}
.articulo-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 32px;
  background: var(--verde-medio);
}
.articulo-hero-ph {
  width: 100%;
  height: 400px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--verde-medio), var(--verde-oscuro));
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.articulo-hero-ph span {
  font-family: 'Agrandir', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.articulo-cuerpo p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}
.articulo-cuerpo h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 6px;
  margin-top: 24px;
}

/* ── POST CARD LINK (no subrayado, hereda estilos) ── */
.post-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.post-card-link:hover { text-decoration: none; color: inherit; }

/* ── ETIQUETA DE CATEGORÍA EN CARD ── */
.post-categoria {
  display: inline-block;
  font-family: 'Agrandir', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde-oscuro);
  margin-bottom: 4px;
}

/* ── BADGE CATEGORÍA EN SINGLE ── */
.badge-categoria {
  display: inline-block;
  background: var(--verde-medio);
  color: var(--crema);
  font-family: 'Agrandir', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
  margin-left: 6px;
  transition: background 0.2s;
}
.badge-categoria:hover { background: var(--verde-oscuro); color: var(--dorado); }

/* ── INTRO DEL BLOG ── */
.blog-intro-section { 
  background: var(--crema);
  display: none;
 }
.blog-intro-section .underline-gold { display: block; width: 60px; height: 3px; background: var(--dorado); margin: 8px auto 0; }

/* ── PAGINADOR BLOG ── */
.blog-paginador {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 36px 0 12px;
}
.pag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  font-family: 'Agrandir', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--crema);
  background: transparent;
  cursor: pointer;
  user-select: none;
}
.pag-btn:hover {
  background: rgba(200,160,48,0.18);
  border-color: var(--dorado);
  color: var(--dorado);
}
.pag-btn.pag-current {
  background: var(--dorado);
  border-color: var(--dorado);
  color: var(--verde-oscuro);
  font-weight: 700;
  pointer-events: none;
}
.pag-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}
.pag-btn.pag-prev,
.pag-btn.pag-next {
  min-width: 38px;
  font-size: 1rem;
}
.pag-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 38px;
  font-family: 'Agrandir', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}
.logo {
  width: 200px;
}
/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .hero-blog .hero-title-box h1 { font-size: 2.2rem; letter-spacing: 3px; }
  .hero-blog .hero-title-box { padding: 14px 32px; }
  .articulo-titulo { font-size: 1.6rem; }
  .articulo-hero-img,
  .articulo-hero-ph { height: 240px; }
  .filtros-inner { gap: 8px; }
  .btn-filtro { padding: 7px 14px; font-size: 0.75rem; }

  .hero-title {
    font-size: clamp(3.4rem, 5vw, 4rem);
    margin-left: 0;
  }
  .puntos-subtitulo {
    display: inline-block;
    width: calc(100% - 100px);
    float: right;
  }
  .puntos-logo-icon {
    display: inline-block;
  }
  .puntos-section .row>* {
    margin-top: 15px;
  }
  .puntos-section .puntos-titulo {
    margin-top: 100px;
  }
  .puntos-section {
    background-image: none;
    background-color: #4c5025;
  }
  .puntos-section .btn-outline-crema {
    margin: 0 0 20px;
  }
  .video-titulo-pre,
  .section-heading {
    color: #ffffff;
  }
  .tipo-slide {
    display: block;
  }
  .mobile-menu.is-open {
    max-height: 550px;
  }
  #mobile-menu .mobile-lang-links {
    padding: 20px 0;
  }
}
.hero-blog .capa-verde {
  background: #3e420f;
}

/* PRODUCT DETAIL */
.product-detail {
  background: var(--crema);
  padding: 48px 60px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* LEFT – imagen + thumbnails */
.product-images { display: flex; flex-direction: row; gap: 14px; align-items: flex-start; }
.main-image-wrap {
  flex: 1;
  aspect-ratio: 1/1;
  background: #d9d4c7;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.main-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  order: -1;
}
.thumb {
  width: 72px; height: 72px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  background: #d9d4c7;
}
.thumb.active { border-color: var(--verde-oscuro); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* RIGHT – info */
.product-info { display: flex; flex-direction: column; gap: 18px; }
.product-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--negro);
  line-height: 1.05;
}
.stars { display: flex; gap: 4px; }
.star {
  width: 20px; height: 20px;
  background: var(--dorado);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.product-description {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #555;
  max-width: 420px;
}
.btn-consultar {
  display: inline-block;
  background: var(--verde-oscuro);
  color: var(--crema);
  font-family: 'Agrandir', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 36px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}
.btn-consultar:hover { background: var(--verde-medio); }

/* FAQ */
.faq-section {
  border-top: 1px solid var(--gris-claro);
  padding-top: 18px;
}
.faq-section h4 {
  font-family: 'Agrandir', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--negro);
  margin-bottom: 10px;
}
.faq-section p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #555;
}
.faq-item { margin-bottom: 16px; }
.faq-item h5 {
  font-family: 'Agrandir', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--negro);
  margin-bottom: 6px;
}

/* PRODUCTOS RELACIONADOS */
.related-section {
  background-color: linear-gradient(135deg, var(--verde-oliva) 0%, var(--verde-claro) 100%);
  background-image: url(https://dorcherbier.com/wp-content/uploads/2026/05/trama-verde-claro-ok.png);
  background-size: contain;
  padding: 50px 0 60px;
}
.related-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.related-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blanco);
}
.related-arrow {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--blanco);
  cursor: pointer;
  line-height: 1;
  padding: 0 8px;
  opacity: 0.8;
}
.related-arrow:hover { opacity: 1; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.merch-ancho {
  max-width: 900px;
  margin: 0 auto;
}
.merch-card {
  background: rgba(255,255,255,0.18);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.25s;
  height: 100%;
}
.merch-card:hover { transform: translateY(-4px); }
.merch-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(255,255,255,0.25);
}
.merch-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.merch-card:hover .merch-card-img img { transform: scale(1.05); }
.merch-card-body {
  padding: 14px 16px 18px;
}
.merch-card-body p {
  font-family: 'Agrandir', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blanco);
  line-height: 1.3;
}
.merch-card-body p span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

/* CAROUSEL ARROWS (flanking related section) */
.related-outer {
  position: relative;
}
.side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--blanco);
  font-size: 1.6rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
  z-index: 2;
}
.side-arrow:hover { background: rgba(255,255,255,0.35); }
.side-arrow.left { left: -50px; display: none;}
.side-arrow.right { right: -50px; display: none;}
.btn-testimonio {
  background-color: #ffffff99;
  color: #949c48;
  border: none;
  border-radius: 10px;
  padding: 6px 36px 2px;
  font-family: 'Agrandir', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
/* FOOTER */
.footer {
  background: var(--verde-oscuro);
  padding: 48px 60px 28px;
  color: rgba(255,255,255,0.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 28px;
}
.footer-logo {
  font-family: 'Agrandir', sans-serif;
  font-size: 1.4rem;
  color: var(--crema);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
}
.footer-logo span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: var(--dorado);
  font-weight: 400;
}
.footer-desc { font-size: 0.82rem; line-height: 1.85; }
.footer-col h5 {
  font-family: 'Agrandir', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crema);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--dorado); }
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 30px auto 0;
  font-size: 0.78rem;
}
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--blanco);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Agrandir', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  letter-spacing: 0;
}
.social-icon:hover { background: var(--dorado); color: var(--verde-oscuro); }

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .product-detail { padding: 32px 20px; }
  .product-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-title { font-size: 2rem; }
  .related-inner { padding: 0 20px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: 36px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.ag-root {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  background: #4a5a0a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  z-index: 9999999;
}
.ag-root .brand-logo {
  margin-bottom: 40px;
}
.ag-bg {
  position: absolute;
  inset: 0;
  background: url('../images/edad.png') center/cover no-repeat;
}
.ag-stripe {
  position: absolute;
  left: 0; right: 0;
  height: 14px;
  background: #8a9e1a;
  z-index: 2;
}
.ag-stripe.top { top: 52px; }
.ag-stripe.bottom { bottom: 52px; }
.ag-bottle {
  position: absolute;
  bottom: 0;
  z-index: 3;
  width: 140px;
}
.ag-bottle.left { left: -10px; }
.ag-bottle.right { right: -10px; }
.ag-center {
  position: relative;
  z-index: 4;
  text-align: center;
  color: #f0e8c0;
  padding: 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ag-logo-since {
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: #c8b870;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.ag-logo-name {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: #f0e8c0;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.ag-logo-sub {
  font-size: 1rem;
  letter-spacing: 14px;
  color: #c8b870;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: 400;
}
.ag-question {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 22px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.ag-fields {
  display: flex;
  gap: 40px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.ag-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ag-field-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #f0e8c0;
  text-transform: uppercase;
}
.ag-field-hint {
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: #c8b870;
  text-transform: uppercase;
}
.ag-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #c8b870;
  color: #f0e8c0;
  font-size: 1rem;
  letter-spacing: 4px;
  text-align: center;
  width: 56px;
  padding: 4px 2px 6px;
  outline: none;
  font-family: 'Georgia', serif;
  caret-color: #c8b870;
}
.ag-input.wide { width: 78px; }
.ag-input::placeholder { color: #c8b87077; font-size: 0.78rem; letter-spacing: 3px; }
.ag-input:focus { border-bottom-color: #f0e8c0; }
.ag-btn {
  background: transparent;
  border: 1.5px solid #c8b870;
  color: #f0e8c0;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 10px 44px;
  cursor: pointer;
  font-family: 'Georgia', serif;
  transition: background 0.2s;
  border-radius: 1px;
}
.ag-btn:hover { background: rgba(200,184,112,0.15); }
.ag-msg {
  margin-top: 12px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  min-height: 18px;
  font-family: sans-serif;
}
.ag-msg.err { color: #f09595; }
.ag-msg.ok  { color: #9FE1CB; }
.single-product .hero-title-box h1 {
  font-size: 70px;
}
.tipos-cervezas-section {
  background-position: bottom;
}
.single-dorcher_blog .hero-title-box h1 {
  background: none;
  padding-top: 0;
  font-size: 60px;
}
.single-dorcher_blog .hero-title-box h1:before,
.single-dorcher_blog .hero-title-box h1:after {
  display: none;
}
@media (max-width: 1400px) {
  .hero-title {
    font-size: 100px;
  }
  .hero-title-anexo {
    font-size: 20px;
  }
  .caja-hero {
    background-image: url('../images/caja.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    padding: 50px 32px;
    width: 540px;
    height: 372px;
    /*margin-left: 50px;*/
  }
  .puntos-titulo {
    font-size: 4.5rem !important;
  }
  .puntos-logo-icon2 {
    bottom: -15px;
  }
}
@media (max-width: 1200px) {
  .puntos-section {
    padding: 50px 0;
  }
  .tipo-info {
    max-width: 200px;
  }
  .puntos-subtitulo {
    font-size: 30px;
  }
  .puntos-titulo {
    font-size: 3rem !important;
  }
  .puntos-divider {
    width: 200px;
  }
  .puntos-logo-icon {
    top: -45px;
    width: 64px;
  }
  .puntos-logo-icon2 {
    right: 50px;
  }
  .puntos-card {
    padding: 10px;
  }
  .puntos-card-texto {
    font-size: 12px;
  }
  .puntos-card-subtitulo {
    font-size: 18px;
  }
  .video-titulo {
    font-size: 2rem;
    color: var(--blanco);
  }
  .validacion-card h4 {
    font-size: 1.2rem;
  }
  .tipos-arrow.tipos-prev {
    left: 1%;
  }
  .tipos-arrow.tipos-next {
    right: 1%;
  }
  .validacion-card {
    padding: 110px 50px;
  }
}
@media (max-width: 1010px) {
  .logo {
    width: 120px;
  }
}
@media (max-width: 992px) {
  .titulo-cuerpo-section .container .col-lg-8 {
    margin-top: 0 !important;
  }
  .puntos-card {
    padding: 0;
  }
  .serv-titulo {
    font-size: 1.4rem;
  }
  .stat-number {
    font-size: 50px;
  }
  .stat-label {
    font-size: 16px;
  }
  .nav-links li a, .navbar-dorcher .nav-link {
    padding: 6px;
    font-size: 0.7rem;
  }
  .hero-title {
    font-size: 80px;
  }
  .testimonio-texto {
    max-width: 620px;
  }
  .single-dorcher_blog .hero-title-box h1 {
    font-size: 48px;
  }
  .single-product .hero-title-box h1 {
    font-size: 45px;
  }
  .hero-title-anexo {
    font-size: 16px;
  }
  .caja-hero {
    width: 420px;
    height: 320px;
  }
  .puntos-subtitulo {
    font-size: 20px;
  }
  .puntos-logo-icon2 {
    right: 20px;
    bottom: 0px;
    width: 30px;
  }
  .puntos-grid {
    gap: 15px 20px;
    padding-left: 36px;
  }
  .puntos-card-subtitulo {
    font-size: 14px;
    margin-bottom: 0;
  }
  .puntos-dot {
    width: 12px;
    height: 12px;
  }
  .video-titulo {
    color: var(--blanco);
  }
  .tipos-heading {
    font-size: 2.6rem;
  }
  .tipo-slide {
    gap: 10px;
    padding: 10px;
  }
  .tipo-info .underline-gold {
    width: 120px;
  }
  .titulo-cuerpo-section p {
    max-width: 100%;
    margin-top: 40px;
  }
  .validacion-card {
    max-width: 460px;
    margin: 0 auto;
  }
  .validacion-section .mano2 {
    top: 500px;
  }
  .servicios-section {
    background-image: none;
  }
  .video-dorcher-section {
    background: #97a13b;
  }
  .intro-section,
  .contact-intro-section {
    background-image: none;
    background-color: #96a037;
  }
  .single-product .hero-title-box h1 {
    font-size: 60px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 910px) {
  .puntos-grid {
    gap: 5px;
  }
}
@media (max-width: 768px) {
  .puntos-section {
    padding: 80px 0 40px;
  }
  .puntos-logo-icon, .puntos-logo-icon2 {
    top: 0;
  }
  .puntos-section .puntos-titulo {
    margin-top: 50px;
    text-align: center;
  }
  .puntos-divider {
    width: 300px;
    margin: 0 auto 30px;
  }
  .puntos-section .btn-outline-crema {
    margin: 0 auto 20px;
    display: block;
    max-width: 200px;
  }
  .puntos-grid {
    gap: 15px;
  }
  .serv-titulo {
    color: var(--verde-oliva);
  }
  .hero-title {
    font-size: 60px;
  }
  .caja-hero {
    width: 350px;
    height: 280px;
  }
  .testimonio-texto {
    max-width: 500px;
  }
  .titulo-form {
    font-size: 2.6rem;
  }
  .single-product .hero-title-box h1 {
    font-size: 36px;
    padding-top: 35px;
  }
  .hero-title-box h1 {
    padding: 50px 0 0;
    min-width: 220px;
    text-align: center;
  }
  .tipos-cervezas-section {
    background-size: 2400px;
  }
}
@media (max-width: 576px) {
  .puntos-logo-icon {
    left: 20px;
    width: 60px;
  }
  .testimonio-texto {
    max-width: 400px;
  }
  .txt-arrow-prev {
    left: 0;
  }
  .txt-arrow-next {
    right: 0;
  }
  .tipos-cervezas-section .tipos-inner {
    padding: 0 60px;
  }
  .titulo-cuerpo-section .container .col-lg-4 {
    padding: 0 60px;
  }
  .merch-section h2 strong {
    font-size: 2rem;
  }
  .testimonio-section {
    padding: 70px 45px;
  }
  .articulo-section .row {
    padding: 0 15px;
  }
  .validacion-card {
    padding: 35px;
    height: 400px;
    max-width: 400px;
  }
  .validacion-card h4 {
    padding-top: 20px;
  }
  .locations-section .puntos-col {
    max-height: 605px;
    overflow-y: scroll;
  }
}
/* ══════════════ LIGHTBOX VIDEO ══════════════ */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-lightbox[hidden] { display: none; }
.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}
.video-lightbox-content {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
  overflow: hidden;
}
.video-lightbox-body,
.video-lightbox-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-lightbox-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.video-lightbox-close:hover { background: rgba(0, 0, 0, 0.85); }
