@import url(https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Barlow+Condensed:wght@500;600;700&display=swap);
:host {
  /* Brand colors — sovrascrivibili dal sito Webflow */
  --tc-accent: #e8510a;
  --tc-accent-soft: #fef0ea;
  --tc-text: #0a0a0a;
  --tc-text-muted: #777;
  --tc-text-subtle: #999;
  --tc-text-faint: #bbb;
  --tc-text-light: #aaa;

  --tc-bg: #ffffff;
  --tc-bg-soft: #fafafa;
  --tc-bg-muted: #f5f5f5;
  --tc-bg-section: #f7f7f7;
  --tc-bg-dark: #0a0a0a;
  --tc-bg-darker: #060606;

  --tc-border: #ebebeb;
  --tc-border-soft: #f0f0f0;
  --tc-border-medium: #e0e0e0;
  --tc-border-dark: #111;

  /* Typography */
  --tc-font-body: "Barlow", system-ui, -apple-system, sans-serif;
  --tc-font-display: "Barlow Condensed", "Barlow", sans-serif;

  /* Radii */
  --tc-radius-sm: 3px;
  --tc-radius: 4px;
  --tc-radius-md: 6px;
  --tc-radius-lg: 8px;

  /* Spacing scale */
  --tc-space-1: 4px;
  --tc-space-2: 8px;
  --tc-space-3: 12px;
  --tc-space-4: 16px;
  --tc-space-5: 20px;
  --tc-space-6: 24px;
  --tc-space-8: 32px;
  --tc-space-10: 40px;
  --tc-space-12: 48px;
  --tc-space-16: 64px;
  --tc-space-20: 80px;

  /* Container */
  --tc-section-padding-x: 32px;
}

/* L'host (custom element) è inline di default: forzato a blocco a piena larghezza
   così ogni componente occupa il 100% della Cell/contenitore Webflow in cui è inserito. */
:host {
  display: block;
  width: 100%;
}

/* Reset locale al Shadow DOM */
:host,
:host * {
  box-sizing: border-box;
}

.Rrn3lcchGV5Sk7nISYWG {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--tc-border-soft);
  font-family: var(--tc-font-body);
}

.pplrYrfz_EiSjd0xXF12 {
  background: var(--tc-text);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 13px 20px;
  border-radius: var(--tc-radius);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tc-text);
  transition: opacity 0.18s ease;
  line-height: 1.2;
}

.pplrYrfz_EiSjd0xXF12:hover {
  opacity: 0.9;
}

.MY3uZyJmtUH4GHfCY0DA {
  display: grid;
  grid-template-columns: repeat(var(--tc-cta-secondary-cols, 2), 1fr);
  gap: 8px;
}

.IkX0Dw6QmDbRItZcZs9b {
  border: 1px solid var(--tc-border-medium);
  color: var(--tc-text);
  font-size: 12px;
  padding: 10px;
  border-radius: var(--tc-radius);
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  background: var(--tc-bg);
  transition: border-color 0.18s ease, background 0.18s ease;
  line-height: 1.2;
}

.IkX0Dw6QmDbRItZcZs9b:hover {
  border-color: var(--tc-text);
  background: var(--tc-bg-soft);
}

.lqGpk_kgRUdbDfxMmOxV {
  color: #2d8a5e;
}

@media (max-width: 768px) {
  .Rrn3lcchGV5Sk7nISYWG {
    padding: 18px 20px;
  }
  .MY3uZyJmtUH4GHfCY0DA {
    grid-template-columns: 1fr;
  }
}

