/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: #f1f5f9;
    line-height: 1.6;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    background: url('/karol-piekut-yOeG6c-AOfA-unsplash.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(15, 23, 42, 0.75);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .logo {
    width: 100px;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    background-color: #38bdf8;
    color: #0f172a;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background-color: #0ea5e9;
  }
  
  .about,
  .pasiones,
  .mapa {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: auto;
    text-align: center;
  }
  
  .about p {
    max-width: 700px;
    margin: auto;
  }
  
  .pasiones .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .item img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    filter: brightness(5) invert(0);
  }
  
  #map {
    height: 400px;
    margin-top: 2rem;
    border-radius: 10px;
  }
  
  footer {
    background-color: #1e293b;
    padding: 2rem;
    text-align: center;
    color: #94a3b8;
  }
  
  .socials a {
    color: #38bdf8;
    text-decoration: none;
  }
  
  .profesional {
    padding: 4rem 2rem;
    background-color: #1e1e1e;
    color: #ffffff;
    text-align: center;
  }
  
  .profesional h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .profesional p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .profesional .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    justify-items: center;
  }
  
  .profesional .item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .profesional .item img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1); /* blanco sobre fondo oscuro */
  }
  
  .profesional .item p {
    font-size: 1rem;
    margin: 0;
  }
  