<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --blue: #00A8E8;
    --yellow: #FFD700;
    --pink: #FF4081;
    --purple: #4A148C;
    --white: #FFFFFF;
    --dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    box-shadow: none !important; /* Remove todas as sombras */
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background: var(--blue);
    color: var(--dark);
}

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

/* Navigation */
.main-nav {
    position: fixed;
    width: 100%;
    background: var(--purple);
    padding: 1rem 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yellow);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    flex-wrap: wrap; /* Permitir quebra de linha */
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-cta {
    background: var(--yellow);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: var(--dark) !important;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--blue) 0%, rgba(0, 168, 232, 0.8) 100%);
    padding: 120px 0 60px;
}

.hero-content h1 {
    font-size: 3rem; /* Ajuste no tamanho da fonte */
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--yellow);
    color: var(--dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.event-logo {
    max-width: 400px;
    width: 90%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

/* Lineup Section */
.section {
    padding: 5rem 2rem; /* Ajuste no padding */
    background: var(--white);
}

#lineup {
  background-color: #FFE15D; /* Tom de amarelo suave */
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--pink);
    font-size: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.lineup-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.3rem;
    color: var(--purple);
}

.lineup-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.lineup-image-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.lineup-image {
    max-width: 100%; /* Responsivo */
    height: auto; /* Manter proporÃ§Ã£o */
    border-radius: 15px;
}
  .lineup-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
  }

  .lineup-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0 15px;
  }

  .lineup-row {
      background: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border-radius: 12px;
      transition: transform 0.2s ease;
  }

  .lineup-row:hover {
      transform: translateY(-2px);
  }

  .date-column {
      padding: 20px;
      width: 180px;
      vertical-align: middle;
  }

  .date-column i {
      color: #ff4d4d;
      margin-right: 15px;
  }

  .date-block {
      display: inline-block;
      vertical-align: middle;
  }

  .date {
      display: block;
      font-weight: 700;
      font-size: 1.1rem;
      color: #333;
  }

  .weekday {
      display: block;
      font-size: 0.9rem;
      color: #666;
  }

  .artist-column {
      padding: 20px;
      font-size: 1.2rem;
      font-weight: 600;
      color: #222;
  }

  .button-column {
      padding: 20px;
      text-align: right;
      width: 180px;
  }

  .ticket-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ff4d4d;
      color: white;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease;
  }

  .ticket-button:hover {
      background: #ff3333;
  }

  @media (max-width: 768px) {
      .lineup-table, 
      .lineup-row, 
      .date-column, 
      .artist-column, 
      .button-column {
          display: block;
          width: 100%;
          text-align: center;
      }

      .date-column {
          padding-bottom: 10px;
      }

      .artist-column {
          padding: 10px;
      }

      .button-column {
          padding-top: 10px;
      }

      .ticket-button {
          width: 90%;
          justify-content: center;
      }
  }
/* Map Section */
.map-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
}

.map-image {
    width: 100%; /* Responsivo */
    border-radius: 10px;
}

/* Footer */
.modern-footer {
    background: var(--purple);
    color: var(--white);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-info h3,
.footer-social h3 {
    color: var(--yellow);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.footer-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 40vh;
        padding: 100px 0 40px;
    }

    .lineup-content {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Ajuste no tamanho da fonte */
    }

    .section-title {
        font-size: 2rem; /* Tamanhos de fonte menores */
    }

    .cta-button {
        font-size: 1rem; /* Ajustar o tamanho do botÃ£o */
        padding: 1rem 2rem; /* Ajustar o padding do botÃ£o */
    }

    .footer-content {
        grid-template-columns: 1fr; /* Um Ãºnico bloco em telas menores */
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .schedule-card {
        padding: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .nav-container {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        margin: 0.5rem 0;
    }

    .lineup-content {
        flex-direction: column;
    }

    .lineup-schedule {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        margin: 0.5rem 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info, .footer-social {
        margin: 1rem 0;
    }
}

/* Media queries para iPhones e dispositivos mÃ³veis */
@media screen and (max-width: 428px) { /* iPhone 13 Pro Max width */
    .main-nav {
        position: relative;
        background-color: transparent;
    }

    .nav-container {
        flex-direction: column;
        padding-bottom: 20px;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav-links {
        background-color: rgba(0, 0, 0, 0.8);
        padding: 15px;
        border-radius: 8px;
        width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content {
        padding: 20px;
        width: 100%;
    }
    
    .event-logo {
        width: 90%;
        max-width: 300px;
    }
    
    .lineup-content {
        padding: 10px;
    }
    
    .lineup-image {
        width: 100%;
        height: auto;
    }
    
    .lineup-schedule {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }
    
    .schedule-card {
        width: 100%;
    }
    
    .map-container {
        padding: 10px;
    }
    
    .map-image {
        width: 100%;
        height: auto;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Ajuste especÃ­fico para iPhones menores */
@media screen and (max-width: 375px) { /* iPhone SE/mini width */
    .nav-container {
        padding: 8px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
}

/* Background Elements Animation */
.background-elements img {
    opacity: 0.6;
    filter: brightness(1.2);
}

.bg-balloon {
    animation: float 8s ease-in-out infinite;
}

.bg-boat {
    animation: sway 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-30px) rotate(-2deg); }
}

@keyframes sway {
    0%, 100% { transform: translateX(0) rotate(-2deg); }
    50% { transform: translateX(20px) rotate(2deg); }
}
</pre></body></html>