/* ── Telefónica Hero ── */
.telefonica-hero {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-deep);
}

.telefonica-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.6) 100%);
}

.telefonica-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: clamp(1rem, 3vw, 2rem) clamp(1.5rem, 4vw, 3rem);
}

.telefonica-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.telefonica-hero-content p {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.telefonica-hero-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.telefonica-partner-logo {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.telefonica-partner-logo:hover {
  opacity: 1;
}

/* ── Content Section ── */
.telefonica-content {
  width: 100%;
  background: var(--color-bg);
  border-top: 1px solid var(--color-glass-border);
}

/* ── Story Sections ── */
.story-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  border-radius: 16px;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.story-section:hover {
  border-color: rgba(242, 139, 42, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.story-section h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--color-brand-orange);
  margin-bottom: 1rem;
  margin-top: 0;
}

.story-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

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

.story-section ul {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.story-section ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.8rem;
  position: relative;
}

.story-section ul li::before {
  content: "✓";
  color: var(--color-brand-orange);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1rem;
}

/* ── Story Quotes ── */
.story-quote {
  background: rgba(242, 139, 42, 0.05);
  border-left: 4px solid var(--color-brand-orange);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.story-quote .quote-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.story-quote .quote-text::before {
  content: open-quote;
  font-family: 'Times New Roman', Times, serif;
  font-size: 2.5em;
  color: var(--color-brand-orange);
  position: absolute;
  left: -0.4rem;
  top: 0;
  line-height: 0.8;
}

.story-quote .quote-text::after {
  content: close-quote;
  font-family: 'Times New Roman', Times, serif;
  font-size: 2.5em;
  color: var(--color-brand-orange);
  position: absolute;
  right: -0.4rem;
  bottom: -0.5rem;
  line-height: 0.8;
}

.story-quote .quote-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-align: right;
  margin: 0;
}

.story-quote .quote-author::before {
  content: "— ";
}

/* ── Responsive ── */
@media (width < 768px) {
  .telefonica-hero-logos {
    gap: 1.5rem;
  }

  .telefonica-partner-logo {
    max-height: 40px;
    max-width: 120px;
  }

  .story-section {
    padding: 1.4rem;
  }

  .story-quote {
    padding: 1rem 1.4rem;
  }

  .story-quote .quote-text {
    font-size: 0.92rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
