/* ==========================================================================
   GRAN ROBLE CAFÉ - HOJA DE ESTILOS PRINCIPAL
   Paleta: Cremita & Verde con acentos Café Tostado y Oro
   ========================================================================== */

/* ── FUENTES Y VARIABLES GLOBALES ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Paleta Verde (Naturaleza & Bosque) */
  --gr-green-900: #14281c;
  --gr-green-800: #1c3827;
  --gr-green-700: #254d35;
  --gr-green-600: #2e603b;
  --gr-green-500: #3d804f;
  --gr-green-400: #4bb761;
  --gr-green-300: #7ecb8f;
  --gr-green-100: #eaf5ee;
  --gr-green-50:  #f3f9f5;

  /* Paleta Cremita (Artesanal & Pergamino) */
  --gr-cream-50:  #fdfcf8;
  --gr-cream-100: #faf6ee;
  --gr-cream-200: #f6e3b9; /* Color oficial */
  --gr-cream-300: #edd7a6;
  --gr-cream-400: #deb976;
  --gr-cream-500: #cf9d4e;

  /* Paleta Café Tostado (Granos & Madera) */
  --gr-coffee-900: #1a0a00;
  --gr-coffee-800: #2d1a0e;
  --gr-coffee-700: #4a2a0e;
  --gr-coffee-600: #794d27;
  --gr-coffee-500: #966133;
  --gr-coffee-100: #f7ede3;

  /* Neutros y Acentos */
  --gr-gold: #d4af37;
  --gr-gold-light: #f5e4ab;
  --gr-white: #ffffff;
  --gr-dark: #121513;
  --gr-muted: #5e685f;
  --gr-border: rgba(46, 96, 59, 0.12);

  /* Tipografías */
  --font-heading: 'Oswald', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;

  /* Sombras */
  --shadow-sm: 0 4px 12px rgba(28, 56, 39, 0.06);
  --shadow-md: 0 10px 28px rgba(28, 56, 39, 0.10);
  --shadow-lg: 0 20px 45px rgba(28, 56, 39, 0.15);
  --shadow-warm: 0 12px 35px rgba(121, 77, 39, 0.18);

  /* Bordes */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transición */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── RESET & BASE ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: var(--font-sans);
  color: var(--gr-dark);
  background-color: var(--gr-cream-100);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gr-green-900);
}

.font-serif {
  font-family: var(--font-serif);
  text-transform: none;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── FONDOS Y CONTENEDORES ── */
.bg-cream-base {
  background-color: var(--gr-cream-200);
}

.bg-cream-light {
  background-color: var(--gr-cream-100);
}

.bg-cream-warm {
  background-color: #f7edd8;
}

.bg-green-dark {
  background-color: var(--gr-green-900);
}

.bg-green-base {
  background-color: var(--gr-green-800);
}

.bg-coffee-dark {
  background-color: var(--gr-coffee-800);
}

.bg-grain-texture {
  background-color: var(--gr-cream-100);
  background-image: radial-gradient(rgba(121, 77, 39, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
}

/* ── TOP BAR INFORMATIVO ── */
.gr-topbar {
  background: var(--gr-green-900);
  color: var(--gr-cream-200);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 6px 0;
  border-bottom: 1px solid rgba(246, 227, 185, 0.15);
}

.gr-topbar a {
  color: var(--gr-cream-200);
  opacity: 0.9;
}

.gr-topbar a:hover {
  color: var(--gr-white);
  opacity: 1;
}

/* ── HEADER Y NAVBAR STICKY GLASSMORPHISM ── */
header.sticky-top,
header {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
}

.gr-navbar {
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 96, 59, 0.10);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 8px 0 !important;
  width: 100%;
}

.gr-navbar.scrolled {
  background: rgba(250, 246, 238, 0.98);
  box-shadow: 0 4px 20px rgba(20, 40, 28, 0.08);
}

.gr-navbar .navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}

.gr-navbar .navbar-brand img,
.gr-nav-logo {
  /* height: 58px; */
  max-height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.gr-navbar .navbar-brand:hover img {
  transform: scale(1.02);
}

.gr-navbar .nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gr-green-900) !important;
  letter-spacing: 0.09em;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}

