:root {
  --primary: #0b2584;
  --secondary: #95989a;
  --text-color: #fff;
  --text-secondary: #121111;
  --text-tertiary: #5d5d5d;
}

/* Reset */
* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 90px;
}

/* HEADER FIXO/STICKY */
#sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #0b2584 0%, #1a3ba8 100%);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

#sticky-header.scrolled {
  padding: 10px 30px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-container img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.logo-container img:hover {
  transform: scale(1.1);
}

.logo-text {
  color: white;
  font-size: 1.8em;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-nav {
  display: flex;
  gap: 20px;
}

.header-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.header-nav a:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Hero Section */
#event-subscription {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("img/hrz-5.jpg");
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: var(--text-color);
  padding: 2em;
  position: relative;
  overflow: hidden;
}

#event-subscription::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: moveGradient 15s ease infinite;
}

@keyframes moveGradient {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(50px) translateY(50px); }
}

/* Disclaimer */
#disclaimer {
  position: relative;
  z-index: 1;
}

#disclaimer h2 {
  font-size: 2.5em;
  margin-bottom: 1em;
  text-align: center;
  color: var(--text-color);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#disclaimer .about-event {
  font-size: 1.2em;
  text-transform: uppercase;
  max-width: 350px;
  font-weight: bold;
  text-align: center;
}

/* Form */
#subscription-form {
  background-color: rgba(221, 13, 13, 0.01);
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

#subscription-form > p {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 1em;
  font-weight: bold;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8em;
}

.form-group label {
  color: #fff;
  margin-bottom: 0.3em;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  outline: none;
  background-color: rgba(234, 159, 9, 0.2);
  color: #fff;
  font-weight: bold;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Buttons */
.btn {
  background-color: var(--primary);
  color: var(--text-color);
  margin-top: 0.8em;
  text-transform: uppercase;
  width: 100%;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  border-radius: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(240, 113, 138, 0.4);
}

.btn:hover {
  background-color: #4CAF50;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Success Message */
#successMessage {
  display: none;
  background-color: #4caf50;
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Benefits Sections */
#benefits-section-1 h2,
#benefits-section-2 h2,
#benefits-section-3 h2 {
  background: linear-gradient(90deg, #2b053d 0%, #035292 100%);
  text-align: center;
  padding: 0.8em;
  font-weight: 500;
  margin: 0;
  color: white;
}

.benefits {
  display: flex;
  justify-content: space-around;
  padding: 2em 1em;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2em;
}

.benefit {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 300px;
  color: var(--text-tertiary);
}

.benefit-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 1em;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-img:hover {
  transform: scale(1.05) rotate(5deg);
}

.benefit p {
  color: #333;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.5em;
}

/* Benefit Images */
#benefit-1 { background-image: url("img/sqr-1.jpg"); }
#benefit-2 { background-image: url("img/sqr-2.jpg"); }
#benefit-3 { background-image: url("img/sqr-3.jpg"); }
#benefit-4 { background-image: url("img/sqr-4.jpg"); }
#benefit-5 { background-image: url("img/sqr-5.jpg"); }
#benefit-6 { background-image: url("img/sqr-6.jpg"); }
#benefit-7 { background-image: url("img/sqr-7.jpg"); }
#benefit-8 { background-image: url("img/sqr-8.jpg"); }
#benefit-9 { background-image: url("img/sqr-9.jpg"); }
#benefit-10 { background-image: url("img/sqr-10.jpg"); }
#benefit-11 { background-image: url("img/sqr-11.jpg"); }
#benefit-12 { background-image: url("img/sqr-12.jpg"); }
#benefit-13 { background-image: url("img/sqr-13.jpg"); }
#benefit-14 { background-image: url("img/sqr-14.jpg"); }
#benefit-15 { background-image: url("img/sqr-15.jpg"); }
#benefit-16 { background-image: url("img/sqr-16.jpg"); }
#benefit-17 { background-image: url("img/sqr-17.jpg"); }
#benefit-18 { background-image: url("img/sqr-18.jpg"); }
#benefit-19 { background-image: url("img/sqr-19.jpg"); }
#benefit-20 { background-image: url("img/sqr-20.jpg"); }
#benefit-21 { background-image: url("img/sqr-21.jpg"); }

/* Location */
#location {
  min-height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("img/hrz-1.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  margin: 3em 0;
  padding: 2em;
}

#location h2 {
  font-size: 2em;
  margin-bottom: 1em;
  text-align: center;
}

#address {
  display: flex;
  align-items: center;
  gap: 1em;
}

#address i {
  color: #ffd700;
  font-size: 4em;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

#address-details {
  font-size: 1.3em;
}

#address-details p {
  margin-bottom: 0.5em;
}

/* Details Section */
#details {
  max-width: 1200px;
  margin: 3em auto;
  padding: 0 2em;
}

.detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3em;
  margin-bottom: 4em;
}

.detail-description {
  flex: 1;
}

.detail-description h3 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 1em;
}

.detail-description ul {
  list-style-position: inside;
}

.detail-description ul li {
  margin-bottom: 0.8em;
  font-size: 1.1em;
  font-weight: bold;
  color: #555;
  padding-left: 0.5em;
}

.detail-description ul li::marker {
  color: #f0718a;
}

/* Detail Image */
.detail-image {
  flex: 1;
  min-height: 400px;
  width: 100%;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.detail-image:hover {
  transform: scale(1.02);
}

/* Imagem hrz-4 na seção de detalhes */
#detail-img-2 {
  background-image: url("img/hrz-4.jpg");
  background-color: #f0f0f0;
}

/* CTA */
#cta {
  min-height: 300px;
  background: linear-gradient(135deg, #262726 0%, #262726 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-color);
  padding: 2em;
}

#cta h3 {
  margin-bottom: 1.2em;
  font-size: 2em;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#cta .btn {
  width: min(400px, 80%);
  font-weight: 600;
  font-size: 1.2em;
}

/* Footer */
#footer {
  text-align: center;
  color: white;
  padding: 3em 2em;
  background: #000000;
}

#footer h3 {
  font-size: 1.8em;
  margin-bottom: 0.5em;
  color: #ffffff;
}

#footer p {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

#footer span {
  font-weight: bold;
  color: #ffffff;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  #sticky-header {
    padding: 10px 15px;
  }

  .logo-container img {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 1.3em;
  }

  .header-nav {
    display: none;
  }

  #event-subscription {
    flex-direction: column;
    gap: 2em;
  }

  #disclaimer h2 {
    font-size: 2em;
  }

  #subscription-form {
    max-width: 90%;
  }

  .benefits {
    flex-direction: column;
    align-items: center;
  }

  .benefit {
    max-width: 100%;
  }

  #location {
    flex-direction: column;
    text-align: center;
    gap: 2em;
  }

  #address {
    flex-direction: column;
  }

  .detail {
    flex-direction: column;
  }

  .detail-description,
  .detail-image {
    width: 100%;
    flex: none;
  }

  .detail-image {
    min-height: 350px;
    height: 350px;
  }
  
  #detail-img-2 {
    background-size: cover;
    background-position: center center;
  }
}


/* Link do WhatsApp no Footer */
.whatsapp-link {
  color: #25D366;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.whatsapp-link:hover {
  color: #128C7E;
  text-decoration: underline;
  transform: scale(1.05);
}

/* Ícone do WhatsApp (opcional) */
.whatsapp-link::before {
  content: "📱";
  font-size: 1.2em;
}