/* style.css - Estilos específicos para a página principal - RESPONSIVO */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f8f6fc; /* Fundo suave com tom roxo muito claro */
  color: #444;
  overflow-x: hidden;
  position: relative;
}

/* Efeito de partículas no fundo */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(110, 57, 196, 0.08); /* Baseado no #6e39c4 com baixa opacidade */
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* ==================== NAVBAR RESPONSIVA ==================== */
header {
  background: #6e39c4;
  color: #fff;
  height: 70px;
  padding: 0 clamp(15px, 3vw, 40px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.8s ease, opacity 0.8s ease, height 0.3s ease;
  transform: translateY(-100px);
  opacity: 0;
  box-shadow: 0 2px 10px rgba(110, 57, 196, 0.15);
}

header.show {
  transform: translateY(0);
  opacity: 1;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 15px;
}

/* Logos responsivas */
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo-left {
  justify-content: flex-start;
  flex: 1;
}

.logo-right {
  justify-content: flex-end;
  flex: 1;
}

.logo img {
  height: clamp(50px, 8vw, 70px);
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.8s ease;
  opacity: 0;
  transform: translateY(-20px);
  max-width: 100%;
}

.logo.show img {
  opacity: 1;
  transform: translateY(0);
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(10px, 1.5vw, 25px);
  align-items: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: transform 0.8s ease, opacity 0.8s ease;
  margin: 0 auto;
}

.nav-links.show {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  padding: 6px clamp(4px, 1vw, 10px);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a::before,
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-links a::before { top: 0; }
.nav-links a::after { bottom: 0; }

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::before,
.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.ativo {
  color: #fff;
}

.nav-links a.ativo::before,
.nav-links a.ativo::after {
  width: 100%;
}

/* Dropdown Menu responsivo */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.dropdown-toggle .fa-chevron-down {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: #7a4dcf;
  min-width: 200px;
  max-width: 90vw;
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(110, 57, 196, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.5s ease;
}

.dropdown-item:hover::before {
  left: 100%;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding-left: 20px;
}

.dropdown-item i {
  width: 18px;
  text-align: center;
  transition: transform 0.3s ease;
  font-size: 0.9em;
}

.dropdown-item:hover i {
  transform: scale(1.2);
}

.dropdown-toggle.active {
  color: #fff !important;
}

.dropdown-toggle.active::before,
.dropdown-toggle.active::after {
  width: 100% !important;
}

.hamburger {
  display: none;
  font-size: clamp(1.5rem, 4vw, 2rem);
  cursor: pointer;
  color: #fff;
  z-index: 1001;
  padding: 5px;
  flex-shrink: 0;
}

/* ==================== CARROSSEL FULLSCREEN RESPONSIVO ==================== */
.hero-carousel {
  height: clamp(500px, 100vh, 800px);
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

/* Overlay escuro para melhor contraste do texto */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.carousel-content {
  text-align: center;
  color: white;
  max-width: 90%;
  padding: 0 20px;
  z-index: 2;
  position: relative;
}

.carousel-content h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  animation: fadeInUp 1s ease;
  line-height: 1.2;
}

.carousel-content p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 25px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  animation: fadeInUp 1s ease 0.3s both;
  line-height: 1.4;
}

.carousel-btn {
  display: inline-block;
  padding: clamp(12px, 2vw, 15px) clamp(25px, 4vw, 40px);
  background: linear-gradient(45deg, #6e39c4, #8f4b4b);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.6s both;
  box-shadow: 0 4px 15px rgba(110, 57, 196, 0.25);
  border: 2px solid transparent;
}

.carousel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(110, 57, 196, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
}

/* INDICADORES CENTRALIZADOS */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
  margin: 0 auto;
  width: fit-content;
  padding: 10px;
}

.indicator {
  width: clamp(10px, 2vw, 12px);
  height: clamp(10px, 2vw, 12px);
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator.active {
  background: white;
  transform: scale(1.2);
  border-color: rgba(255,255,255,0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== SEÇÃO AGENDA RESPONSIVA ====== */
.agenda-section {
  padding: clamp(40px, 5vw, 80px) clamp(15px, 5vw, 5%);
  background: linear-gradient(135deg, #f8f6fc 0%, #f0edf9 100%);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 15px;
  font-weight: 700;
  color: #6e39c4;
  position: relative;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #6e39c4, #8f4b4b);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: #777;
  margin-bottom: clamp(30px, 4vw, 50px);
  line-height: 1.5;
  padding: 0 10px;
}

/* Layout da Agenda */
.agenda-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
  align-items: start;
}

/* Calendário responsivo */
.calendar-container {
  background: #fff;
  border-radius: 15px;
  padding: clamp(15px, 3vw, 25px);
  box-shadow: 0 8px 25px rgba(110, 57, 196, 0.08);
  border: 1px solid rgba(110, 57, 196, 0.1);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(110, 57, 196, 0.1);
}

.calendar-header h3 {
  color: #6e39c4;
  font-weight: 600;
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  padding: 0 10px;
  text-align: center;
  flex: 1;
}

.calendar-nav {
  background: #6e39c4;
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calendar-nav:hover {
  background: #8f4b4b;
  transform: scale(1.1);
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-weekday {
  text-align: center;
  font-weight: 600;
  color: #6e39c4;
  padding: 10px 5px;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  border-bottom: 2px solid rgba(110, 57, 196, 0.1);
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  padding: 2px;
  border: 2px solid transparent;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.calendar-day:hover {
  background: rgba(110, 57, 196, 0.04);
  border-color: rgba(110, 57, 196, 0.15);
}

.calendar-day.other-month {
  color: #d0c4e9;
  background: #f8f6fc;
  cursor: default;
}

.calendar-day.today {
  background: #6e39c4;
  color: white;
  border-color: #6e39c4;
}

.calendar-day.has-event {
  background: linear-gradient(135deg, #fff, #f8f6fc);
  border-color: rgba(143, 75, 75, 0.2);
  position: relative;
}

.calendar-day.has-event::before {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 6px;
  height: 6px;
  background: #8f4b4b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.calendar-day.selected {
  background: #8f4b4b;
  color: white;
  border-color: #8f4b4b;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(143, 75, 75, 0.25);
}

.calendar-day-number {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
}

/* Lista de Eventos responsiva */
.events-list {
  background: #fff;
  border-radius: 15px;
  padding: clamp(15px, 3vw, 25px);
  box-shadow: 0 8px 25px rgba(110, 57, 196, 0.08);
  border: 1px solid rgba(110, 57, 196, 0.1);
}

.events-list h3 {
  color: #6e39c4;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(110, 57, 196, 0.1);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.events-container {
  max-height: 500px;
  overflow-y: auto;
  padding: 5px;
  scrollbar-width: thin;
}

.events-container::-webkit-scrollbar {
  width: 6px;
}

.events-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.events-container::-webkit-scrollbar-thumb {
  background: #6e39c4;
  border-radius: 10px;
}

.event-card {
  background: linear-gradient(135deg, #f8f6fc, #f0edf9);
  border-radius: 12px;
  padding: clamp(15px, 2vw, 20px);
  margin-bottom: 15px;
  border-left: 4px solid #6e39c4;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(110, 57, 196, 0.08), transparent);
  transition: left 0.5s ease;
}

.event-card:hover::before {
  left: 100%;
}

.event-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(110, 57, 196, 0.1);
}

.event-card.featured {
  border-left-color: #8f4b4b;
  background: linear-gradient(135deg, #fff, #f8f6fc);
  border: 2px solid rgba(143, 75, 75, 0.15);
}

.event-date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #6e39c4;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  flex-wrap: wrap;
}

.event-date i {
  color: #8f4b4b;
}

.event-title {
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.3;
}

.event-description {
  color: #777;
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  line-height: 1.4;
  margin-bottom: 10px;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(110, 57, 196, 0.1);
}

.event-category {
  padding: 4px 12px;
  background: #6e39c4;
  color: white;
  border-radius: 15px;
  font-size: 0.75em;
  font-weight: 500;
  text-transform: uppercase;
  width: fit-content;
}

.event-time {
  color: #8f4b4b;
  font-size: clamp(0.8rem, 1.5vw, 0.85rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.no-events {
  text-align: center;
  padding: 40px 20px;
  color: #777;
}

.no-events i {
  font-size: clamp(2.5rem, 5vw, 3rem);
  margin-bottom: 15px;
  color: #6e39c4;
}

.no-events h4 {
  margin-bottom: 10px;
  color: #444;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.no-events p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ====== SEÇÃO O QUE OFERECEMOS RESPONSIVA ====== */
#o-que-oferecemos {
  flex: 1;
  padding: clamp(40px, 5vw, 80px) clamp(15px, 5vw, 5%) 40px;
  color: #444;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #f8f6fc 0%, #ffffff 100%);
}

#Titulo {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  color: #6e39c4;
  line-height: 1.2;
}

#Titulo.show {
  opacity: 1;
  transform: translateY(0);
}

#Titulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6e39c4, #8f4b4b);
  border-radius: 2px;
}

.offerings-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #666;
  line-height: 1.6;
  padding: 0 15px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.offering-card {
  background: #fff;
  border-radius: 15px;
  padding: clamp(25px, 4vw, 40px);
  box-shadow: 0 8px 25px rgba(110, 57, 196, 0.08);
  border: 1px solid rgba(110, 57, 196, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.offering-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(110, 57, 196, 0.15);
  border-color: rgba(110, 57, 196, 0.2);
}

.offering-icon {
  width: clamp(70px, 12vw, 80px);
  height: clamp(70px, 12vw, 80px);
  background: linear-gradient(135deg, #6e39c4, #8f4b4b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: clamp(1.8rem, 3vw, 2em);
  transition: transform 0.3s ease;
}

.offering-card:hover .offering-icon {
  transform: scale(1.1) rotate(5deg);
}

.offering-content {
  flex: 1;
  width: 100%;
}

.offering-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 15px;
  color: #6e39c4;
  font-weight: 600;
  line-height: 1.2;
}

.offering-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  padding: 0 10px;
}

.offering-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
  text-align: left;
}

.offering-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.offering-features i {
  color: #6e39c4;
  font-size: 0.9em;
}

.offering-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(12px, 2vw, 14px) clamp(20px, 3vw, 30px);
  background: linear-gradient(90deg, #6e39c4, #8f4b4b);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1em);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto;
  min-width: 200px;
  max-width: 100%;
}

.offering-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(110, 57, 196, 0.3);
  gap: 15px;
}

.offerings-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.info-card {
  background: #fff;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(110, 57, 196, 0.05);
  border: 1px solid rgba(110, 57, 196, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(110, 57, 196, 0.1);
}

.info-icon {
  width: clamp(50px, 8vw, 60px);
  height: clamp(50px, 8vw, 60px);
  background: linear-gradient(135deg, #f0edf9, #e6e1f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #6e39c4;
  font-size: clamp(1.3rem, 2vw, 1.5em);
}

.info-card h4 {
  color: #6e39c4;
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 2vw, 1.2em);
  line-height: 1.2;
}

.info-card p {
  color: #666;
  font-size: clamp(0.85rem, 1.5vw, 0.95em);
  line-height: 1.5;
}

/* Footer responsivo */
footer {
  background: linear-gradient(135deg, #6e39c4, #5d2da9);
  color: #fff;
  padding: clamp(40px, 5vw, 60px) clamp(15px, 5vw, 5%) 30px;
  margin-top: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

footer.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(1.1rem, 2vw, 1.3em);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer-section i {
  margin-right: 10px;
  color: #ffd700;
  width: 18px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #8f4b4b;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom p {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  margin-bottom: 10px;
}

.footer-legal {
  font-size: clamp(0.8rem, 1.5vw, 0.9em);
  opacity: 0.8;
  margin-top: 10px;
}

/* ==================== RESPONSIVIDADE ESPECÍFICA ==================== */

/* Desktop grande (acima de 1200px) */
@media (min-width: 1200px) {
  .agenda-content {
    grid-template-columns: 1.2fr 0.8fr;
  }
  
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .agenda-content {
    grid-template-columns: 1fr;
  }
  
  .events-list {
    margin-top: 30px;
  }
  
  .event-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .offerings-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Celulares grandes (576px - 767px) */
@media (max-width: 767px) {
  .hamburger {
    display: block;
    z-index: 1003;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #6e39c4;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    transition: right 0.4s ease;
    z-index: 999;
    padding: 80px 30px 30px;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 5px;
  }

  .nav-links a {
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
    font-size: 1.1rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.1);
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
    width: 100%;
    margin-top: 5px;
    border-radius: 8px;
    overflow: hidden;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-item {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .carousel-content h1 {
    font-size: 2.2rem;
  }
  
  .carousel-content p {
    font-size: 1.1rem;
  }
  
  .carousel-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .calendar {
    gap: 3px;
  }
  
  .calendar-day {
    font-size: 0.85rem;
    padding: 1px;
  }

  .calendar-day-number {
    font-size: 0.9rem;
  }
  
  .event-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .offerings-description {
    padding: 0 10px;
    margin-bottom: 30px;
  }
  
  .offering-features {
    grid-template-columns: 1fr;
  }
  
  .offerings-info {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Celulares pequenos (até 575px) */
@media (max-width: 575px) {
  header {
    height: 60px;
    padding: 0 15px;
  }
  
  .hero-carousel {
    height: 450px;
    margin-top: 60px;
  }
  
  .carousel-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .carousel-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .carousel-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  .carousel-indicators {
    bottom: 20px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .calendar-header h3 {
    font-size: 1rem;
    padding: 0 5px;
  }
  
  .calendar-nav {
    width: 30px;
    height: 30px;
  }
  
  .calendar-weekday {
    font-size: 0.75rem;
    padding: 8px 2px;
  }
  
  .calendar-day {
    font-size: 0.75rem;
  }
  
  .calendar-day-number {
    font-size: 0.8rem;
  }
  
  .event-card {
    padding: 12px;
  }
  
  .event-title {
    font-size: 1rem;
  }
  
  .event-description {
    font-size: 0.85rem;
  }
  
  #Titulo {
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  
  .offering-card {
    padding: 20px 15px;
  }
  
  .offering-title {
    font-size: 1.3rem;
  }
  
  .offering-description {
    font-size: 0.95rem;
  }
  
  .offering-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 180px;
  }
  
  .info-card {
    padding: 20px 15px;
  }
  
  .info-card h4 {
    font-size: 1.1rem;
  }
  
  .info-card p {
    font-size: 0.85rem;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
  }
  
  .footer-section p {
    font-size: 0.9rem;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
  }
}

/* Telas muito pequenas (até 320px) */
@media (max-width: 320px) {
  .carousel-content h1 {
    font-size: 1.5rem;
  }
  
  .carousel-content p {
    font-size: 0.9rem;
  }
  
  .nav-links {
    width: 250px;
    padding: 70px 20px 20px;
  }
  
  .calendar-day {
    font-size: 0.7rem;
  }
  
  .event-date {
    font-size: 0.75rem;
  }
  
  .offering-btn {
    min-width: 160px;
    font-size: 0.85rem;
  }
}