.gr-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gr-coffee-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.gr-navbar .nav-link:hover::after,
.gr-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.gr-navbar .nav-link:hover {
  color: var(--gr-coffee-600) !important;
}

/* ── BOTONES PERSONALIZADOS ── */
.btn-gr-primary {
  background: var(--gr-green-700);
  color: var(--gr-cream-200);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gr-green-600);
  box-shadow: 0 4px 15px rgba(37, 77, 53, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-gr-primary:hover {
  background: var(--gr-green-800);
  color: var(--gr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 77, 53, 0.35);
}

.btn-gr-coffee {
  background: var(--gr-coffee-600);
  color: var(--gr-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gr-coffee-700);
  box-shadow: 0 4px 15px rgba(121, 77, 39, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-gr-coffee:hover {
  background: var(--gr-coffee-700);
  color: var(--gr-cream-200);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(121, 77, 39, 0.35);
}

.btn-gr-outline-green {
  background: transparent;
  color: var(--gr-green-800);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gr-green-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-gr-outline-green:hover {
  background: var(--gr-green-700);
  color: var(--gr-cream-200);
  transform: translateY(-2px);
}

.btn-gr-outline-cream {
  background: rgba(246, 227, 185, 0.12);
  color: var(--gr-cream-200);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gr-cream-200);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-gr-outline-cream:hover {
  background: var(--gr-cream-200);
  color: var(--gr-green-900);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1eb956;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ── HERO SECTION ── */
.gr-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(20, 40, 28, 0.94) 0%, rgba(37, 77, 53, 0.85) 50%, rgba(20, 40, 28, 0.92) 100%),
              url('../img/hero-coffee-banner.jpg') center center / cover no-repeat;
  color: var(--gr-white);
  padding: 120px 0 80px;
  overflow: hidden;
}

.gr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(246, 227, 185, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.gr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 227, 185, 0.18);
  border: 1px solid rgba(246, 227, 185, 0.4);
  color: var(--gr-cream-200);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.gr-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--gr-white);
  margin-bottom: 20px;
}

.gr-hero-title span {
  color: var(--gr-cream-200);
  position: relative;
  display: inline-block;
}

.gr-hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin-bottom: 32px;
  font-weight: 300;
}

.gr-hero-stats {
  border-top: 1px solid rgba(246, 227, 185, 0.2);
  padding-top: 24px;
  margin-top: 36px;
}

.gr-stat-item h4 {
  color: var(--gr-cream-200);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.gr-stat-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.gr-hero-visual {
  position: relative;
  text-align: center;
}

.gr-hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(246, 227, 185, 0.25);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gr-hero-card img {
  max-height: 440px;
  width: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  animation: gr-float 4s ease-in-out infinite;
}

@keyframes gr-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.gr-floating-badge {
  position: absolute;
  background: var(--gr-cream-200);
  color: var(--gr-coffee-800);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gr-floating-badge.badge-top-left {
  top: -15px;
  left: -15px;
}

.gr-floating-badge.badge-bottom-right {
  bottom: -15px;
  right: -15px;
}

/* ── SECCIONES GENERALES ── */
.gr-section {
  padding: 90px 0;
  position: relative;
}

.gr-section-badge {
  display: inline-block;
  background: rgba(46, 96, 59, 0.12);
  color: var(--gr-green-800);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.gr-section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gr-green-900);
  line-height: 1.15;
  margin-bottom: 16px;
}

.gr-section-subtitle {
  font-size: 1.1rem;
  color: var(--gr-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.gr-divider-line {
  width: 60px;
  height: 4px;
  background: var(--gr-coffee-600);
  border-radius: 2px;
  margin: 12px auto 20px;
}

.gr-divider-left {
  margin-left: 0;
}

/* ── CARACTERÍSTICAS & PILARES ── */
.gr-feature-card {
  background: var(--gr-white);
  border: 1px solid var(--gr-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.gr-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gr-green-600), var(--gr-cream-400));
  opacity: 0;
  transition: var(--transition);
}

.gr-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 96, 59, 0.25);
}

