/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1cabc0;
  --secondary: #576a7e;
  --bg: #ffffff;
  --dark: #0a0a0a;
  --text: #333333;
  --text-light: #666666;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(87, 106, 126, 0.1);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--primary);
}

.btn-ingresso {
  background: var(--primary);
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
}

.btn-ingresso:hover {
  background: #17919f;
  transform: translateY(-1px);
}

/* ===== Lang Switcher ===== */
.lang-switcher {
  display: flex;
  gap: 2px;
  margin-left: 1rem;
}

.lang-btn {
  background: none;
  border: 1px solid #dde1e6;
  border-radius: 3px;
  padding: 0.25rem 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--secondary);
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(28, 171, 192, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  letter-spacing: 2px;
}

.hero-title span {
  color: var(--primary);
}

.hero-by {
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--secondary);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.btn-hero {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
}

.btn-hero:hover {
  background: #17919f;
  transform: translateY(-2px);
}

.hero-image {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 45%;
  max-width: 600px;
  max-height: calc(100vh - 80px);
  z-index: 1;
  opacity: 0.9;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  object-position: bottom;
  filter: grayscale(20%) contrast(1.05);
}

/* ===== Banner Destaque ===== */
.banner-destaque {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== Patrocinadores ===== */
.patrocinadores {
  padding: 3rem 2rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.patrocinadores-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.patrocinadores-mantenedor {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.patrocinadores-mantenedor img {
  height: 70px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s, transform 0.3s;
}

.patrocinadores-mantenedor a:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.patrocinadores-divider {
  width: 80px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.15;
  margin: 1.5rem auto;
}

.patrocinadores-apoiadores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.patrocinadores-apoiadores img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.patrocinadores-apoiadores a:hover img {
  opacity: 1;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .patrocinadores-mantenedor img {
    height: 55px;
  }

  .patrocinadores-apoiadores {
    gap: 2rem;
  }

  .patrocinadores-apoiadores img {
    height: 30px;
  }
}

/* ===== Agenda ===== */
.agenda {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--secondary);
  margin-bottom: 3rem;
}

.section-title span {
  font-weight: 700;
  color: var(--primary);
}

/* Carousel (mobile-first, cards horizontais) */
.agenda-carousel {
  display: none;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.agenda-carousel::-webkit-scrollbar {
  height: 4px;
}

.agenda-carousel::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.agenda-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: left;
  border: 1px solid #e9ecef;
  transition: transform 0.3s, box-shadow 0.3s;
}

.agenda-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(28, 171, 192, 0.12);
}

.agenda-data {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.agenda-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.agenda-cidade {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
}

.agenda-local {
  font-size: 0.8rem;
  color: var(--text-light);
}

.btn-comprar {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: background 0.3s;
}

.btn-comprar:hover {
  background: #17919f;
}

/* Lista (desktop) */
.agenda-lista {
  width: 100%;
}

.agenda-lista table {
  width: 100%;
  border-collapse: collapse;
}

.agenda-lista tr {
  border-bottom: 1px solid #e9ecef;
  transition: background 0.2s;
}

.agenda-lista tr:hover {
  background: #f8f9fa;
}

.agenda-lista td {
  padding: 1.5rem 1rem;
  text-align: left;
  vertical-align: middle;
}

.al-data {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  width: 120px;
}

.al-cidade {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  width: 180px;
}

.al-local {
  font-size: 0.9rem;
  color: var(--text-light);
}

.al-acao {
  text-align: right;
  width: 140px;
}

.btn-comprar-sm {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s;
}

.btn-comprar-sm:hover {
  background: #17919f;
  transform: translateY(-1px);
}

.btn-agenda-cta {
  margin-top: 3rem;
}

/* Past events */
.agenda-past {
  opacity: 0.45;
  pointer-events: auto;
}

.agenda-card.agenda-past {
  border-color: #e9ecef;
  background: #f1f3f5;
}

.agenda-badge-past {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.agenda-badge-soon {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

/* ===== Sobre o Evandro ===== */
.evandro {
  padding: 5rem 2rem;
  background: var(--bg);
}

.evandro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.evandro-foto {
  flex: 0 0 300px;
  position: sticky;
  top: 100px;
}

.evandro-foto img {
  width: 100%;
  border-radius: 8px;
  filter: contrast(1.02);
}

.evandro-texto .section-title {
  text-align: left;
}

.evandro-texto p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .evandro-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .evandro-foto {
    flex: none;
    width: 60%;
    max-width: 250px;
    margin: 0 auto;
    position: static;
  }

  .evandro-texto .section-title {
    text-align: center;
  }
}

/* ===== Sobre ===== */
.sobre {
  background: #f8f9fa;
  padding: 5rem 2rem;
}

.sobre-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sobre-texto .section-title {
  text-align: left;
}

.sobre-destaque {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.sobre-texto p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ===== Contato ===== */
.contato {
  padding: 5rem 2rem;
  background: #f8f9fa;
}

.contato-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contato-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.contato-form {
  text-align: left;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #dde1e6;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #adb5bd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28, 171, 192, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.btn-enviar {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--secondary);
  color: #fff;
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer p {
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.2s;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .lang-switcher {
    margin-left: auto;
    margin-right: 1rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 1.5rem 2rem;
    min-height: auto;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 80%;
    max-width: 350px;
    order: 1;
    opacity: 1;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .agenda-carousel {
    display: flex;
  }

  .agenda-lista {
    display: none;
  }

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

@media (min-width: 769px) {
  .agenda-carousel {
    display: none;
  }

  .agenda-lista {
    display: block;
  }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
