/* Página de Congelados — estilos específicos, se cargan junto a styles.css */

.frozen-hero {
  background: radial-gradient(circle at 20% 20%, var(--cream-alt), var(--cream) 60%);
  padding: 56px 0 40px;
  text-align: center;
}

.frozen-hero .eyebrow {
  display: inline-block;
  background: rgba(74, 90, 42, 0.1);
  color: var(--olive-dark);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.frozen-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  max-width: 720px;
  margin: 0 auto 16px;
}

.frozen-hero p.lead {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 1.02rem;
  color: #4a4938;
}

.frozen-hero .cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 22px 0 0;
  padding: 0;
}

.trust-badges li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--olive-dark);
  position: relative;
  padding-left: 18px;
}

.trust-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
}

/* Benefits / how it works */

.benefits {
  padding: 54px 0;
}

.benefits-heating {
  padding-top: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.benefit-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 14px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.92rem;
  color: #4a4938;
  margin: 0 0 10px;
}

.benefit-card p:last-child {
  margin-bottom: 0;
}

.cooked-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--olive);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 26px;
}

.cooked-banner svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.heating-card {
  background: var(--olive-dark);
  color: #f1efe4;
  border-radius: var(--radius);
  padding: 30px 30px 26px;
}

.heating-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.heating-header .benefit-icon {
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 0;
}

.heating-header h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.heating-header p {
  font-size: 0.92rem;
  color: #d9d5c2;
  margin: 0;
}

.heating-header strong {
  color: #fff;
}

.heating-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.heating-list li {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.heating-list li span {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.heating-footnote {
  font-size: 0.85rem;
  color: #b9b49b;
  margin: 0;
}

.frozen-catalog {
  padding: 50px 0 70px;
}

.frozen-catalog .section-head {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.frozen-catalog .section-head p {
  color: #4a4938;
  margin: 0;
}

.catalog-section {
  margin-bottom: 52px;
}

.catalog-section:last-child {
  margin-bottom: 0;
}

.catalog-subhead {
  font-size: 1.3rem;
  color: var(--olive-dark);
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(74, 90, 42, 0.15);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 26px;
}

.product-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74, 90, 42, 0.12);
  display: flex;
  flex-direction: column;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.9rem;
  color: #4a4938;
  margin: 0 0 12px;
}

.product-macros {
  font-size: 0.76rem;
  color: #6b6852;
  background: var(--cream);
  border-radius: 8px;
  padding: 8px 10px;
  margin: 0 0 14px;
  line-height: 1.5;
}

.product-macros .macros-label {
  font-weight: 700;
  color: var(--olive-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.7rem;
  display: block;
  margin-bottom: 2px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
  font-size: 0.92rem;
}

.price-table td {
  padding: 7px 0;
  border-bottom: 1px solid rgba(74, 90, 42, 0.15);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td:first-child {
  color: #4a4938;
}

.price-table td:first-child {
  font-size: 0.88rem;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--olive-dark);
  white-space: nowrap;
  padding-left: 12px;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.closing-cta {
  background: var(--cream);
  padding: 50px 0;
  text-align: center;
}

.closing-cta h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.closing-cta p {
  font-size: 1rem;
  color: #4a4938;
  margin: 0 0 22px;
}

.frozen-note {
  text-align: center;
  max-width: 680px;
  margin: 40px auto 0;
  font-size: 0.85rem;
  color: #6b6852;
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .nav-row {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .header-cta {
    font-size: 0.85rem;
    padding: 9px 16px;
  }
}
