    :root {
      --laranja: #ef5821;
      --azul-claro: #2f5e88;
      --azul-escuro: #044f91;
      --branco: #fff;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #f4f6f8;
      color: #333;
      line-height: 1.6;
    }

    /* HEADER */
    header {
      background: linear-gradient(135deg, #ef5821, var(--azul-escuro), #2f5a80, #ef5821);
      color: var(--branco);
      padding: 30px 20px;
      text-align: center;
      text-shadow: 1px 1px 3px #232323;
    }

    header img {
      max-width: 250px;
      width: 100%;
    }

    header h1 {
      font-size: 39px;
      margin-bottom: 10px;
      color: yellow;
    }

    header span {
      font-weight: normal;
    }

    header p {
      max-width: 700px;
      margin: 0 auto 10px;
      font-size: 17px;
    }

    .btn-whats {
      display: inline-block;
      background: var(--laranja);
      color: var(--branco);
      padding: 14px 26px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
      border: 2px solid yellow;
    }

    .btn-whats:hover {
      opacity: 0.9;
      transform: scale(1.03);
    }

    /* SEÇÕES */
    section {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .card {
      background: var(--branco);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      border: 2px solid yellow;
    }

    h2 {
      color: var(--azul-escuro);
      margin-bottom: 20px;
      font-size: 28px;
      text-align: center;
    }

    /* IMAGENS */
    .images {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .images img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 10px;
    }

    /* LISTA */
    ul {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    ul li {
      background: #f1f4f7;
      padding: 12px 15px;
      border-radius: 6px;
      margin-bottom: 10px;
      border-left: 5px solid var(--laranja);
      font-weight: 500;
    }

    /* HORÁRIOS */
    .schedule {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .schedule div {
      background: #f1f4f7;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      border: 2px solid #b7b7b7;
    }

    .schedule strong {
      display: block;
      margin-bottom: 8px;
      color: var(--azul-escuro);
    }

    /* VÍDEO */
    .video {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 12px;
      margin-top: 20px;
      border: 5px solid var(--laranja);
    }

    .video video {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    /* CONTATO */
    .contact p {
      margin: 10px 0;
      text-align: center;
    }

    .contact a {
      color: var(--laranja);
      text-decoration: none;
      font-weight: 600;
    }

    .topo-header {
      padding: 10px 7px 5px;
      background: linear-gradient(135deg, #ef5821, var(--azul-escuro));
      position: fixed;
      bottom: 2rem;
      right: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      display: none;  /* Inicia com o botão invisível */
      z-index: 1;
      border-radius: 5px;
    }
    .topo-header i {
      font-size: 1.3rem;
      color: #e5e5e5;
    }

    /* FOOTER */
    footer {
      background: var(--azul-escuro);
      color: var(--branco);
      text-align: center;
      padding: 20px;
      margin-top: 60px;
      font-size: 14px;
    }

    footer div {
      display: flex;
      align-items: center;
      gap: 5px;
      justify-content: center;
      margin-top: 15px;
    }

    footer p {
      font-size: 12px;
      letter-spacing: 1px;
      color: orange;
      margin-top: 5px;
    }

    footer div img {
      width: 64px;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 32px;
      }
    }

    