/* Proteína landing page — migrated from static site, scoped under .proteina-page */

.proteina-page .py-20 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.proteina-page .bg-white {
  background-color: #fff;
}

.proteina-page {
  --primary: #e7004c;
  --brown: #6a3525;
  --burgundy: #592437;
  --gold: #ffb607;
  --yellow: #ffdf22;
  --orange: #ff9200;
  --green: #80bc00;
}

.proteina-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.proteina-page {
  font-family: 'Gilroy', 'Inter', sans-serif;
  color: var(--brown);
  line-height: 1.6;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Heavy.ttf') format('truetype');
  font-weight: 950;
  font-display: swap;
}

.proteina-page img,
.proteina-page svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.proteina-page section {
  width: 100%;
  overflow-x: hidden;
}

.proteina-page .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5%, 120px);
}

.proteina-page .hero {
  margin: 0 auto;
}

.proteina-page .hero img {
  width: 100%;
  margin: 0 auto;
}

/* Scroll Reveal Animation */
.proteina-page [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.8, 0.3, 1),
              transform 0.7s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.proteina-page [data-reveal="left"] {
  transform: translateX(-34px);
}

.proteina-page [data-reveal="right"] {
  transform: translateX(34px);
}

.proteina-page [data-reveal="zoom"] {
  transform: scale(0.93);
}

.proteina-page [data-reveal="fade"] {
  transform: translateY(0);
}