.gr-feature-card:hover::before {
  opacity: 1;
}

.gr-feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: var(--gr-green-100);
  color: var(--gr-green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.gr-feature-card:hover .gr-feature-icon {
  background: var(--gr-green-700);
  color: var(--gr-cream-200);
  transform: scale(1.08);
}

.gr-feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gr-green-900);
}

.gr-feature-text {
  font-size: 0.95rem;
  color: var(--gr-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── HISTORIA & ORIGEN ── */
.gr-origin-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gr-origin-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gr-origin-card:hover .gr-origin-img {
  transform: scale(1.04);
}

.gr-origin-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(20, 40, 28, 0.88);
  backdrop-filter: blur(8px);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(246, 227, 185, 0.3);
  color: var(--gr-white);
}

/* ── PERFIL SENSORIAL & NOTAS DE CATA ── */
.gr-sensory-box {
  background: var(--gr-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(121, 77, 39, 0.15);
  box-shadow: var(--shadow-warm);
}

.gr-tasting-item {
  background: var(--gr-cream-50);
  border-left: 4px solid var(--gr-coffee-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.gr-tasting-item:hover {
  background: var(--gr-cream-100);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.gr-tasting-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gr-coffee-700);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.gr-tasting-desc {
  font-size: 0.95rem;
  color: var(--gr-dark);
  margin: 0;
}

/* Medidores de Granos de Café */
.gr-bean-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--gr-green-50);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid rgba(46, 96, 59, 0.08);
}

.gr-bean-rating-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gr-green-900);
  margin: 0;
}

.gr-bean-group {
  display: flex;
  gap: 6px;
}

.gr-bean-icon {
  width: 22px;
  height: 28px;
  transition: transform 0.2s ease;
}

.gr-bean-icon.filled path {
  fill: var(--gr-coffee-800);
}

.gr-bean-icon.empty path {
  fill: none;
  stroke: var(--gr-coffee-800);
  stroke-width: 1.5;
  opacity: 0.3;
}

