* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #a31621;
  --secondary: #ffb703;
  --dark: #1f1f1f;
  --light: #fff8ef;
  --green: #2e7d32;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background: #fff;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.section {
  padding: 90px 0;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary);
  text-align: center;
}
.section-subtitle {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
  color: #555;
  font-size: 1.05rem;
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
}
.menu {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.menu a {
  color: #333;
  font-weight: 600;
  transition: 0.3s;
}
.menu a:hover {
  color: var(--primary);
}

/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce?q=80&w=1600&auto=format&fit=crop")
      center/cover;
  color: #fff;
  padding-top: 120px;
  position: relative;
}
.hero-content {
  max-width: 900px;
  z-index: 9;
  position: relative;
  padding-bottom: 40px;
}
.tag {
  display: inline-block;
  background: var(--secondary);
  color: #000;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 25px;
  font-size: 0.9rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  margin-bottom: 25px;
  font-weight: 800;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.92);
}
.hero-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.info-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 22px;
  border-radius: 18px;
  min-width: 180px;
}
.info-box span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 5px;
}
.info-box strong {
  font-size: 1rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--secondary);
  color: #000;
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
  background: #fff;
  color: #000;
}
.countdown {
  margin-top: 45px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.count-box {
  width: 110px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.count-box strong {
  display: block;
  font-size: 2rem;
}

/* BANNER */

.live-banner {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  font-size: 1rem;
}

/* SOBRE */

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}
.about-card {
  background: var(--light);
  border-radius: 26px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}
.about-card p {
  margin-bottom: 20px;
  color: #444;
}
.impact {
  background: var(--primary);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  font-weight: 600;
  margin-top: 25px;
}

/* PROGRAMAÇÃO */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.schedule-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  border: 1px solid #eee;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.schedule-card:hover {
  transform: translateY(-5px);
}
.schedule-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}
.schedule-card ul {
  padding-left: 18px;
  color: #555;
}
.schedule-card li {
  margin-bottom: 10px;
}
.program-weekend {
  margin-top: 70px;
}
.day-divider {
  background: var(--primary);
  color: #fff;
  padding: 18px 25px;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 35px;
}
.schedule-day {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}
.schedule-day:hover {
  transform: translateY(-4px);
}
.schedule-image {
  width: 320px;
  min-width: 320px;
}
.schedule-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.schedule-content {
  padding: 30px;
  width: 100%;
}
.schedule-date {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 15px;
}
.schedule-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.schedule-meta {
  margin-bottom: 10px;
  font-weight: 600;
  color: #444;
}
.event-badge {
  display: inline-block;
  margin-top: 20px;
  background: var(--secondary);
  color: #000;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.schedule-special {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--light);
  border-radius: 28px;
  padding: 40px;
  margin-bottom: 40px;
  border-left: 8px solid var(--secondary);
  overflow: hidden;
}
.schedule-special-content {
  flex: 1;
}
.schedule-special-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}
.schedule-special-content p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.schedule-special-content .btn {
  margin-top: 20px;
}
.schedule-special-image {
  width: 420px;
  min-width: 420px;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;
}
.schedule-special-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.schedule-special:hover .schedule-special-image img {
  transform: scale(1.05);
}

/* ATRAÇÕES */

