 


 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: sans-serif;
      background: #fff;
      padding: 40px 20px;
    }

    .section-title {
      text-align: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .carousel-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }

    .carousel-track {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      overflow: hidden;
      scroll-behavior: smooth;
      padding: 10px 0;
    }

    .event-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      overflow: hidden;
    }

    .event-card img {
      width: 100%;
      height: 300px;
      display: block;
    }

    .event-info {
      padding: 10px;
    }

    .event-info p {
      margin: 5px 0;
      font-size: 14px;
    }

    .event-info .title {
      font-weight: bold;
      font-size: 15px;
    }

    .buy-button {
      display: inline-block;
      margin: 10px auto 15px;
      background: #004A98;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
    }

    .buy-button:hover {
      background: #003b7a;
    }

    .nav-buttons {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
    }

    .nav-buttons button {
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      cursor: pointer;
    }

    .dot {
      width: 6px;
      height: 6px;
      background: #0077cc;
      border-radius: 50%;
      opacity: 0.4;
      transition: 0.3s;
    }

    .dot.active {
      opacity: 1;
      transform: scale(1.3);
    }

    @media (max-width: 768px) {
      .carousel-track {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 769px) {
      .carousel-track {
        grid-template-columns: repeat(4, 1fr);
      }
    }




        * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: sans-serif;
      background: #fff;
      padding: 40px 20px;
    }

    .section-title1 {
      text-align: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .carousel-wrapper1 {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
    }

    .carousel-track1 {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 10px 0;
    }

    .carousel-track1::-webkit-scrollbar {
      display: none;
    }

    .event-card1 {
      flex: 0 0 calc(25% - 15px);
      background: white;
      border-radius: 10px;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      min-width: 280px;
      max-width: 300px;
    }

    .event-card1 img {
      width: 100%;
      height: auto;
      display: block;
    }

    .event-info1 {
      padding: 10px;
    }

    .event-info1 p {
      margin: 5px 0;
      font-size: 14px;
    }

    .event-info1 .title1 {
      font-weight: bold;
      font-size: 15px;
    }

    .buy-button1 {
      display: inline-block;
      margin: 10px auto 15px;
      background: #004A98;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
    }

    .buy-button1:hover {
      background: #003b7a;
    }

    .nav-buttons1 {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
    }

    .nav-buttons1 button {
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .event-card1 {
        flex: 0 0 calc(50% - 10px);
      }
    }



     * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 40px 16px;
      font-family: "Segoe UI", sans-serif;
      background: #f9f9f9;
    }

    .section5 {
      max-width: 1320px;
      margin: 0 auto 60px;
    }

    .section-header5 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .section-header5 h2 {
      font-size: 20px;
      font-weight: 600;
      margin: 0;
    }

    .section-header5 .actions5 {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .section-header5 a {
      font-size: 14px;
      text-decoration: none;
      color: #0077cc;
    }

    .carousel-wrapper5 {
      position: relative;
    }

    .carousel5 {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 20px;
      padding-bottom: 5px;
    }

    .carousel5::-webkit-scrollbar {
      display: none;
    }

    .card5 {
      flex: 0 0 290px;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .card5 img {
      width: 100%;
      height: 330px;
      height: auto;
      display: block;
    }

    .card-content5 {
      padding: 10px 14px 16px;
    }

    .card-content5 h4 {
      font-size: 15px;
      margin: 6px 0;
      color: #333;
    }

    .card-content5 p {
      margin: 0;
      font-size: 13px;
      color: #777;
    }

    .card-content5 .date5 {
      margin-top: 6px;
      font-weight: 600;
      font-size: 13px;
      color: #1c77bd;
    }

    .arrow-btn5 {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid #ccc;
      background: white;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .card5 {
        flex: 0 0 80%;
      }
    }

    * {
      box-sizing: border-box;
    }

.container9 {
      max-width: 1320px;
      margin: 0 auto;
      padding: 40px 16px;
    }

    /* Seção: Eventos por Estado */
    .estados-section9 h2 {
      font-size: 20px;
      margin-bottom: 16px;
    }

    .estados-wrapper9 {
      position: relative;
    }

    .carrossel-estados9 {
      display: flex;
      overflow-x: auto;
      gap: 16px;
      padding-bottom: 10px;
      scroll-behavior: smooth;
    }

    .carrossel-estados9::-webkit-scrollbar {
      height: 6px;
    }

    .carrossel-estados9::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 10px;
    }

    .estado-card9 {
      flex: 0 0 auto;
      width: 100px;
      text-align: center;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
      padding: 8px;
    }

    .estado-card9 img {
      width: 100%;
      border-radius: 6px;
    }

    .estado-card9 span {
      display: block;
      font-size: 13px;
      margin-top: 6px;
    }

    .seta9 {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
    }

    .seta-esquerda9 {
      left: -15px;
    }

    .seta-direita9 {
      right: -15px;
    }

    /* Seção: Sobre nós */
    .sobre-nos9 {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      margin-top: 60px;
    }

    .sobre-logo9 {
      flex: 1 1 30px;
      text-align: center;
    }

    .sobre-logo9 img {
      max-width: 100%;
    }

    .sobre-texto9 {
      flex: 2 1 400px;
    }

    .sobre-texto9 h4 {
      font-size: 16px;
      color: #0057d8;
      margin-bottom: 8px;
    }

    .sobre-texto9 h2 {
      font-size: 28px;
      color: #0057d8;
      margin: 0 0 16px;
    }

    .sobre-texto9 p {
      font-size: 15px;
      color: #444;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .indicadores9 {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .indicador9 {
      text-align: left;
    }

    .indicador9 h3 {
      font-size: 24px;
      color: #0057d8;
      margin-bottom: 4px;
    }

    .indicador9 span {
      font-size: 13px;
      color: #0057d8;
      font-weight: bold;
    }

    .botao9 {
      background: #0057d8;
      color: white;
      padding: 10px 24px;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .sobre-nos9 {
        flex-direction: column;
        align-items: flex-start;
      }

      .indicadores9 {
        flex-direction: column;
        gap: 16px;
      }

      .sobre-logo9 {
        text-align: center;
        width: 100%;
      }

      .seta9 {
        display: none;
      }
    }


    body {
      margin: 0;
      font-family: "Segoe UI", sans-serif;
      background-color: #fff;
    }

    footer {
      border-top: 1px solid #ddd;
      padding: 40px 20px 20px;
      background: #fff;
    }

    .footer-container {
      max-width: 1320px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .footer-column {
      flex: 1 1 50px;
      min-width: 200px;
    }

    .footer-column h4 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #333;
    }

    .footer-column p,
    .footer-column a {
      font-size: 14px;
      color: #333;
      text-decoration: none;
      margin-bottom: 8px;
      display: block;
    }

    .footer-column a:hover {
      text-decoration: underline;
    }

    .safe-ticket {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .safe-ticket-logo {
      font-weight: bold;
      color: #6d4aff;
    }

    .safe-ticket-text {
      font-size: 18px;
      color: #222;
      font-weight: 500;
    }

    .safe-item {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      font-size: 14px;
    }

    .safe-icon {
      width: 20px;
      height: 20px;
      background-color: #eee;
      border-radius: 50%;
    }

    .social-icons {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
    }

    .social-icons img {
      width: 20px;
      height: 20px;
    }

    .reclameaqui {
      margin-top: 14px;
    }

    .reclameaqui img {
      width: 100px;
    }

    .footer-bottom {
      border-top: 1px solid #ddd;
      margin-top: 30px;
      padding-top: 16px;
      font-size: 12px;
      color: #555;
      text-align: center;
    }

    .footer-bottom a {
      color:#1c77bd;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        gap: 30px;
      }

      .footer-column {
        min-width: 100%;
      }

      .footer-bottom {
        font-size: 11px;
        text-align: left;
      }
    }