/* ── EMPAQUE 360° INTERACTIVO ── */
.gr-360-container {
  background: linear-gradient(145deg, #f6e3b9 0%, #edd39e 100%);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}

.gr-flip-card {
  perspective: 1200px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.gr-flip-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gr-flip-card.is-flipped .gr-flip-inner {
  transform: rotateY(180deg);
}

.gr-flip-front,
.gr-flip-back {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.gr-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
}

.gr-flip-card img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(121, 77, 39, 0.25));
}

.gr-360-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.gr-rotate-btn {
  background: var(--gr-coffee-600);
  color: var(--gr-white);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(121, 77, 39, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.gr-rotate-btn:hover {
  background: var(--gr-coffee-700);
  transform: scale(1.1);
}

.gr-360-badge {
  background: rgba(121, 77, 39, 0.15);
  color: var(--gr-coffee-800);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

/* ── TARJETAS DE PRESENTACIONES ── */
.gr-product-card {
  background: var(--gr-white);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gr-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gr-green-500);
}

.gr-product-img-wrap {
  background: var(--gr-cream-200);
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.gr-product-img-wrap img {
  max-height: 260px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.gr-product-card:hover .gr-product-img-wrap img {
  transform: scale(1.06);
}

.gr-product-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gr-green-700);
  color: var(--gr-cream-200);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.gr-product-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gr-product-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gr-green-900);
  margin-bottom: 6px;
}

.gr-product-subtitle {
  font-size: 0.9rem;
  color: var(--gr-coffee-600);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gr-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.gr-product-features li {
  font-size: 0.9rem;
  color: var(--gr-dark);
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gr-product-features li i {
  color: var(--gr-green-600);
}

/* ── FICHA TÉCNICA & TABLA NUTRICIONAL ── */
.gr-nutrition-table-box {
  background: var(--gr-white);
  border: 3px solid var(--gr-coffee-800);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.gr-nutrition-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gr-coffee-900);
  line-height: 1.1;
  margin-bottom: 6px;
}

.gr-line-thick {
  height: 8px;
  background: var(--gr-coffee-900);
  margin: 8px 0;
}

.gr-line-medium {
  height: 4px;
  background: var(--gr-coffee-900);
  margin: 6px 0;
}

.gr-line-thin {
  height: 1px;
  background: rgba(45, 26, 14, 0.3);
  margin: 4px 0;
}

.gr-nut-row {
  display: flex;
  align-items: baseline;
  padding: 4px 0;
  font-size: 0.88rem;
  color: var(--gr-coffee-900);
  font-family: var(--font-sans);
  border-bottom: 1px solid rgba(45, 26, 14, 0.08);
}

.gr-nut-row:last-child {
  border-bottom: none;
}

.gr-nut-col-name {
  flex: 1 1 auto;
  padding-right: 12px;
  min-width: 0;
}

.gr-nut-col-val {
  flex: 0 0 110px;
  text-align: right;
  white-space: nowrap;
}

.gr-nut-row.bold,
.gr-nut-row.bold .gr-nut-col-name {
  font-weight: 700;
}

.gr-nut-row.indent-1 .gr-nut-col-name {
  padding-left: 18px;
}

.gr-nut-row.indent-2 .gr-nut-col-name {
  padding-left: 32px;
}

/* ── CALCULADORA DE CAFÉ INTERACTIVA ── */
.gr-calc-box {
  background: var(--gr-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gr-border);
}

.gr-method-btn {
  background: var(--gr-cream-50);
  border: 2px solid rgba(46, 96, 59, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.gr-method-btn.active,
.gr-method-btn:hover {
  background: var(--gr-green-700);
  color: var(--gr-white);
  border-color: var(--gr-green-700);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.gr-method-btn.active .gr-method-title,
.gr-method-btn:hover .gr-method-title {
  color: var(--gr-cream-200);
}

.gr-method-btn.active .gr-method-sub,
.gr-method-btn:hover .gr-method-sub {
  color: rgba(255, 255, 255, 0.85);
}

.gr-method-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.gr-method-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gr-green-900);
  margin-bottom: 2px;
}

.gr-method-sub {
  font-size: 0.75rem;
  color: var(--gr-muted);
}

.gr-calc-results {
  background: var(--gr-green-900);
  color: var(--gr-cream-200);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 24px;
}

.gr-calc-stat h3 {
  font-size: 2.2rem;
  color: var(--gr-cream-200);
  margin-bottom: 2px;
  font-weight: 700;
}

.gr-calc-stat p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

/* ── PREGUNTAS FRECUENTES (FAQ) ── */
.gr-accordion .accordion-item {
  background: var(--gr-white);
  border: 1px solid var(--gr-border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gr-accordion .accordion-item:hover {
  border-color: rgba(46, 96, 59, 0.3);
}

.gr-accordion .accordion-button {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gr-green-900);
  background: var(--gr-white);
  padding: 20px 24px;
  box-shadow: none !important;
  letter-spacing: 0.03em;
}

.gr-accordion .accordion-button:not(.collapsed) {
  background: var(--gr-green-50);
  color: var(--gr-green-800);
  border-bottom: 1px solid var(--gr-border);
}

.gr-accordion .accordion-body {
  padding: 22px 24px;
  font-size: 0.96rem;
  color: var(--gr-muted);
  line-height: 1.7;
}

/* ── FORMULARIO Y ORDEN DE COMPRA ── */
.gr-contact-box {
  background: var(--gr-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gr-border);
}

.gr-form-control {
  background: var(--gr-cream-50);
  border: 1.5px solid rgba(46, 96, 59, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--gr-dark);
  transition: var(--transition);
}

.gr-form-control:focus {
  background: var(--gr-white);
  border-color: var(--gr-green-600);
  box-shadow: 0 0 0 4px rgba(46, 96, 59, 0.12);
  outline: none;
}

.gr-form-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gr-green-900);
  margin-bottom: 6px;
}

/* ── PUNTOS DE VENTA / PARTNERS ── */
.gr-partner-card {
  background: var(--gr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gr-border);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.gr-partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 96, 59, 0.3);
}

.gr-partner-logo-wrap {
  background: var(--gr-cream-50);
  border: 1px solid rgba(121, 77, 39, 0.12);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.gr-partner-card:hover .gr-partner-logo-wrap {
  background: var(--gr-cream-100);
  border-color: var(--gr-green-500);
}

.gr-partner-logo {
  max-height: 110px;
  max-width: 85%;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.gr-partner-card:hover .gr-partner-logo {
  transform: scale(1.08);
}

/* ── FOOTER ── */
.gr-footer {
  background: var(--gr-green-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 45px 0 20px;
  border-top: 3px solid var(--gr-coffee-600);
  position: relative;
}

.gr-footer-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.gr-footer-logo:hover {
  transform: scale(1.04);
}

.gr-footer-social {
  margin-top: 18px;
}

.gr-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(246, 227, 185, 0.12);
  border: 1.5px solid rgba(246, 227, 185, 0.35);
  color: var(--gr-cream-200) !important;
  font-size: 1.35rem;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.gr-footer-social a:hover {
  background: var(--gr-coffee-600);
  border-color: var(--gr-coffee-600);
  color: var(--gr-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.gr-footer-bottom {
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gr-creator-signature {
  position: absolute;
  bottom: 18px;
  right: 25px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease;
  z-index: 10;
}

.gr-creator-signature:hover {
  color: var(--gr-cream-200);
}

.gr-creator-signature img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* ── BOTÓN FLOTANTE WHATSAPP (A LA IZQUIERDA) ── */
.gr-floating-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1040;
  transition: var(--transition);
}

.gr-floating-wa:hover {
  background: #1eb956;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.gr-floating-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: gr-pulse 2s infinite;
}

@keyframes gr-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── TOAST NOTIFICATION ── */
.gr-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gr-green-900);
  color: var(--gr-cream-200);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid var(--gr-cream-300);
}

.gr-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── ADAPTABILIDAD RESPONSIVE ── */
@media (max-width: 991.98px) {
  .gr-hero {
    padding: 100px 0 60px;
    text-align: center;
  }
  .gr-hero-lead {
    margin: 0 auto 32px;
  }
  .gr-hero-stats {
    justify-content: center;
  }
  .gr-hero-visual {
    margin-top: 40px;
  }
  .gr-navbar .navbar-brand img,
  .gr-nav-logo {
    /* height: 48px; */
    max-height: 100px;
  }
  .gr-navbar .navbar-collapse {
    background: var(--gr-cream-100);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-top: 14px;
  }
  .gr-section {
    padding: 65px 0;
  }
}

@media (max-width: 767.98px) {
  .gr-creator-signature {
    position: static;
    margin-top: 12px;
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 575.98px) {
  .gr-navbar .navbar-brand img,
  .gr-nav-logo {
    /* height: 42px; */
    max-height: 95px;
  }
  .gr-floating-wa {
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
  .gr-hero-card {
    padding: 16px;
  }
  .gr-calc-box,
  .gr-contact-box,
  .gr-sensory-box {
    padding: 24px 18px;
  }
}
