body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: white;
    color: #001253;
  }
  
  .wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  
  .image-container {
    text-align: center;
  }
  
  .imagem-homem {
    width: 100%;
    max-width: 550px;
    height: auto;
  }
  
  /* Contenido */
  .content {
    padding: 20px;
    width: 100%;
    max-width: 900px;
    text-align: center;
  }
  
  .logo {
    max-width: 200px;
    margin: 0 auto 20px;
  }
  
  .desktop-only {
    display: none;
  }
  
  h1 {
    font-size: 26px;
    font-weight: 800;
    margin: 20px 0 10px;
  }
  
  .sub {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .item {
    max-width: 400px;
  }
  
  .icon-red {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(93%) saturate(7492%) hue-rotate(-7deg) brightness(102%) contrast(115%);
  }
  
  .cta {
    text-align: center;
  }
  
  .cta button {
    background: linear-gradient(135deg, #27ae60, #219150);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.5);
    transition: all 0.3s ease-in-out;
    animation: pulse 2s infinite;
    margin-top: 20px;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(39, 174, 96, 0.5); }
    50% { box-shadow: 0 0 25px rgba(39, 174, 96, 1); }
    100% { box-shadow: 0 0 15px rgba(39, 174, 96, 0.5); }
  }
  
  /* Versión Escritorio */
  @media screen and (min-width: 768px) {
    .wrapper {
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }
  
    .content {
      text-align: left;
      padding: 40px;
    }
  
    .logo {
      margin: 0 0 20px 0;
    }
  
    h1, .sub {
      text-align: left;
    }
  
    .features {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
  
    .item {
      text-align: left;
      max-width: 300px;
    }
  
    .desktop-only {
      display: block;
    }
  
    .wrapper {
      flex-direction: row;
    }
  
    .image-container {
      order: 2;
    }
  
    .content {
      order: 1;
    }
  }