.proteina-page [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* Hover Effects */
.proteina-page .hover-lift {
  transition: transform 0.3s cubic-bezier(0.22, 0.8, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.proteina-page .hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.proteina-page .hover-press {
  transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.proteina-page .hover-press:active {
  transform: translateY(-2px) scale(0.98);
}

.proteina-page .hover-zoom {
  overflow: hidden;
}

.proteina-page .hover-zoom img {
  transition: transform 0.4s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.proteina-page .hover-zoom:hover img {
  transform: scale(1.06);
}

/* Button System */
.proteina-page .btn-red,
.proteina-page .btn-white,
.proteina-page .btn-brown,
.proteina-page .btn-ghost,
.proteina-page .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 19px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
              color 0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
              transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.proteina-page .btn-red {
  background-color: var(--primary);
  color: white;
}

.proteina-page .btn-red:hover {
  background-color: #ff1f66;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 0, 76, 0.3);
}

.proteina-page .btn-red:active {
  transform: translateY(-2px) scale(0.97);
}

.proteina-page .btn-white {
  background-color: white;
  color: var(--primary);
}

.proteina-page .btn-white:hover {
  background-color: var(--gold);
  color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 182, 7, 0.3);
}

.proteina-page .btn-brown {
  background-color: var(--brown);
  color: white;
}

.proteina-page .btn-brown:hover {
  background-color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 53, 37, 0.3);
}

.proteina-page .btn-ghost {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.proteina-page .btn-ghost:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Sheen Effect */
.proteina-page .btn-red::before,
.proteina-page .btn-white::before,
.proteina-page .btn-brown::before,
.proteina-page .btn-ghost::before,
.proteina-page .btn-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: sheen 0.55s ease-in-out;
}

@keyframes sheen {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.proteina-page .btn-red:hover::before,
.proteina-page .btn-white:hover::before,
.proteina-page .btn-brown:hover::before,
.proteina-page .btn-ghost:hover::before,
.proteina-page .btn-icon:hover::before {
  animation: sheen 0.55s ease-in-out;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .proteina-page [data-reveal],
.proteina-page .hover-lift,
.proteina-page .hover-press,
.proteina-page .hover-zoom img,
.proteina-page .btn-red,
.proteina-page .btn-white,
.proteina-page .btn-brown,
.proteina-page .btn-ghost,
.proteina-page .btn-icon {
    transition: none !important;
    animation: none !important;
  }

  .proteina-page [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
/* ============================================================
   MEDIUM SCREENS (901px–1200px) — scale down desktop-fixed px
   ============================================================ */
.proteina-page .drinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.proteina-page .drink-card {
  text-align: left;
  min-width: 0;
}

.proteina-page .drink-photo {
  width: 100%;
  border-radius: 0;
  margin-bottom: 54px;
}

.proteina-page .drink-card h3 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: #002e43;
  margin-bottom: 20px;
}

.proteina-page .drink-card p:not(.drink-disclaimer) {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 29px;
}

.proteina-page .drink-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proteina-page .drink-disclaimer {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-bottom: 16px;
  margin-top: 26px;
}

.proteina-page .drink-desc-371,
.proteina-page .drink-disclaimer-371 {
  max-width: 371px;
}

.proteina-page .drink-desc-332,
.proteina-page .drink-disclaimer-324 {
  max-width: 324px;
}

.proteina-page .stat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2c6098;
  color: white;
  height: 49px;
  padding: 0 14px;
  border-radius: 24.5px;
  font-size: 24px;
  line-height: normal;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.proteina-page .stat-pill-w196 {
  width: 196px;
  padding: 0;
}

.proteina-page .stat-pill-w138 {
  width: 138px;
  padding: 0;
}

.proteina-page .stat-pill-w199 {
  width: 199px;
  padding: 0;
}

.proteina-page .stat-pill-w140 {
  width: 140px;
  padding: 0;
}

.proteina-page .stat-pill-w166 {
  width: 166.5px;
  padding: 0;
}

.proteina-page .stat-pill-w345 {
  width: 345px;
  padding: 0;
}

.proteina-page .stat-pill--brown {
  background: var(--brown);
}

.proteina-page .protea-logo {
  display: block;
  margin-bottom: 18px;
  height: auto;
  width: auto;
  min-width: 226px;
  max-width: 60%;
  object-fit: contain;
  object-position: bottom left;
}

.proteina-page .section-5 .container {
  max-width: 1876.16px;
}

.proteina-page .section-5b .container {
  max-width: 1974px;
}

.proteina-page section.section-5b {
  padding-top: 0;
}

.proteina-page .section-5-top {
  display: grid;
  grid-template-columns: minmax(0, 1041.34px) minmax(0, 1fr);
  align-items: center;
  gap: 100px;
  max-width: 1636.16px;
  margin: 0 auto 88px;
}

.proteina-page .section-6-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.proteina-page .section-6-inline img {
  width: 1041.34px;
  max-width: 100%;
}

.proteina-page .section-6-inline .section-6-title {
  text-align: center;
  margin-bottom: 0;
}

.proteina-page .section-6-inline .section-6-title .bold {
  font-weight: 950;
}

.proteina-page .section-6-inline .section-6-title .normal {
  font-weight: 400;
}

.proteina-page .section-5-title {
  font-family: 'Gilroy', sans-serif;
  font-weight: 950;
  font-size: 96px;
  color: #000;
  line-height: 1.1;
}

.proteina-page .mayorsaciedad-block {
  text-align: center;
}

.proteina-page .mayorsaciedad-block img {
  max-width: 380px;
  margin: 0 auto;
}

.proteina-page .mayorsaciedad-block h3 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 950;
  font-size: 49.5px;
  color: #000;
  margin-top: 8px;
}

.proteina-page .routine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.proteina-page .routine-card {
  width: 100%;
  max-width: 411px;
  height: 330px;
  min-width: 0;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 4px #2C609840;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.proteina-page .routine-card > img {
  border-radius: 20px 20px 0 0;
  width: 100%;
  aspect-ratio: 410 / 528;
  object-fit: cover;
  margin-bottom: -32px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.proteina-page .routine-icon-badge {
  width: 91px;
  height: 91px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 23px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.proteina-page .routine-icon-badge svg {
  width: 91px;
  height: 91px;
  display: block;
}

.proteina-page .routine-card p {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #002e43;
}

.proteina-page .section-6-title {
  font-family: 'Gilroy', sans-serif;
  font-size: 73px;
  color: #000;
  text-align: center;
  margin-bottom: 0;
}

/* Section 2: Drinks showcase */
.proteina-page .section-2 .container {
  max-width: 1968px;
}

.proteina-page section.section-2 {
  padding-top: 106px;
}

.proteina-page .section-2-title {
  font-family: 'Gilroy', sans-serif;
  font-weight: 900;
  font-size: 86px;
  color: #2c6098;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 64px;
}

.proteina-page .section-3-grid {
  display: grid;
  grid-template-columns: min(36.667vw, 704px) 1fr;
  gap: min(1.51vw, 29px);
  align-items: stretch;
}

.proteina-page .section-3-photo {
  height: 100%;
}

.proteina-page .section-3-photo img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.proteina-page .section-3-scoop {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.proteina-page .section-3-scoop h3 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 950;
  font-size: min(4.896vw, 94px);
  line-height: 1em;
  color: #000;
  margin-bottom: 0;
}

.proteina-page .nutrition-card {
  width: 100%;
  background: #2c6098;
  border-radius: 16px;
  padding: min(1.667vw, 32.01px) min(1.667vw, 32.01px) min(2.813vw, 54px);
  box-shadow: 0 12px 32px rgba(44, 96, 152, 0.28);
}

.proteina-page .nutrition-header {
  font-family: 'Gilroy', sans-serif;
  font-weight: 900;
  font-size: min(2.223vw, 42.68px);
  line-height: 1.2em;
  color: white;
  margin-bottom: min(1.111vw, 21.34px);
}

.proteina-page .nutrition-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: min(1.111vw, 21.34px);
  margin-bottom: min(1.111vw, 21.34px);
}

.proteina-page .nutrition-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.proteina-page .nutrition-item strong {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: min(2.223vw, 42.68px);
  line-height: 1.2;
  margin-bottom: min(0.333vw, 6.4px);
}

.proteina-page .nutrition-item span {
  font-size: min(1vw, 19.2px);
  line-height: 1.2;
  font-weight: 400;
}

.proteina-page .nutrition-footnote {
  color: white;
  font-size: min(1.042vw, 20px);
  opacity: 0.85;
}

@media (max-width: 1451px) {
  .proteina-page .section-2-title {
    font-size: 56px;
  }

  .proteina-page .drinks-grid {
    gap: 20px;
  }

  .proteina-page .drink-photo {
    margin-bottom: 32px;
  }

  .proteina-page .drink-card h3 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .proteina-page .drink-card p:not(.drink-disclaimer) {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .proteina-page .drink-disclaimer {
    font-size: 14px;
    margin-top: 16px;
  }

  .proteina-page .drink-desc-371,
.proteina-page .drink-disclaimer-371,
.proteina-page .drink-desc-332,
.proteina-page .drink-disclaimer-324 {
    max-width: 77%;
  }

  .proteina-page .stat-pill-w196,
.proteina-page .stat-pill-w138,
.proteina-page .stat-pill-w199,
.proteina-page .stat-pill-w140,
.proteina-page .stat-pill-w166,
.proteina-page .stat-pill-w345 {
    width: auto;
    max-width: 100%;
    padding: 0 14px;
  }

  .proteina-page .stat-pill {
    height: 38px;
    border-radius: 19px;
    font-size: 16px;
  }

  .proteina-page .protea-logo {
    min-width: 0;
    width: 180px;
  }
}

@media (max-width: 1200px) {
  .proteina-page section.section-2 {
    padding-top: 64px;
  }

  .proteina-page .section-2-title {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .proteina-page .protea-logo {
    max-width: 45%;
  }

  .proteina-page .section-3-heading {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .proteina-page .favorita-underline {
    width: 280px;
    right: 0;
  }

  .proteina-page .section-3-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .proteina-page .section-3-scoop h3 {
    font-size: 56px;
  }

  .proteina-page .nutrition-card {
    padding: 24px;
  }

  .proteina-page .nutrition-header {
    font-size: 28px;
  }

  .proteina-page .nutrition-item strong {
    font-size: 28px;
  }

  .proteina-page .nutrition-item span {
    font-size: 15px;
  }

  .proteina-page .nutrition-footnote {
    font-size: 14px;
  }

  .proteina-page .section-4-photo-copy h2 {
    white-space: normal;
  }

  .proteina-page .section-5-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .proteina-page .section-6-inline img {
    width: 100%;
  }

  .proteina-page .section-5-title {
    font-size: 56px;
  }

  .proteina-page .mayorsaciedad-block img {
    max-width: 260px;
  }

  .proteina-page .mayorsaciedad-block h3 {
    font-size: 25px;
  }

  .proteina-page .routine-grid {
    gap: 16px;
  }

  .proteina-page .routine-card {
    width: 100%;
    height: 260px;
  }

  .proteina-page .routine-card p {
    font-size: 22px;
  }

  .proteina-page .routine-icon-badge {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }

  .proteina-page .routine-icon-badge svg {
    width: 64px;
    height: 64px;
  }

  .proteina-page .section-6-title {
    font-size: 32px;
  }

  .proteina-page .section-7-grid {
    gap: 32px;
  }

  .proteina-page .conoce-protea-logo {
    width: 320px;
  }

  .proteina-page .frappe-copy h3 {
    font-size: 22px;
  }

  .proteina-page .frappe-copy p {
    font-size: 20px;
  }

  .proteina-page .section-8-grid {
    gap: 32px;
  }

  .proteina-page .faq-list h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .proteina-page .faq-item {
    padding: 16px;
  }

  .proteina-page .faq-item h4 {
    font-size: 22px;
  }

  .proteina-page .faq-item p {
    font-size: 16px;
  }

  .proteina-page .section-9-grid {
    gap: 32px;
  }

  .proteina-page .section-9-bg {
    min-height: 0;
    padding: 56px 64px 48px;
  }

  .proteina-page .section-9-heading-logo {
    width: 420px;
  }

  .proteina-page .section-9-subhead {
    font-size: 28px;
  }

  .proteina-page .section-9-sumale {
    width: 560px;
  }

  .proteina-page .section-9-footer {
    margin-top: 64px;
  }

  .proteina-page .section-9-badges {
    max-width: 500px;
  }

  .proteina-page .umana-logo {
    width: 220px;
    margin-right: 16px;
  }

  .proteina-page .section-9-collab {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .proteina-page section.section-5b {
    padding-bottom: 56px;
  }

  .proteina-page .section-5-top {
    grid-template-columns: 1fr;
  }

  .proteina-page .routine-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .proteina-page .routine-card {
    width: 100%;
    height: 240px;
  }

  .proteina-page .routine-card p {
    font-size: 20px;
  }

  .proteina-page .routine-icon-badge {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  .proteina-page .routine-icon-badge svg {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 600px) {
  .proteina-page section.section-5b {
    padding-bottom: 40px;
  }

  .proteina-page .routine-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proteina-page .routine-card {
    height: 220px;
  }

  .proteina-page .routine-card p {
    font-size: 18px;
  }

  .proteina-page .routine-icon-badge {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .proteina-page .routine-icon-badge svg {
    width: 48px;
    height: 48px;
  }

  .proteina-page .mayorsaciedad-block img {
    max-width: 314px;
  }

  .proteina-page .section-6-title {
    font-size: 38px;
  }
}

@media (max-width: 900px) {
  .proteina-page .container {
    padding: 0 80px;
  }
}

@media (max-width: 600px) {
  .proteina-page .btn-red,
.proteina-page .btn-white,
.proteina-page .btn-brown,
.proteina-page .btn-ghost,
.proteina-page .btn-icon {
    font-size: 16px;
    padding: 0 16px;
  }

  .proteina-page [data-reveal] {
    transform: translateY(16px);
  }

  .proteina-page [data-reveal="left"] {
    transform: translateX(-20px);
  }

  .proteina-page [data-reveal="right"] {
    transform: translateX(20px);
  }
}

/* ============================================================
   PROTEINA LANDING — SECTION STYLES
   ============================================================ */

@media (max-width: 900px) {
  .proteina-page .section-2-title {
    white-space: normal;
  }
}


@media (max-width: 900px) {
  .proteina-page section.section-2 {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .proteina-page .drinks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .proteina-page .drink-photo {
    margin-bottom: 24px;
  }

  .proteina-page .drink-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .proteina-page .drink-card p:not(.drink-disclaimer) {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .proteina-page .drink-disclaimer {
    font-size: 13px;
    margin-top: 12px;
  }

  .proteina-page .stat-pill {
    font-size: 14px;
    padding: 0 12px;
  }

  .proteina-page .protea-logo {
    min-width: 0;
    width: 226px;
    max-width: 50%;
    margin-bottom: 14px;
  }

  .proteina-page .drink-desc-371,
.proteina-page .drink-disclaimer-371,
.proteina-page .drink-desc-332,
.proteina-page .drink-disclaimer-324 {
    max-width: 100%;
  }

  .proteina-page .stat-pill-w196,
.proteina-page .stat-pill-w138,
.proteina-page .stat-pill-w199,
.proteina-page .stat-pill-w140,
.proteina-page .stat-pill-w166,
.proteina-page .stat-pill-w345 {
    width: auto;
    max-width: 100%;
    padding: 0 12px;
  }
}

@media (max-width: 600px) {
  .proteina-page section.section-2 {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .proteina-page .drinks-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proteina-page .section-2-title {
    font-size: 38px;
    margin-bottom: 28px;
  }

  .proteina-page .drink-photo {
    margin-bottom: 20px;
  }

  .proteina-page .drink-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .proteina-page .drink-card p:not(.drink-disclaimer) {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .proteina-page .drink-disclaimer {
    font-size: 13px;
    margin-top: 10px;
    max-width: 70%;
  }

  .proteina-page .stat-pill {
    font-size: 13px;
  }

  .proteina-page .protea-logo {
    min-width: 0;
    width: 180px;
    max-width: 60%;
    margin-bottom: 12px;
  }
}

/* Section 3: Nutrition facts */
.proteina-page .section-3a .container {
  max-width: 1580px;
}

.proteina-page section.section-3a {
  padding-top: 0;
  padding-bottom: 0;
}

.proteina-page .section-3 .container {
  max-width: 1968px;
}

.proteina-page .section-3-heading {
  font-family: 'Gilroy', sans-serif;
  font-weight: 950;
  font-size: 73.5px;
  color: #000;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0;
}

.proteina-page .highlight-underline {
  position: relative;
  display: inline-block;
  color: #2c6098;
}

.proteina-page .favorita-underline {
  position: absolute;
  right: -10px;
  bottom: 0px;
  width: 429.34px;
  height: auto;
}

.proteina-page .highlight-blue {
  color: #2c6098;
}

@media (max-width: 900px) {
  .proteina-page .section-3-heading {
    font-size: 36px;
    line-height: 1.4;
  }

  .proteina-page .favorita-underline {
    width: 220px;
    right: 0;
    bottom: -6px;
  }
}

@media (max-width: 600px) {
  .proteina-page .section-3-heading {
    font-size: 36px;
  }

  .proteina-page .favorita-underline {
    width: 170px;
    bottom: -4px;
  }
}

@media (max-width: 398px) {
  .proteina-page .favorita-underline {
    display: none;
  }
}

@media (max-width: 900px) {
  .proteina-page .section-3-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .proteina-page .section-3-photo,
.proteina-page .section-3-scoop {
    height: auto;
    width: 100%;
  }

  .proteina-page .section-3-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 704 / 489;
    object-fit: cover;
  }

  .proteina-page .section-3-scoop h3 {
    font-size: 38px;
    margin-bottom: 24px;
  }

  .proteina-page .nutrition-card {
    padding: 24px;
  }

  .proteina-page .nutrition-header {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .proteina-page .nutrition-row {
    padding-top: 16px;
    margin-bottom: 16px;
  }

  .proteina-page .nutrition-item strong {
    font-size: 32px;
  }

  .proteina-page .nutrition-item span {
    font-size: 16px;
  }

  .proteina-page .nutrition-footnote {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .proteina-page .section-3-scoop h3 {
    font-size: 36px;
    text-align: center;
  }

  .proteina-page .nutrition-card {
    padding: 20px;
  }

  .proteina-page .nutrition-header {
    font-size: 22px;
  }

  .proteina-page .nutrition-row {
    justify-content: space-between;
    row-gap: 16px;
  }

  .proteina-page .nutrition-item {
    flex: 0 0 45%;
  }

  .proteina-page .nutrition-item strong {
    font-size: 26px;
  }

  .proteina-page .nutrition-item span {
    font-size: 14px;
  }

  .proteina-page .nutrition-footnote {
    font-size: 13px;
  }
}

/* Section 4: Ingredients + benefits
   Fluid vw-based sizing (base 1920px design) instead of breakpoints,
   so proportions/alignment hold from 1920px down to phone widths.
   Phone-only (<=600px) — section-4b is the web equivalent. */
.proteina-page .section-4 {
  padding: 0;
  display: none;
}

@media (max-width: 600px) {
  .proteina-page .section-4 {
    display: block;
  }
}

/* Section 4B: web-only flattened image version of section-4 */
.proteina-page .section-4b {
  display: block;
  width: 100%;
}

.proteina-page .section-4b img {
  width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .proteina-page .section-4b {
    display: none;
  }
}

.proteina-page .section-4-ingredientes {
  flex-basis: 100%;
  width: 100%;
  padding: 0;
  margin-top: min(0.42vw, 8.064px);
  text-align: center;
}

.proteina-page .section-4-ingredientes p {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: min(0.833vw, 16px);
  line-height: 1.6875em;
  color: #2c6098;
  margin-top: min(0.99vw, 19.008px);
}

.proteina-page .section-4-inner {
  background: #e9f4fd;
  display: grid;
  grid-template-columns: min(39.531vw, 758.995px) 1fr;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
}

.proteina-page .section-4-photo {
  position: relative;
  width: min(39.531vw, 758.995px);
  aspect-ratio: 759 / 475;
  background: #cee2f7;
  border-radius: 0 min(4.792vw, 92.006px) 0 0;
}

.proteina-page .section-4-photo img {
  position: absolute;
  bottom: min(1.094vw, 21.005px);
  right: min(1.042vw, 20.006px);
  width: min(19.583vw, 375.994px);
  height: min(13.021vw, 250.003px);
  max-width: none;
  flex-shrink: 0;
  filter: drop-shadow(0 min(1.042vw, 20.006px) min(1.563vw, 30.01px) rgba(44, 96, 152, 0.35));
}

.proteina-page .section-4-photo-copy {
  position: absolute;
  top: min(4.479vw, 85.997px);
  left: min(5vw, 96px);
  min-width: 0;
}

.proteina-page .section-4-photo-copy h2 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 900;
  font-size: min(2.5vw, 48px);
  color: #2c6098;
  line-height: 1.18em;
  margin-bottom: 0;
  white-space: nowrap;
  position: relative;
}

.proteina-page .section-4-photo-copy h2::after {
  content: '';
  display: block;
  width: min(2.24vw, 43.008px);
  height: min(0.208vw, 3.994px);
  background: #2c6098;
  margin: min(0.521vw, 10.003px);
  margin-left: min(0.052vw, 0.998px);
  border-radius: 4px;
}

.proteina-page .section-4-photo-copy p {
  font-weight: 500;
  font-size: min(1.25vw, 24px);
  color: #000;
  line-height: 1.32;
  max-width: min(13.958vw, 267.994px);
  margin-top: min(0.99vw, 19.008px);
}

.proteina-page .section-4-details {
  padding: min(1.667vw, 32.006px) min(1.927vw, 36.998px) min(1.667vw, 32.006px) min(1.25vw, 24px);
  margin-top: min(1.771vw, 34.003px);
  display: flex;
  align-items: center;
  gap: min(1.25vw, 24px);
  flex-wrap: wrap;
}

.proteina-page .ingredients-block {
  display: flex;
  flex-direction: column;
  gap: min(0.417vw, 8.006px);
}

.proteina-page .ingredients-block .eyebrow {
  font-weight: 700;
  font-size: min(1.25vw, 24px);
  line-height: 1;
  color: #000;
}

.proteina-page .ingredients-label {
  font-weight: 700;
  font-size: min(1.042vw, 20px);
  line-height: 1;
  margin-bottom: min(2.344vw, 45.005px);
  color: #000;
}

.proteina-page .ingredients-row {
  display: flex;
  gap: min(1.667vw, 32.006px);
}

.proteina-page .ingredient {
  position: relative;
  min-width: min(5.833vw, 111.994px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(0.417vw, 8.006px);
}

.proteina-page .ingredient:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(-1 * min(0.833vw, 15.994px));
  transform: translateY(-50%);
  width: 1px;
  height: min(4.531vw, 86.995px);
  background: #c0d9fa;
}

.proteina-page .ingredient img {
  border-radius: 50%;
  width: min(3.646vw, 70.003px);
  height: min(3.646vw, 70.003px);
  object-fit: cover;
}

.proteina-page .ingredient span {
  font-weight: 700;
  font-size: min(1.042vw, 20px);
  color: #000;
}

.proteina-page .benefits-row {
  position: relative;
  display: flex;
  gap: min(2.5vw, 48px);
  padding-left: min(1.25vw, 24px);
  margin-top: min(2.604vw, 49.997px);
  flex: 1;
}

.proteina-page .benefits-row::before {
  content: '';
  position: absolute;
  top: 56%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: min(10.625vw, 204px);
  background: #c0d9fa;
}

.proteina-page .benefit-card {
  position: relative;
  text-align: center;
}

.proteina-page .benefit-card:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -24%;
  right: calc(-1 * min(1.25vw, 24px));
  transform: translateY(-50%);
  width: 1px;
  height: min(4.531vw, 86.995px);
  background: #c0d9fa;
}

.proteina-page .benefit-card-w179 {
  min-width: min(9.323vw, 179.002px);
}

.proteina-page .benefit-card-w198 {
  min-width: min(10.313vw, 198.01px);
}

.proteina-page .benefit-card-w169 {
  min-width: min(8.802vw, 168.998px);
}

.proteina-page .benefit-icon-circle {
  width: min(4.792vw, 92.006px);
  height: min(4.792vw, 92.006px);
  margin: 0 auto min(0.833vw, 15.994px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proteina-page .benefit-icon-circle img {
  width: 100%;
  height: 100%;
}

.proteina-page .benefit-label {
  display: block;
  font-weight: 700;
  font-size: min(0.833vw, 16px);
  margin-bottom: min(0.938vw, 18.01px);
  line-height: 1.35;
  color: #000;
}

.proteina-page .benefit-card p {
  font-weight: 500;
  font-size: min(0.781vw, 15px);
  line-height: 1.35;
  color: #000;
}

@media (max-width: 600px) {
  .proteina-page .section-4-inner {
    grid-template-columns: 1fr;
  }

  .proteina-page .section-4-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 759 / 475;
    border-radius: 0 32px 0 0;
  }

  .proteina-page .section-4-photo img {
    bottom: 12px;
    right: 12px;
    width: 40%;
    height: auto;
  }

  .proteina-page .section-4-photo-copy {
    top: 20px;
    left: 20px;
  }

  .proteina-page .section-4-photo-copy h2 {
    font-size: 26px;
    white-space: normal;
  }

  .proteina-page .section-4-photo-copy h2::after {
    width: 28px;
    height: 3px;
    margin: 8px 0;
  }

  .proteina-page .section-4-photo-copy p {
    font-size: 14px;
    max-width: 170px;
    margin-top: 10px;
  }

  .proteina-page .section-4-details {
    padding: 24px 20px;
    margin-top: 0;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .proteina-page .ingredients-block {
    align-items: center;
    gap: 6px;
  }

  .proteina-page .ingredients-block .eyebrow {
    font-size: 16px;
  }

  .proteina-page .ingredients-label {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .proteina-page .ingredients-row {
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .proteina-page .ingredient {
    width: 84px;
    gap: 6px;
  }

  .proteina-page .ingredient:not(:last-child)::after {
    right: -8px;
    height: 56px;
  }

  .proteina-page .ingredient img {
    width: 44px;
    height: 44px;
  }

  .proteina-page .ingredient span {
    font-size: 13px;
  }

  .proteina-page .benefits-row {
    gap: 20px;
    padding-left: 0;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
  }

  .proteina-page .benefits-row::before {
    display: none;
  }

  .proteina-page .benefit-card-w179,
.proteina-page .benefit-card-w198,
.proteina-page .benefit-card-w169 {
    width: auto;
    max-width: 130px;
  }

  .proteina-page .benefit-card:not(:last-child)::after {
    display: none;
  }

  .proteina-page .benefit-icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
  }

  .proteina-page .benefit-label {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .proteina-page .benefit-card p {
    font-size: 12px;
  }

  .proteina-page .section-4-ingredientes {
    margin-top: 8px;
    padding: 0 20px 24px;
  }

  .proteina-page .section-4-ingredientes p {
    font-size: 12px;
    margin-top: 10px;
  }
}

/* Section 7: Conoce el frappé */
.proteina-page .section-7 .container {
  max-width: 1648px;
}

.proteina-page .section-7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.proteina-page .frappe-photo img {
  border-radius: 16px;
  width: 100%;
}

.proteina-page .frappe-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 41px;
  margin-top: 26px;
}

.proteina-page .conoce-protea-logo {
  width: 822px;
  max-width: 100%;
  margin-bottom: 16px;
}

.proteina-page .frappe-copy h3 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #000;
  margin-bottom: 16px;
}

.proteina-page .frappe-copy p {
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: 27px;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.proteina-page .frappe-badge {
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .proteina-page .section-7-grid {
    grid-template-columns: 1fr;
  }
}

/* Section 8: FAQ */
.proteina-page .section-8 .container {
  max-width: 1968px;
}

.proteina-page .section-8-grid {
  display: grid;
  grid-template-columns: minmax(0, 850px) minmax(0, 826px);
  gap: 52px;
  align-items: stretch;
}

.proteina-page .faq-list h2 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #2c6098;
  margin-bottom: 28.32px;
}

.proteina-page .faq-item {
  border: 1.5px solid #2c6098;
  border-radius: 12px;
  padding: 14px 19.15px;
  margin-bottom: 26.25px;
}

.proteina-page .faq-item:last-child {
  margin-bottom: 0;
}

.proteina-page .faq-item h4 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.proteina-page .faq-item p {
  font-weight: 500;
  font-size: 24px;
  color: #666;
}

.proteina-page .faq-photo {
  width: 100%;
  max-width: 850px;
  aspect-ratio: 850 / 982;
}

.proteina-page .faq-photo img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .proteina-page .section-8-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proteina-page .faq-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 850 / 982;
  }

  .proteina-page .faq-list h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .proteina-page .faq-item {
    padding: 14px 16px;
    margin-bottom: 16px;
  }

  .proteina-page .faq-item h4 {
    font-size: 18px;
  }

  .proteina-page .faq-item p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .proteina-page .faq-list h2 {
    font-size: 24px;
  }

  .proteina-page .faq-item {
    padding: 12px 14px;
    margin-bottom: 12px;
  }

  .proteina-page .faq-item h4 {
    font-size: 16px;
  }

  .proteina-page .faq-item p {
    font-size: 13px;
  }
}

/* Legal disclaimer */
.proteina-page .section-legal .container {
  max-width: 1975px;
}

.proteina-page .legal-disclaimer {
  width: 100%;
  margin: 0 auto;
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  color: #002e43;
  text-align: center;
}

@media (max-width: 600px) {
  .proteina-page .legal-disclaimer {
    font-size: 14px;
  }
}

/* Section 9: Final CTA */
.proteina-page .section-9-bg {
  max-width: 1920px;
  margin: 0 auto;
  background: url('../images/optimized/anabel-frappe-photo.webp') center/cover no-repeat;
  min-height: 1080px;
  display: flex;
  align-items: center;
  padding: 92px 174px 70px 0;
}

.proteina-page .section-9-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
  align-items: center;
  width: 100%;
}

.proteina-page .section-9-copy {
  text-align: center;
  width: 800px;
  max-width: 100%;
}

.proteina-page .section-9-heading-logo {
  max-width: 100%;
  width: 574.42px;
  height: auto;
  margin: 0 auto 35px;
  display: block;
}

.proteina-page .section-9-subhead {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #002e43;
  line-height: 1.2em;
  margin-bottom: 0;
}

.proteina-page .section-9-sumale {
  width: 788.19px;
  max-width: 100%;
  margin: 0 auto 32px;
}

.proteina-page .section-9-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.proteina-page .section-9-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 120px;
}

.proteina-page .umana-logo {
  width: 353px;
  height: auto;
  margin-right: 30px;
}

.proteina-page .section-9-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 690px;
  gap: 12px;
  flex-wrap: nowrap;
}

.proteina-page .section-9-collab {
  font-weight: 500;
  font-size: 24px;
  color: #002e43;
}

@media (max-width: 900px) {
  .proteina-page .section-9-bg {
    min-height: 0;
    background-position: right center;
    padding: 80px 24px;
  }

  .proteina-page .section-9-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .proteina-page .section-9-copy {
    width: 100%;
  }

  .proteina-page .section-9-heading-logo {
    width: 280px;
    max-width: 100%;
  }

  .proteina-page .section-9-subhead {
    font-size: 28px;
  }

  .proteina-page .section-9-sumale {
    width: calc(100% + 48px);
    max-width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
  }

  .proteina-page .section-9-stats,
.proteina-page .section-9-badges {
    justify-content: center;
  }

  .proteina-page .section-9-footer {
    align-items: center;
    margin-top: 48px;
  }

  .proteina-page .section-9-badges {
    flex-direction: column;
    max-width: 100%;
  }

  .proteina-page .umana-logo {
    margin-right: 0;
  }

  .proteina-page .section-9-collab {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .proteina-page .section-9-bg {
    padding: 64px 16px;
  }

  .proteina-page .section-9-heading-logo {
    width: 220px;
  }

  .proteina-page .section-9-subhead {
    font-size: 22px;
  }

  .proteina-page .section-9-sumale {
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }
}

/* Reduce Tailwind's py-20 (80px) vertical section padding on smaller screens.
   Sections with their own padding-top/bottom override (e.g. section.section-2,
   section.section-3a) already win via higher specificity and are unaffected. */
@media (max-width: 900px) {
  .proteina-page section.py-20:not(.section-2):not(.section-3a):not(.section-5b) {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 600px) {
  .proteina-page section.py-20:not(.section-2):not(.section-3a):not(.section-5b) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
