/* === PALETA BASE === */
    :root {
      --laranja: #ff6600;
      --roxo: #8a0a8f;
      --fundo: linear-gradient(135deg, rgba(15,23,42,1) 0%, rgba(0,0,0,0.95) 100%);
      --texto: rgba(255,255,255,0.9);
      --brilho: rgba(255,255,255,0.1);
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: var(--fundo);
      color: var(--texto);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* === CABEÇALHO === */
    header {
      background: linear-gradient(90deg, rgba(175,150,8,0.95), rgba(138,10,143,0.95));
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 25px rgba(0,0,0,0.5);
      padding: 15px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 2px solid var(--laranja);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    header img {
      height: 65px;
      border-radius: 50%;
      box-shadow: 0 0 15px rgba(255,255,255,0.4);
      transition: transform 0.3s ease;
    }

    header img:hover {
      transform: rotate(8deg) scale(1.05);
    }

    header h1 {
      font-size: 1.9rem;
      color: #fff;
      margin: 0;
      text-shadow: 0 0 15px rgba(255,255,255,0.3);
      letter-spacing: 1px;
    }

    nav a {
      color: #aeefff;
      text-decoration: none;
      margin: 0 15px;
      font-weight: 600;
      position: relative;
      transition: 0.3s ease;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--laranja);
      transition: width 0.3s;
    }

    nav a:hover::after {
      width: 100%;
    }

    nav a:hover {
      color: var(--laranja);
      text-shadow: 0 0 10px rgba(255,255,255,0.6);
    }

    /* === CONTEÚDO PRINCIPAL === */
    main {
      padding: 60px 5%;
      animation: fadeIn 1s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    section {
      text-align: center;
      margin-bottom: 60px;
    }

    section h2 {
      color: var(--laranja);
      font-size: 2.8em;
      font-weight: 700;
      margin-bottom: 10px;
      text-shadow: 0 0 15px rgba(255,102,0,0.6);
    }

    section p {
      font-size: 1.2em;
      color: rgba(255,255,255,0.85);
      margin-bottom: 50px;
    }

    /* === Container de vídeo e texto === */
    .content-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      animation: slideUp 1.2s ease;
    }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    video {
      width: 400px;
      height: 220px;
      border-radius: 20px;
      box-shadow: 0 0 25px rgba(255, 102, 0, 0.5);
      transition: all 0.4s ease;
    }

    video:hover {
      transform: scale(1.05);
      box-shadow: 0 0 35px rgba(255, 102, 0, 0.7);
    }

    .text {
      max-width: 450px;
      text-align: left;
      background: rgba(255, 255, 255, 0.05);
      padding: 30px;
      border-radius: 18px;
      box-shadow: 0 0 25px rgba(255, 102, 0, 0.2);
      transition: 0.4s;
      backdrop-filter: blur(10px);
    }

    .text:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 35px rgba(255, 102, 0, 0.5);
    }

    .text h2 {
      color: var(--laranja);
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .text p {
      font-size: 1rem;
      color: rgba(255,255,255,0.85);
    }

    /* === RODAPÉ === */
    footer {
      background: rgba(0,0,0,0.85);
      color: #fff;
      text-align: center;
      padding: 20px 0;
      margin-top: 70px;
      font-size: 0.9rem;
      box-shadow: 0 -4px 25px rgba(255, 102, 0, 0.25);
    }

    footer p {
      margin: 0;
      opacity: 0.8;
    }

    /* === Responsividade === */
    @media (max-width: 900px) {
      header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }

      .content-container {
        flex-direction: column;
      }

      video {
        width: 100%;
        height: auto;
      }

      .text {
        max-width: 100%;
        text-align: center;
      }

      nav a {
        display: inline-block;
        margin: 10px;
      }
    }