body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }

  .logo-top-right {
    position: absolute;
    top: 20px;
    right: 50px;
    width: 200px; /* Cambiá este valor para hacerlo más grande */
    height: auto;
    z-index: 10;
  }  
  
  header.hero {
    background-image: url('hero-bg.jpg'); /* ← tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 160px 20px;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* overlay para que el texto se lea bien */
    z-index: 1;
  }
  
  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  
  section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #007bff;
  }

  .icon {
    width: 64px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }  
  
  .features,
  .core-verticals {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .feature,
  .core-verticals > div {
    flex: 1 1 250px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  section.cta {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 50px 20px;
  }
  
  footer {
    background: #111;
    color: #bbb;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
  }
  
  footer a {
    color: #fff;
    text-decoration: none;
  }

  .footer-logo {
    width: 150px;
    margin-bottom: 15px;
  }
  
  