/* Reset e estrutura global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    
    -moz-osx-font-smoothing: grayscale;
  }
  body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  main {
    flex: 1;
  }
  a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease-in-out;
  }
  
  a:hover,
  a:focus {
    color: #00e0ff;
  }
  
  /* Botões principais */
  .btn-cta,
  .btn-hero {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(135deg, #00e0ff, #00b8d6);
    color: #000;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 224, 255, 0.25);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn-cta::before,
  .btn-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-25deg);
    z-index: 0;
    transition: left 0.5s;
  }
  
  .btn-cta:hover::before,
  .btn-hero:hover::before {
    left: 100%;
  }
  
  .btn-cta:hover,
  .btn-hero:hover {
    background: linear-gradient(135deg, #00d2ff, #00aabb);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 224, 255, 0.35);
  }
  
  /* Acessibilidade e foco */
  .btn-cta:focus,
  .btn-hero:focus {
    outline: 2px solid #00e0ff;
    outline-offset: 4px;
  }
  .equipe-lista {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 20px;
  }
  
  .equipe-lista li {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #ccc;
  }
  