.elementor-33847 .elementor-element.elementor-element-20d28d3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-03c65e3 */:root {
  --bg-dark: #0f2a1b;
  --bg-light: #f5f7f5;
  --brand: #8bc34a;
  --accent: #ff8a00;
  --text-main: #2d2d2d;
  --text-muted: #6b6b6b;
  --radius: 12px;
  --shadow: 0 6px 20px rgba(0,0,0,.1);
}

.story-section {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Hero */
.story-hero {
  background: linear-gradient(135deg, var(--bg-dark), #1e4d32);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.story-hero h1 {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.story-hero h1 span {
  color: var(--brand);
}

.story-hero .subtitle {
  font-size: 3rem;
  margin-top: 1rem;
  color: #cfe8cf;
}

/* Contenido */
.story-content {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-content p {
  margin: 1.5rem 0;
  font-size: 2rem;
  color: var(--text-muted);
  text-align: justify;
}

.story-content strong {
  color: var(--bg-dark);
}

.story-content blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--brand);
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

/* Imagen */
.story-image {
  margin-top: 3rem;
  text-align: center;
}

.story-image img {
  width: 100%;
  max-width: 700px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}

.story-image img:hover {
  transform: scale(1.03);
}

.caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .story-hero h1 {
    font-size: 2.2rem;
  }
  .story-content {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
}/* End custom CSS */