* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #1a0a00;
  color: #2d2d2d;
  line-height: 1.6;
}

/* Header simple y fijo */
.story-header {
  background: #ffffff;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #d32f2f;
}

.story-header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.story-logo {
  font-size: 28px;
  font-weight: 800;
  color: #d32f2f;
  text-decoration: none;
  letter-spacing: -1px;
}

.story-cta-header {
  background: #d32f2f;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.story-cta-header:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

/* Hero con alerta roja */
.alert-banner {
  background: #d32f2f;
  color: white;
  text-align: center;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Contenedor principal estilo artículo */
.article-container {
  background: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.article-tag {
  display: inline-block;
  background: #d32f2f;
  color: white;
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.article-title {
  font-family: "Lora", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.article-subtitle {
  font-size: 20px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 500;
}

.article-meta {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.article-image {
  width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 4px;
}

.article-image-caption {
  text-align: center;
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 10px;
}

.article-text {
  font-size: 18px;
  line-height: 1.8;
  color: #2d2d2d;
  margin-bottom: 25px;
}

.article-text strong {
  font-weight: 700;
  color: #1a1a1a;
}

.article-quote {
  font-family: "Lora", serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: #d32f2f;
  margin: 35px 0;
  padding: 25px;
  background: #fff8f8;
  border-left: 4px solid #d32f2f;
}

.interview-section {
  background: #f9f9f9;
  padding: 30px;
  margin: 40px 0;
  border-radius: 4px;
}

.interview-q {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 19px;
  margin-bottom: 15px;
  margin-top: 25px;
}

.interview-a {
  font-size: 18px;
  line-height: 1.8;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.highlight-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin: 30px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.danger-box {
  background: #ffebee;
  border-left: 4px solid #d32f2f;
  padding: 20px;
  margin: 30px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #d32f2f;
}

/* Sección de producto integrada */
.product-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin: 50px 0;
}

.product-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 800;
}

.product-section p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.product-image-showcase {
  max-width: 500px;
  margin: 30px auto;
}

.price-box {
  background: white;
  color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  margin: 30px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-original {
  font-size: 24px;
  text-decoration: line-through;
  color: #999;
  margin-bottom: 10px;
}

.price-current {
  font-size: 48px;
  font-weight: 800;
  color: #d32f2f;
  margin-bottom: 10px;
}

.price-discount {
  background: #d32f2f;
  color: white;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Formulario inline */
.inline-form {
  max-width: 500px;
  margin: 30px auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.inline-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}

.form-input {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  transition: border 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #d32f2f;
}

.form-submit {
  width: 100%;
  background: #d32f2f;
  color: white;
  padding: 18px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* Testimonios */
.testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.testimonial-item {
  background: white;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-left: auto;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #999;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

.footer a {
  color: #d32f2f;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .article-title {
    font-size: 32px;
  }

  .article-subtitle {
    font-size: 18px;
  }

  .article-text {
    font-size: 16px;
  }

  .product-section h2 {
    font-size: 28px;
  }

  .price-current {
    font-size: 36px;
  }

  .story-header-content {
    flex-direction: column;
    gap: 15px;
  }
}
