/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* VARIABLES & RESET */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --coco-color: #d4bae0;
  --berry-color: #f4a9a9;
  --bg-cream: #f5ede1;
  --text-dark: #2e2e2e;
  --text-light: #ffffff;
  --border-light: rgba(46, 46, 46, 0.08);
  --Anton: 'Anton', sans-serif;
  --Quick: 'Quicksand', sans-serif;
  --Belleza: 'Belleza', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--Quick);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* HEADER */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.header {
  position: sticky;
  top: 0;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--Anton);
  font-size: 16px;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--text-dark);
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 0.9;
}

.logo:hover {
  opacity: 1;
}

.battle-tag {
  font-family: var(--Anton);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.35;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* HERO SECTION */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px;
}

.hero-content {
  max-width: 700px;
}

.battle-title {
  font-family: var(--Anton);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.battle-subtitle {
  font-family: var(--Belleza);
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.65;
  max-width: 550px;
  margin: 0 auto;
}

.battle-subtitle-main {
  font-family: var(--Belleza);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto 24px;
}

.battle-subtitle-cta {
  font-family: var(--Quick);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.65;
  max-width: 550px;
  margin: 0 auto 32px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: var(--berry-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--Quick);
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(244, 169, 169, 0.3);
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 169, 169, 0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* PRODUCTS SECTION */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.combatants {
  padding: 80px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.combatants-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 2px solid rgba(46, 46, 46, 0.12);
  border-radius: 20px;
  padding: 24px;
  background-color: var(--text-light);
}

.product-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.color-block {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.coco-color {
  background-color: var(--coco-color);
}

.berry-color {
  background-color: var(--berry-color);
}

.product-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.perfil {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.45;
}

.product-name {
  font-family: var(--Anton);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.product-desc {
  font-family: var(--Belleza);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.7;
}

.pairing {
  margin-top: 8px;
}

.pairing-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.45;
  margin-bottom: 6px;
}

.pairing-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.65;
}

.allergens {
  margin-top: 8px;
}

.allergens-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.35;
  margin-bottom: 6px;
}

.allergens-text {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  opacity: 0.4;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 100px;
  background-color: rgba(46, 46, 46, 0.05);
  border: 1px solid rgba(46, 46, 46, 0.1);
  color: var(--text-dark);
  opacity: 0.6;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(46, 46, 46, 0.08);
}

.size {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0.5;
}

.price {
  font-family: var(--Anton);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  display: none;
}

/* VS Container */
.vs-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.vs-text {
  font-family: var(--Anton);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  opacity: 0.2;
  text-transform: uppercase;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* CTA SECTION */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-section {
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cta-title {
  font-family: var(--Anton);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.cta-timeline {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.timeline-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.45;
}

.timeline-date {
  font-family: var(--Quick);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0.85;
}

.cta-subtitle {
  font-family: var(--Quick);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  opacity: 0.65;
  max-width: 600px;
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* PACK SECTION */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pack-section {
  padding: 60px 48px;
  background-color: var(--text-light);
}

.pack-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(46, 46, 46, 0.03);
  border: 1.5px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
}

.pack-title {
  font-family: var(--Anton);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.45;
  margin-bottom: 24px;
}

.pack-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.pack-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(46, 46, 46, 0.08);
}

.pack-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.pack-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.pack-item-info {
  flex: 1;
}

.pack-item-name {
  font-family: var(--Anton);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.pack-item-desc {
  font-size: 12px;
  color: var(--text-dark);
  opacity: 0.6;
  line-height: 1.4;
}

.pack-item-price {
  font-family: var(--Anton);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  opacity: 0.65;
  flex-shrink: 0;
}

.pack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(46, 46, 46, 0.12);
}

.pack-total-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.45;
}

.pack-total-price-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pack-total-price-original {
  font-family: var(--Quick);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.4;
  text-decoration: line-through;
}

.pack-total-price {
  font-family: var(--Anton);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.pack-total-price span {
  font-size: 16px;
}

.pack-total-badge {
  font-family: var(--Quick);
  font-size: 12px;
  font-weight: 600;
  color: var(--berry-color);
  background-color: rgba(244, 169, 169, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* STOCK BAR */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stock-bar {
  margin-bottom: 28px;
}
.stock-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.stock-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(46, 46, 46, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stock-num {
  font-family: var(--Anton);
  font-size: 18px;
  color: #ffa7a7;
}
.stock-num span {
  font-family: var(--Quick);
  font-size: 12px;
  color: rgba(46, 46, 46, 0.3);
  font-weight: 400;
}
.bar-track {
  height: 8px;
  background: rgba(46, 46, 46, 0.08);
  border-radius: 100px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #86b499, #ffa7a7);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* FORM SECTION */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.form-section {
  padding: 80px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-container {
  width: 100%;
  max-width: 500px;
}

.form-title {
  font-family: var(--Anton);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.01em;
}

.battle-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-input {
  padding: 15px 20px;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  font-family: var(--Quick);
  font-size: 15px;
  background-color: var(--text-light);
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(46, 46, 46, 0.3);
}

.form-input:focus {
  outline: none;
  border-color: var(--text-dark);
  box-shadow: 0 0 0 3px rgba(212, 186, 224, 0.1);
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0;
}

.form-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--text-dark);
}

.form-consent label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dark);
  opacity: 0.65;
  cursor: pointer;
}

.submit-btn {
  padding: 16px 32px;
  margin-top: 8px;
  background-color: var(--berry-color);
  color: var(--text-dark);
  border: none;
  border-radius: 100px;
  font-family: var(--Quick);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  width: 100%;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(244, 169, 169, 0.4);
}

.submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.error-message {
  margin-top: 16px;
  padding: 12px 16px;
  background-color: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  color: var(--text-dark);
  font-size: 13px;
  text-align: center;
}

.success-message {
  margin-top: 20px;
  padding: 24px 20px;
  background-color: rgba(212, 186, 224, 0.1);
  border: 1px solid rgba(212, 186, 224, 0.3);
  border-radius: 12px;
  text-align: center;
}

.success-message p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.success-message strong {
  font-weight: 600;
}

.success-steps {
  text-align: left;
  background-color: rgba(212, 186, 224, 0.08);
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.success-steps p {
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--text-dark);
  opacity: 0.8;
}

.success-steps ol {
  margin: 0;
  padding-left: 20px;
}

.success-steps li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.75;
  margin-bottom: 6px;
}

.success-steps li:last-child {
  margin-bottom: 0;
}

.success-closing {
  margin-bottom: 0;
  opacity: 0.7 !important;
}

.success-spots {
  margin-top: 18px;
  padding: 12px 16px;
  background-color: rgba(244, 169, 169, 0.1);
  border: 1px solid rgba(244, 169, 169, 0.25);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--berry-color);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* INFO SECTION */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.info-section {
  padding: 80px 48px;
  border-top: 1px solid var(--border-light);
}

.info-content {
  max-width: 1280px;
  margin: 0 auto;
}

.info-title {
  font-family: var(--Anton);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: -0.01em;
}

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

.info-card {
  padding: 32px 24px;
  background-color: var(--text-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
  font-family: var(--Anton);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.info-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.65;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* FOOTER */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-content p {
  font-size: 13px;
  color: var(--text-dark);
  opacity: 0.55;
}

.footer-link {
  font-size: 13px;
  color: var(--text-dark);
  opacity: 0.55;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* RESPONSIVE */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .pack-container {
    padding: 24px;
  }

  .pack-title {
    font-size: 12px;
  }

  .pack-item-name {
    font-size: 14px;
  }

  .pack-total-price {
    font-size: 28px;
  }

  .combatants-wrapper {
    gap: 40px;
  }

  .product-card {
    gap: 18px;
  }

  .product-name {
    font-size: 28px;
  }

  .size {
    font-size: 12px;
  }

  .price {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 0 24px;
  }

  .hero {
    padding: 60px 24px;
    min-height: 50vh;
  }

  .battle-title {
    font-size: clamp(36px, 7vw, 60px);
  }

  .battle-subtitle-main {
    font-size: 16px;
  }

  .hero-cta-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .cta-timeline {
    gap: 24px;
  }

  .combatants {
    padding: 60px 24px;
  }

  .combatants-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vs-text {
    font-size: 36px;
    margin: 20px 0;
  }

  .cta-section {
    padding: 60px 24px;
  }

  .cta-title {
    font-size: clamp(28px, 5vw, 48px);
  }

  .form-section {
    padding: 60px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .info-section {
    padding: 60px 24px;
  }

  .info-title {
    font-size: 36px;
    margin-bottom: 36px;
  }

  .info-grid {
    gap: 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 16px 0;
  }

  .header-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 0 16px;
  }

  .logo {
    font-size: 12px;
  }

  .battle-title {
    font-size: 32px;
  }

  .battle-subtitle {
    font-size: 15px;
  }

  .battle-subtitle-main {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .battle-subtitle-cta {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-cta-btn {
    padding: 11px 20px;
    font-size: 13px;
  }

  .cta-timeline {
    gap: 16px;
  }

  .timeline-label {
    font-size: 10px;
  }

  .timeline-date {
    font-size: 13px;
  }

  .pack-total-price-container {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .pack-total-price {
    font-size: 28px;
  }

  .product-name {
    font-size: 22px;
  }

  .product-desc {
    font-size: 13px;
  }

  .perfil {
    font-size: 8px;
  }

  .pairing-label,
  .allergens-label {
    font-size: 8px;
  }

  .pairing-text {
    font-size: 13px;
  }

  .allergens-text {
    font-size: 10px;
  }

  .tags {
    gap: 6px;
  }

  .tag {
    font-size: 10px;
    padding: 4px 10px;
  }

  .cta-title {
    font-size: 28px;
  }

  .form-title {
    font-size: 24px;
  }

  .info-title {
    font-size: 28px;
  }

  .combatants {
    padding: 40px 16px;
  }

  .hero {
    padding: 40px 16px;
  }

  .cta-section {
    padding: 40px 16px;
  }

  .form-section {
    padding: 40px 16px;
  }

  .info-section {
    padding: 40px 16px;
  }
}
