:root {
  --bordo: #6f1422;
  --bordo-dark: #701728;
  --crema: #f8f1e7;
  --manteca: #fffaf2;
  --oro:#c89a45;
  --texto: #2b1a14;
  --blanco: #ffffff;
  --crema-2: #f5ede1;
--crema-3: #fffaf4;
--crema-4: #efe6d8;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--crema);
  color: var(--texto);
font-family: "Rubik", sans-serif;
  overflow-x: hidden;
}

/* TITULOS EDITORIALES */

.pf-hero h1,
.pf-section-head h2,
.pf-feature h2,
.pf-cheese h2,
.pf-final h2 {
  font-family: "Rubik", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */




/* HERO */
.pf-hero {
  min-height: 75vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--crema);
  overflow: hidden;
}

.pf-hero-left {
  display: flex;
  align-items: center;
  padding: 0 9%;
  position: relative;
z-index: 2;
}

.pf-hero-right {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.pf-hero-right::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(100, 17, 29, 0.20);

  pointer-events: none;
}

.pf-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.pf-hero-content {
  max-width: 560px;
  color: var(--bordo-dark);
}

.pf-hero h1 {
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.95;
  margin: 18px 0 24px;
}

.pf-hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 34px;
  color: #541010;
}



.pf-kicker,
.pf-section-head span,
.pf-feature span,
.pf-cheese span {
  color: var(--oro);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}



.pf-btn {
  display: inline-block;

  padding: 14px 30px;

  background: #7b1d2f;

  color: #f8f1e7;

  border: 1.5px solid #7b1d2f;

  border-radius: 999px;

  font-weight: 600;

  letter-spacing: 0.3px;

  transition: all 0.3s ease;
}

.pf-btn:hover {
  background: #f8f1e7;

  color: #7b1d2f;

  transform: translateY(-2px);

  box-shadow: 0 10px 24px rgba(111, 20, 34, 0.10);
}


/* INTRO */
.pf-intro {
  position: relative;
  overflow: hidden;

  padding: 82px 10%;

  text-align: center;

background:
  linear-gradient(
    180deg,
    var(--crema-3) 0%,
    var(--crema-2) 100%
  );
}

.pf-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(69, 19, 11, 0.035) 0px,
      rgba(123, 29, 47, 0.035) 1px,
      transparent 1px,
      transparent 14px
    );
  opacity: 0.55;
  pointer-events: none;
}


.pf-intro p {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
  font-size: 2rem;
  line-height: 1.7;
  color: #5a241c;
}

/* SECTIONS */
.pf-section {
  padding: 50px 7%;
}

.pf-cream {
  background: var(--crema-2);
}


.pf-bordo {

  background: var(--crema-3);
}


.pf-section-head {
  max-width: 1400px;
  margin-bottom: 30px;
  }

.pf-section-head h2,
.pf-feature h2,
.pf-cheese h2,
.pf-final h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 12px 0 18px;
}

.pf-section-head p {
  font-size: 1.15rem;
  line-height: 1.6;
  }

.pf-section-head.light {
  color: var(--crema);

}

.pf-section-head.light p {
  color: rgba(89, 15, 5, 0.82);
}


/* CARDS */
.pf-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pf-card {
  background: #fffaf4;
  border-radius: 26px;
  overflow: hidden;
  padding: 42px 32px 32px;
box-shadow: 0 10px 30px rgba(111, 20, 34, 0.08);
  transition: all 0.35s ease box-shadow 0.35s ease;
border: solid 1px rgba(89, 15, 5, 0.82);
}

.pf-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 58px rgba(106, 10, 25, 0.16);
}

.pf-card-img {
  height: 50px;
  border-radius: 20px;
  margin-bottom: 22px;
  background-size: cover;
  background-position: center;
}



.pf-card h3 {
  color: var(--bordo);
  font-size: 1.7rem;
  margin-bottom: 10px;
  }

.pf-card h4{
    color: var(--bordo);
}

.pf-card p {
  line-height: 1.6;

}
.pf-card ul {
  padding-left: 20px;
  margin-top: 14px;
}



.pf-card li {
  padding-bottom: 8px;
}

.pf-card-border {
  border: 1.5px solid rgba(123, 29, 47, 0.35);
}

.light-card {
  background: var(--crema-3);

  min-height: 220px;

  border: 1.5px solid rgba(123, 29, 47, 0.55);

  transition: all 0.35s ease;
  min-height: 330px;
}

.light-card:hover {
  border-color: #7e0b20;
}

