/* Diseño general */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f0f0f8;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Encabezado */
  header {
    background-color: #a39bff;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
  .header-content {
    max-width: 800px;
    margin: auto;
  }
  header h1 {
    margin: 0;
    font-size: 3em;
    font-weight: bold;
  }
  header p {
    font-size: 1.2em;
    margin-top: 10px;
    opacity: 0.9;
  }
  
  /* Contenedor principal */
  .container {
    flex: 1;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Sección de Introducción */
  .intro-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .intro-image {
    flex: 1 1 250px;
    text-align: center;
  }
  .intro-image img {
    max-width: 80%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  .intro-text {
    flex: 2 1 300px;
  }
  .intro-text h2 {
    color: #7c6aff;
    margin-top: 0;
    font-size: 2.2em;
  }
  .intro-text p {
    font-size: 1.1em;
    line-height: 1.6;
  }
  
  /* Sección de Características */
  .features-section {
    margin-bottom: 40px;
    text-align: center;
  }
  .features-section h2 {
    color: #7c6aff;
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .feature-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .feature-box h3 {
    margin-top: 0;
    color: #7c6aff;
    font-size: 1.5em;
  }
  .feature-box p {
    font-size: 1em;
    line-height: 1.5;
  }
  
  /* Sección de Ventajas y Casos de Uso */
  .use-cases-section {
    margin-bottom: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .use-cases-section h2 {
    color: #7c6aff;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
  }
  .cases-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    margin-bottom: 15px;
  }
  .case {
    flex: 1 1 250px;
    background-color: #f9f9fd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  .case h3 {
    margin-top: 0;
    color: #7c6aff;
    font-size: 1.4em;
  }
  .case p {
    font-size: 1em;
    line-height: 1.5;
  }
  .additional-info {
    text-align: center;
    font-size: 1.1em;
    margin-top: 10px;
  }
  
  /* Sección de Ejemplo Cypher */
  .cypher-section {
    margin-bottom: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .cypher-section h2 {
    color: #7c6aff;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 15px;
  }
  .cypher-section p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
  }
  .code-block {
    background-color: #f0f0f8;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1em;
    white-space: pre-wrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  /* Sección de Recursos */
  .resources-section {
    margin-bottom: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .resources-section h2 {
    color: #7c6aff;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 15px;
  }
  .resources-section p {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 15px;
  }
  .resources-section ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }
  .resources-section li {
    margin: 8px 0;
  }
  .resources-section a {
    color: #7c6aff;
    text-decoration: none;
    font-weight: bold;
    transition: text-decoration 0.3s ease;
  }
  .resources-section a:hover {
    text-decoration: underline;
  }
  
  /* Pie de Página */
  footer {
    background-color: #a39bff;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  