* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  body {
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    color: #fff;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  video {
    border-radius: 15px;
    width: 100%;
    max-width: 240px; /* vídeo principal reduzido */
    height: auto;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  }

  h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #00ffb3;
    text-align: center;
  }

  p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
  }

  form {
    background-color: #1c1c3c;
    padding: 25px;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  }

  label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
  }

  select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: none;
    background-color: #2e2e4d;
    color: #fff;
  }

  button {
    background-color: #00ffb3;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  button:hover {
    background-color: #00cc99;
  }

  .provas-sociais {
    margin-top: 60px;
    max-width: 1000px;
    width: 100%;
    text-align: center;
  }

  .provas-sociais h3 {
    color: #00ffb3;
    font-size: 22px;
    margin-bottom: 25px;
  }

  .carousel-container {
    overflow-x: auto;
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 1000px;
    margin: auto;
  }

  .carousel-track {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
  }

  .midia {
    flex: 0 0 auto;
    width: auto;
    max-width: 240px;
    scroll-snap-align: center;
    background-color: #2e2e4d;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .midia video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover; /* ou 'contain' se quiser todo o vídeo visível */
    aspect-ratio: 9 / 16; /* mantém visual estilo story */
  }
  

  .footer-info {
    margin-top: 60px;
    background-color: #1c1c3c;
    padding: 30px 20px;
    color: #fff;
    text-align: center;
    width: 100%;
  }
  
  .empresa-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .logo-empresa {
    max-width: 120px;
    height: auto;
    border-radius: 10px;
  }
  
  .dados-empresa p {
    margin: 5px 0;
    font-size: 15px;
  }
  
  .dados-empresa a {
    color: #00ffb3;
    text-decoration: none;
  }
  
  .dados-empresa a:hover {
    text-decoration: underline;
  }
  