.light-card ul {
  padding-left: 22px;
  padding-top: 10px;
}

.light-card li {
  margin-bottom: 10px;
}


/* TWO COLUMNS */
.pf-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.pf-product-block {
background: var(--crema-3);
  padding: 40px;
  border-radius: 28px;
  border: 1px dashed rgba(111, 20, 34, 0.35);
}

.pf-product-block h3 {
  color: var(--bordo);
  font-size: 2rem;
  margin-bottom: 12px;
}

.pf-product-block p {
  margin-bottom: 20px;
}

.pf-product-block ul {
  list-style: none;
  display: grid;
  gap: 10px;
  
}

.pf-product-block li::before {
  content: "•";
  color: var(--oro);
  margin-right: 8px;
}

/* FEATURE ÑOQUIS */
/* SECCIÓN ÑOQUIS SOUFFLÉ */
.pf-gnocchi {
  background: var(--crema-3);
   padding-top: 100px;
  padding-bottom: 100px;
}

.pf-gnocchi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pf-gnocchi-copy {
  max-width: 620px;
}

.pf-gnocchi-copy span {
  color: var(--oro);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.pf-gnocchi-copy h2 {
  color: var(--bordo-dark);
  margin: 12px 0 18px;
}

.pf-gnocchi-copy p {
  color: #5a241c;
  font-size: 1.15rem;
  line-height: 1.7;
}

.pf-gnocchi-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(111, 20, 34, 0.10);
  
}

.pf-gnocchi-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}


/* SALSAS */
.pf-sauce-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.pf-sauce-grid span {
  background: rgba(255, 250, 244, 0.72);

  border: 2px solid rgba(83, 13, 23, 0.12);

  color: var(--bordo-dark);

  padding: 15px 17px;

  border-radius: 999px;

  text-align: center;

  font-weight: 500;

  letter-spacing: 0.4px;

  backdrop-filter: blur(4px);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.pf-sauce-grid span:hover {
  transform: translateY(-6px);

  border-color: rgba(111, 20, 34, 0.28);

  box-shadow:
    0 18px 34px rgba(111, 20, 34, 0.10);

  background: rgba(255, 250, 244, 0.95);
}

/* QUESO */
.pf-cheese {
  padding: 90px 7%;
  background: var(--crema-4);
  text-align: center;
  border-top: 1px dashed rgba(111, 20, 34, 0.3);
  border-bottom: 1px dashed rgba(111, 20, 34, 0.3);
}

.pf-cheese p {
  font-size: 1.2rem;
}

/* FINAL */
.pf-final {
  padding: 110px 7%;
  background: var(--bordo-dark);
  color: var(--crema);
  text-align: center;
}

.pf-final h2 {
  color:#f5ede1 ;
}

.pf-final p {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color:#b6a997;
}

.pf-section-photo {
  width: 100%;
  height: 320px;
  margin: 0 0 42px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(111, 20, 34, 0.10);
}

.pf-section-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-tags ul {
  padding-left: 142px;
  padding-top: 12px;
}


/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.pf-card.reveal.active:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 58px rgba(106, 10, 25, 0.16);
}

.pf-product-block {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pf-product-block.reveal.active:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 58px rgba(106, 10, 25, 0.16);
}

.pf-gnocchi-image {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pf-gnocchi-image.reveal.active:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 58px rgba(106, 10, 25, 0.16);
}


/* RESPONSIVE */
@media (max-width: 900px) {


  .pf-card-grid,
  .pf-two-columns {
    grid-template-columns: 1fr;
  }

  .pf-sauce-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-hero {
     grid-template-columns: 1fr; /* agregado*/
    min-height: 82vh;
    padding-top: 45px;
     }

  .pf-hero-right { /*agregado*/
  height: 380px;
  margin-top: 5px;}


.pf-hero-right img {
  object-position: center top; /*agregado*/
}

  .pf-gnocchi-grid {
    grid-template-columns: 1fr;
  }

  .pf-gnocchi-image img {
    height: 320px;
  }

  @media (max-width: 900px) {

  .pf-gnocchi-image {
    height: 320px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
  }

  .pf-gnocchi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    display: block;
    transform: scale(1.38);
    transform-origin: center center;
  }

}
}

@media (max-width: 500px) {

  .pf-section,
  .pf-feature,
  .pf-final {
    padding: 70px 6%;
  }

  .pf-intro {
    padding: 55px 6%;
  }

  .pf-intro p {
    font-size: 1.25rem;
  }

  .pf-sauce-grid {
    grid-template-columns: 1fr;
  }
}