.attractions {
  background: var(--light);
}
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.attraction-item {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.attraction-item img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.attraction-content {
  padding: 25px;
}
.attraction-content h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

/* GALERIA */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* MAPA */

.map-wrapper {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}
iframe {
  width: 100%;
  height: 500px;
  border: none;
  margin-bottom: -8px;
}
.location-box {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.location-card {
  flex: 1;
  min-width: 280px;
  background: var(--light);
  border-radius: 20px;
  padding: 28px;
}

/* FAQ */

.faq-list {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 25px;
  background: #fff;
}
.faq-item h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* CTA FINAL */

.final-cta {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("imagens/festa-asilo-rodape.jpg") center/cover;
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.final-cta p {
  max-width: 720px;
  margin: auto auto 35px;
  font-size: 1.1rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer {
  background: #111;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 30px 20px;
}

/* FLOATING */

.floating-whatsapp,
.floating-map {
  position: fixed;
  right: 20px;
  z-index: 999;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.floating-whatsapp {
  bottom: 20px;
  background: #25d366;
}
.floating-map {
  bottom: 100px;
  background: var(--primary);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.65);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 2;
}
.canta-braganca {
  background: linear-gradient(135deg, #fff8ef 0%, #fff 100%);
}
.canta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.canta-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.canta-tag {
  display: inline-block;
  background: var(--secondary);
  color: #000;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 25px;
}
.canta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 800;
}
.canta-date {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #444;
}
.canta-content p {
  margin-bottom: 22px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #444;
}
.canta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 35px;
}
.canta-instagram {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.canta-instagram:hover {
  background: var(--primary);
  color: #fff;
}
a#bwsrusso {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sponsors {
  background: #fffdf8;
}
.sponsor-category {
  margin-top: 70px;
}
.sponsor-category-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--primary);
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}
.sponsor-grid-master {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.sponsor-grid-platinum {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.sponsor-grid-small {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.sponsor-item {
  background: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 140px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.sponsor-item:hover {
  transform: translateY(-5px);
}
.sponsor-item img {
  width: 100%;
  max-width: 220px;
  object-fit: contain;
}
.sponsor-master {
  min-height: 220px;
  border: 3px solid #f4c542;
}
.sponsor-master img {
  max-width: 320px;
}
.sponsor-platinum {
  min-height: 200px;
  border: 2px solid #d9d9d9;
}
.sponsor-diamante {
  min-height: 190px;
  border: 2px solid #8fd3ff;
}
.sponsor-ouro-especial {
  min-height: 180px;
  border: 2px solid #ffcf5c;
}
.sponsor-ouro {
  min-height: 160px;
}
.sponsor-prata {
  min-height: 150px;
  opacity: 0.95;
}
.sponsor-bronze {
  min-height: 120px;
  opacity: 0.9;
  background: repeating-linear-gradient(
    45deg,
    #fafafa,
    #fafafa 10px,
    #f3f3f3 10px,
    #f3f3f3 20px
  );
}
.sponsor-stand {
  min-height: 150px;
  border: 2px dashed #ccc;
}
.kids-media {
  width: 460px;
  min-width: 460px;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kids-main-image {
  width: 100%;
  height: 300px;
  border-radius: 22px;
  overflow: hidden;
}

.kids-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kids-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;

  transition: 0.3s;
}

.kids-gallery img:hover {
  transform: scale(1.03);
}
.festival-alert {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 30px 0;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffe8a3 100%);
  border: 2px solid #ffcc00;
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.18);
}
.festival-alert-icon {
  font-size: 2rem;
  line-height: 1;
}
.festival-alert-content strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #7a4b00;
}
.festival-alert-content p {
  margin: 0;
  line-height: 1.6;
  color: #5a4200;
}

@media (max-width: 900px) {
  .canta-wrapper {
    grid-template-columns: 1fr;
  }
  .canta-content {
    text-align: center;
  }
  .canta-buttons {
    justify-content: center;
  }
  .schedule-special {
    flex-direction: column;
    padding: 25px;
  }
  .schedule-special-image {
    width: 100%;
    min-width: 100%;
    height: auto;
  }
  .kids-media {
    width: 100%;
    min-width: 100%;
  }

  .kids-main-image {
    height: 220px;
  }

  .kids-gallery img {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }
  .hero {
    text-align: center;
  }
  .hero-buttons,
  .countdown,
  .hero-info {
    justify-content: center;
  }
  .count-box {
    width: calc(50% - 10px);
  }
  .section {
    padding: 70px 0;
  }
  .hero-video {
    object-position: center;
  }
  .schedule-day {
    flex-direction: column;
  }
  .schedule-image {
    width: 100%;
    min-width: 100%;
    height: auto;
  }
  .schedule-content {
    padding: 25px;
  }
  .schedule-content h3 {
    font-size: 1.7rem;
  }
  .day-divider {
    font-size: 1.1rem;
  }
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sponsor-grid-master,
  .sponsor-grid-platinum {
    grid-template-columns: 1fr;
  }
}
