   /* ===== Estilo Cards ===== */
    .cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 40px;
      max-width: 1200px;
      margin: auto;
    }

   .card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  height: 280px; /* altura maior */
    }

    .card img {
      width: 100%;
      height: 100%;
      transition: transform 0.4s ease;
      display: block;
    }

    .card:hover img {
      transform: scale(1.1);
    }

    .card-overlay {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 15px;
      background: rgba(0,0,0,0.6);
      color: #fff;
      text-align: center;
      font-size: 1.1rem;
      font-weight: bold;
    }

    /* ===== Modal ===== */
    .modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal-content {
      position: relative;
      width: 90%;
      max-width: 800px;
      overflow: hidden;
      border-radius: 15px;
      background: #000;
    }

    .carousel {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .carousel img {
      min-width: 100%;
      height: auto;
      display: block;
    }

    .close, .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      color: #fff;
      border: none;
      padding: 12px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 1001;
    }

    .close {
      top: 15px;
      right: 15px;
      transform: none;
    }

    .prev { left: 15px; }
    .next { right: 15px; }

    .close:hover, .prev:hover, .next:hover {
      background: rgba(255,255,255,0.3);
    }

    /* ===== Barra de Progresso ===== */
    .progress-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 5px;
      background: #E66E18;
      width: 0%;
      animation: progress linear;
    }

    @keyframes progress {
      from { width: 0%; }
      to { width: 100%; }
    }