/* ============================================================
   FRAGOLATTI — estilos complementarios a pastel-style.css
   Marca de repostería de Pampeanas · header oscuro + logo blanco
   ============================================================ */

/* Logo blanco en el nav oscuro */
.nav-logo-img { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img img { height: 40px; width: auto; display: block; }

/* Enlace de retorno a Pampeanas */
.nav-back {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-back:hover { color: #fff; }

/* Barra superior de marca (sobre el nav fijo) */
.brand-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: #0d0406;
  color: rgba(255,255,255,0.75);
  font-size: 12.5px;
  text-align: center;
  padding: 6px 12px;
  letter-spacing: 0.3px;
}
.brand-strip a { color: #e8a0b8; text-decoration: none; font-weight: 500; }
.brand-strip a:hover { text-decoration: underline; }
body.has-strip nav { top: 30px; }
body.has-strip .hero { padding-top: 30px; }

/* Hero compacto para páginas interiores */
.hero-sm { min-height: 56vh !important; }
.hero-sm h1 { font-size: clamp(34px, 5vw, 54px); }

/* Galería en grid (sin bootstrap) */
.frag-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.frag-gallery figure { margin: 0; }
.frag-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}
.frag-gallery img:hover { transform: scale(1.02); }
.frag-gallery figcaption {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Cobertura geográfica */
.cobertura-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.cobertura-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
}
.cobertura-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(201,75,110,0.15);
  color: var(--text);
  text-decoration: none;
}
.cobertura-card .cob-icon { font-size: 30px; }
.cobertura-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  margin: 10px 0 6px;
  color: var(--rose-dark);
}
.cobertura-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.cobertura-card .cob-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rose);
}

/* Bloque cross-marca (empanadas Pampeanas) */
.cross-brand {
  background: linear-gradient(135deg, #1c0f08 0%, #3a2410 100%);
  border-radius: 18px;
  padding: 44px 40px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
}
.cross-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 8px;
}
.cross-brand p { color: rgba(255,255,255,0.75); font-size: 15px; max-width: 540px; line-height: 1.6; }
.cross-brand .btn-primary { white-space: nowrap; }

/* Nota de marca en footer */
.brand-note {
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  padding: 0 20px 8px;
}
.brand-note a { color: #e8a0b8; text-decoration: none; font-weight: 500; }
.brand-note a:hover { text-decoration: underline; }

/* Tabla de precios sencilla */
.frag-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 26px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.frag-price-table th {
  background: var(--rose-dark);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 14.5px;
}
.frag-price-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--rose-light);
  font-size: 14.5px;
}
.frag-price-table tr:last-child td { border-bottom: none; }
.frag-price-table tr:hover td { background: var(--rose-light); }

/* FAQ acordeón */
.frag-faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 14px;
}
.frag-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--rose-dark);
}
.frag-faq details p { margin-top: 12px; font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }

/* Menú hamburguesa (móvil) */
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  margin-left: 10px;
}

@media (max-width: 860px) {
  .brand-strip { font-size: 11.5px; }
  .cross-brand { padding: 32px 24px; }
  .nav-back { display: none; }
  .nav-burger { display: block; }
  nav .nav-links { display: none; }
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 4, 6, 0.97);
    backdrop-filter: blur(10px);
    padding: 20px 28px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  nav.nav-open .nav-links a { font-size: 15.5px; }
}
