:root {
    --color-primary: #ff6600;
    --color-dark: #101010;
    --color-light: #f7f7f7;
    --color-gray: #777;
    --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: white;
    line-height: 1.6;
  }
  h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #101010;
  }

  .site-header {
    text-align: center;
    padding: 1rem;
    background: var(--color-light);
  }
  
  .site-header .tagline {
    font-size: 1rem;
    color: var(--color-gray);
  }
  
  .hero {
    text-align: center;
    padding: 3rem 1rem;
  }
  
  .hero-title {
  font-size: 3rem;
  line-height: 1.2;
  }
  
  .hero-title .highlight {
    color: var(--color-primary);
  }
  
  .hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #555; 
  }
  
  .facts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
    background: var(--color-light);
  }
  
  .fact h4 {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
  }
  
  .fact h2 {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
    background: #fff;
    flex-wrap: wrap;
    text-align: left;
  }
  
  .about-left h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  
  .about-right p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #5c5c5c; /* Gris más claro */
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
  }
  
  .about-right p strong,
  .about-right .emphasis {
    font-weight: 600;
    color: #ff6600;
  }
  
  
  .about-right .emphasis {
    font-weight: 700;
    color: var(--color-primary);
  }
  
  .signup {
    padding: 4rem 2rem;
    background: #f8f8f8;
    text-align: center;
  }
  
  .signup-title h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .signup-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    text-align: left;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .benefit-list {
    flex: 1 1 300px;
  }
  
  .benefits {
    list-style: none;
    padding: 0;
  }
  
  .benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #101010;
  }
  
  .check-icon {
    background-color: #f1592a;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .signup-form {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .signup-form input[type="email"] {
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  .policy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  
  button[type="submit"] {
    background-color: #f1592a;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
  }
  
  button[type="submit"]:hover {
    filter: brightness(0.95);
  }
  
  
  /* Responsive */
  @media (max-width: 768px) {
    .facts {
      flex-direction: column;
      align-items: center;
    }
    .about {
      flex-direction: column;
    }
  }
  