/* ═══════════════════════════════════════
   TERMINI E CONDIZIONI
═══════════════════════════════════════ */

body {
  width: 100%;
  height: 100%;

  background: #080808;
}

.termini-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5vw 2vw 3vw;
  position: relative;
}

.termini-hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mainColor);
  margin-bottom: 1rem;
  font-weight: 700;
}

.termini-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 1rem;
  text-shadow: 0 0 3vw rgba(141, 69, 213, 0.4);
}

.termini-title-accent {
  color: var(--mainColor);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 1rem;
  text-shadow: 0 0 3vw rgba(141, 69, 213, 0.4);
}

.termini-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.5);
  margin: 0 0 1.5rem;
  font-weight: 400;
}

.termini-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.headerText {
  font-family: 'Bebas Neue', sans-serif;
}

/* Layout principale */
.termini-main {
  display: flex;
  flex-direction: row;
  gap: 3vw;
  width: 85%;
  margin: 0 auto 4vw;
  align-items: flex-start;
}

/* Sidebar */
.termini-sidebar {
  position: sticky;
  top: 2vw;
  width: 220px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.sidebar-title {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
  font-weight: 700;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sidebar-nav a {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 400;
  padding: 0.4rem 0.7rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
  text-shadow: none;
  text-align: left;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: white;
  background: rgba(141, 69, 213, 0.15);
  border-left-color: var(--mainColor);
}

/* Sezioni */
.termini-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.termini-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.2rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;

  backdrop-filter: blur(6px);
}

.termini-section:hover {
  border-color: rgba(141, 69, 213, 0.3);
}

.section-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(146, 63, 198, 0.4);
  line-height: 1;
  font-family: 'Barlow Condensed', sans-serif;
  pointer-events: none;
}

.termini-section.highlight-section .section-number {
  color: rgba(198, 63, 63, 0.4);
}

.termini-section h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 900;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.termini-section p {
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0 0 1rem;
  font-weight: 400;
  text-align: left;
  text-shadow: none;
}

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

.termini-section strong { color: white; font-weight: 700; }

.termini-section a {
  color: var(--mainColor);
  text-decoration: none;
  font-weight: 700;
}

.termini-section a:hover { text-decoration: underline; }

.termini-section code {
  background: rgba(141, 69, 213, 0.2);
  color: #c084fc;
  padding: 0.15em 0.5em;
  border-radius: 0.3rem;
  font-family: monospace;
  font-size: 0.9em;
}

/* Lista */
.termini-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.termini-list li {
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  text-align: left;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  text-shadow: none;
}

.termini-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--mainColor);
  font-weight: 700;
}

/* Sezione rimborsi highlight */
.highlight-section {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.04);
}

.highlight-section:hover {
  border-color: rgba(239, 68, 68, 0.4);
}

.highlight-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 2rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(239, 68, 68, 0.25);
  text-shadow: none;
}

.no-refund-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}

.no-refund-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.no-refund-text strong {
  display: block;
  font-size: 1rem;
  color: #fca5a5;
  margin-bottom: 0.5rem;
}

.no-refund-text p {
  margin: 0 !important;
  font-size: 0.88rem !important;
}

/* Contatti */
.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  background: rgba(141, 69, 213, 0.1);
  border: 1px solid rgba(141, 69, 213, 0.25);
  border-radius: 0.8rem;
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  flex: 1;
}

.contact-card:hover {
  background: rgba(141, 69, 213, 0.2);
  border-color: var(--mainColor);
  text-decoration: none;
}

.contact-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  text-shadow: none;
}

.contact-value {
  font-size: 0.88rem;
  color: white;
  font-weight: 600;
  text-shadow: none;
}
