VENDA DE PASSES
.passes {
  background-color: #f0f8f4;
  width: 100%;
  padding: 60px 20px; /* Padding menor para evitar estouro */
  box-sizing: border-box; /* Impede o conteúdo de ultrapassar a tela */
}

.passes h1 {
  color: #2b7c54;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 40px;
}

.passes-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap; /* Permite quebra de linha no mobile */
}

.comprar {
  font-size: 1.5em;
  text-transform: uppercase;
}

.overlay {
  padding: 3rem;
  color: #000;
  flex: 1 1 300px; /* Permite flexibilidade */
  border-radius: 10px;
  box-sizing: border-box;
}

.overlay h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #000;
  text-transform: uppercase;
}

.overlay p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-family: 'Lato', sans-serif;
}

.overlay button {
  background-color: #2b7c54;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.overlay button:hover {
  background-color: #246645;
}

.img-container {
  flex: 1 1 300px; /* Responsividade garantida */
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.img-container img {
  max-width: 100%;
  height: auto;
}

.comprar_passe_red {
  all: unset;
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
  .passes-content {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .overlay {
    padding: 1.5rem;
  }

  .passes h1 {
    font-size: 2.5rem;
  }

  .overlay button {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
  }

  .img-container {
    margin-top: 20px;
  }
}

 .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        header {
            text-align: center;
            margin-bottom: 3rem;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }

        .content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .video-section {
            flex: 1;
            min-width: 300px;
        }

        .video-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            margin-bottom: 1.5rem;
            background: #000;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* Proporção 16:9 */
            height: 0;
        }

        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .video-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .video-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .info-section {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #ffcc00;
        }

        h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem;
            color: #ffcc00;
        }

        p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .steps {
            margin-top: 2rem;
        }

        .step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .step-number {
            background: #ffcc00;
            color: #1a2a6c;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .step-text {
            flex: 1;
        }

        .benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .benefit {
            flex: 1;
            min-width: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
        }

        .benefit-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .cta-button {
            display: inline-block;
            background: #ffcc00;
            color: #1a2a6c;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            margin-top: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 204, 0, 0.5);
            background: #ffd633;
        }

        .animar-esquerda {
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

