/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  /* Prevent horizontal scroll cleanly */
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}



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

/* Colors */
:root {
  --orange: #f97316;
  --blue: #2563eb;
  --dark-blue: #1e3a8a;
  --light-gray: #f8fafc;
  --gray: #64748b;
  --dark-gray: #334155;
  --primary-blue: #2563eb;
  /* Added for clarity */
}

.text-white {
  color: white !important;
}

.text-orange {
  color: var(--orange);
}

.text-blue {
  color: var(--blue);
}

/* Navigation */

/* Responsive adjustment: smaller hero buttons on small screens */
@media (max-width: 480px) {
  .hero-buttons .btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  /* Slightly smaller primary button for very small viewports */
  .hero-buttons .btn.btn-primary {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
}

.navbar {
  position: fixed;
  top: 20px;
  /* Distância do topo */
  left: 50%;
  transform: translateX(-50%);
  /* Centraliza a barra na tela */
  width: 90%;
  /* Largura da barra */
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-radius: 50px;
  /* Formato de pílula */
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  /* Centraliza o bloco todo no meio */
  align-items: center;
  height: 60px;
  gap: 60px;
  /* <--- AJUSTE AQUI: Controla a distância entre a logo e o menu */
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  /* Reduced gap between logo and text */
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.8;
}

/* Updated logo styles to use image instead of icon box */
.logo-image {
  height: 50px;
  width: auto;
  margin-left: 0;
  /* Removido o 120px */
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.logo-text {
  /* Reduced font size and weight for cleaner look */
  font-weight: 600;
  font-size: 16px;
  color: #1a365d;
  letter-spacing: -0.3px;
}

.nav-menu {
  display: flex;
  list-style: none;
  /* Reduced gap between menu items for compact design */
  gap: 25px;

  margin-right: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 600;
  /* Adjusted font size for clearer readability */
  font-size: 14.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 4px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--orange);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-gray);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Added carousel styles for hero background */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.75), rgba(147, 51, 234, 0.7), rgba(249, 115, 22, 0.75));
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(249, 115, 22, 0.8)),
    url("/placeholder.svg?height=1080&width=1920") center / cover;
  z-index: -1;
}

.hero-content {
  color: white;
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive: smaller buttons on tablets and phones */
@media (max-width: 768px) {

  .hero-buttons,
  .about-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn,
  .about-buttons .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
    border-radius: 14px;
    width: 85%;
    max-width: 340px;
    box-sizing: border-box;
  }
}

@media (max-width: 420px) {

  .hero-buttons .btn,
  .about-buttons .btn {
    padding: 8px 14px;
    font-size: 0.9rem;
    max-width: 300px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--dark-gray);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: white;
}

.btn-orange {
  background: var(--orange);
  color: white;
}

.btn-orange:hover {
  background: #ea580c;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: #fef3c7;
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-tag.blue {
  background: #dbeafe;
  color: var(--blue);
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  text-align: justify;
}

/* About Section */
.about {
  background: var(--light-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Categorias e Ofertas - Cards */
.categorias-ofertas {
  background: white;
}

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.categoria-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.categoria-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
}

.categoria-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.categoria-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.categoria-card h3 {
  font-size: 1.2rem;
  margin: 18px 20px 6px 20px;
  color: var(--dark-gray);
}

.categoria-card p {
  color: var(--gray);
  font-size: 0.98rem;
  margin: 0 20px 18px 20px;
  flex: 1 0 auto;
  line-height: 1.5;
}

.categoria-card .btn {
  margin: 18px 20px 24px 20px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 1rem;
  width: calc(100% - 40px);
  display: block;
}

/* Modal para 'Saiba mais' */
.oferta-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.5);
  z-index: 2000;
  padding: 20px;
}

.oferta-modal.open {
  display: flex;
}

.oferta-modal .modal-card {
  background: white;
  border-radius: 12px;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.15);
  padding: 24px;
}

.oferta-modal .modal-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.oferta-modal .modal-body {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 18px;
}

.oferta-modal .modal-close {
  display: inline-block;
  background: transparent;
  border: none;
  color: var(--gray);
  font-weight: 700;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .categorias-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .categoria-image {
    height: 180px;
  }

  .categoria-card h3 {
    font-size: 1.1rem;
  }

  .categoria-card .btn {
    margin: 12px 15px 15px 15px;
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .categorias-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .categoria-image {
    height: 200px;
  }

  .categoria-card {
    border-radius: 12px;
  }

  .categoria-card h3 {
    font-size: 1rem;
    margin: 14px 15px 4px 15px;
  }

  .categoria-card p {
    font-size: 0.9rem;
    margin: 0 15px 12px 15px;
  }

  .categoria-card .btn {
    margin: 0 12px 16px 12px;
    padding: 12px 20px;
    font-size: 0.9rem;
    width: calc(100% - 24px);
  }
}


.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 20px;
  text-align: justify;
}

.about-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-stats {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--orange);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Areas Section */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.area-card-clickable {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.area-card-clickable::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  opacity: 0;
  transition: opacity 0.3s;
}

.area-card-clickable:hover::before {
  opacity: 0.05;
}

.area-card-clickable:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.area-card-clickable .learn-more {
  margin-top: 15px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.area-card-clickable:hover .learn-more,
.area-card-clickable:focus-within .learn-more {
  opacity: 1;
  transform: translateY(0);
}

.area-card-clickable:hover h3 {
  color: var(--orange);
}

.area-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.area-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.area-icon.orange {
  background: linear-gradient(135deg, var(--orange), #ea580c);
}

.area-icon.blue {
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
}

.area-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.area-card p {
  color: var(--gray);
  line-height: 1.6;
  text-align: justify;
}

.logo-areas img {
  max-height: 100px;
}

.logo-areas-teatro img {
  height: 60px;
}

/* Responsive logo sizes */
@media (max-width: 768px) {
  .logo-areas img {
    max-height: 70px;
  }

  .logo-areas-teatro img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .logo-areas img {
    max-height: 50px;
  }

  .logo-areas-teatro img {
    height: 30px;
  }
}

/* History Section */
.history {
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
}

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

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  align-items: flex-start;
  gap: 30px;
}

.timeline-year {
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  min-width: 80px;
  text-align: center;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.timeline-content p {
  color: var(--gray);
  line-height: 1.6;
  text-align: justify;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--dark-gray), var(--dark-blue));
  color: white;
  padding: 80px 0;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-card p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  text-align: justify;
}

.contact-hours {
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: bold;
}

/* Secretary Page Styles */
.secretary-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
}

.page-title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.secretary-info {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.secretary-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 30px;
}

.location-btn {
  background: var(--blue);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.location-btn a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-btn a:hover {
  text-decoration: none;
}

/* Documents Section */
.documents {
  padding: 80px 0;
}

.document-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid;
}

.document-card.blue-border {
  border-left-color: var(--blue);
}

.document-card.orange-border {
  border-left-color: var(--orange);
}

.document-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.document-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 25px;
}

.other-documents {
  margin-top: 50px;
}

.other-documents h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.document-list {
  border-left: 4px solid #e2e8f0;
  padding-left: 30px;
  list-style: none;
}

.document-list li {
  margin-bottom: 15px;
}

.document-list a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.document-list a:hover {
  text-decoration: underline;
}

/* Notices Section */
.notices {
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  padding: 80px 0;
}

.warning-icon {
  font-size: 2rem;
  margin-right: 10px;
}

.notices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.notice-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.notice-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.notice-dot.orange {
  background: var(--orange);
}

.notice-dot.blue {
  background: var(--blue);
}

.notice-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}

.help-icon {
  font-size: 2rem;
  margin-right: 10px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--orange);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  /* Espaço entre os itens */
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  padding: 20px;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  /* Mudado para center para alinhar numero e texto */
  gap: 12px;
  position: relative;
  user-select: none;
  /* Evita selecionar o texto ao clicar rápido */
}

.faq-item h3::after {
  content: "▼";
  position: absolute;
  right: 20px;
  font-size: 0.8rem;
  color: var(--orange);
  transition: transform 0.4s ease;
  /* Animação da seta */
}

.faq-item.active h3::after {
  transform: rotate(180deg);
}

.faq-item:hover h3 {
  color: var(--orange);
}

.faq-number {
  width: 28px;
  height: 28px;
  background: #fed7aa;
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  /* Começa fechado */
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease, padding 0.4s ease;
  background: linear-gradient(135deg, #fafafa, #f3f4f6);
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0;
  /* Começa invisível */
  padding: 0 20px;
  /* Padding lateral fixo, vertical animado */
}

.faq-answer.open {
  max-height: 400px;
  padding: 20px;
}

.faq-item.active {
  border-left-color: var(--orange);
}

/* Classe controlada via JS */
.faq-item.active .faq-answer {
  opacity: 1;
  padding: 20px;
  /* Adiciona padding quando abre */
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-blue), #1e40af);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-subtitle {
  font-style: italic;
  color: #94a3b8;
  margin-top: 20px;
  font-size: 0.9rem;
}

.contact-info {
  space-y: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--orange);
}

.contact-item p {
  color: #cbd5e1;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Art Education Page Styles */
.art-education-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  position: relative;
  overflow: hidden;
}

.art-education-hero::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  background: var(--orange);
  opacity: 0.1;
  border-radius: 50%;
  blur: 20px;
}

.art-education-hero .page-title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.art-education-hero .hero-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 50px;
}

.video-section {
  max-width: 600px;
  margin: 0 auto;
}

.video-placeholder {
  background: var(--dark-blue);
  border-radius: 15px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.video-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.play-button {
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

/* What is Section */
.what-is-section {
  padding: 80px 0;
  background: white;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

/* Ensure text within the "what is" section is justified */
.what-is-section .content-text p {
  text-align: justify;
}

.content-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
}

.content-text p {
  margin-bottom: 25px;
}

.content-text strong {
  color: var(--dark-gray);
  font-weight: 600;
}

.content-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}

/* Artes Visuais — Benefícios em tonalidades de laranja (aplicado apenas nesta página) */
.visual-arts-benefits .benefits-grid-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.visual-arts-benefits .benefit-item-visual {
  background: linear-gradient(180deg, #fff3e0 0%, #ffd699 50%, #ffb74d 100%);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(255, 143, 0, 0.12);
  transition: transform .18s ease, box-shadow .18s ease;
}

.visual-arts-benefits .benefit-item-visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(255, 143, 0, 0.18);
}

.visual-arts-benefits .benefit-icon-visual {
  background: linear-gradient(135deg, #ffb74d, #ff8a00);
  color: white;
}

.visual-arts-benefits .benefit-item-visual h3,
.visual-arts-benefits .benefit-item-visual p {
  color: #4b2e00;
}

/* reorganiza grade em 2x2 em tablets e celulares para evitar quadradinhos muito alongados */
@media (max-width: 768px) {
  .visual-arts-benefits .benefits-grid-visual {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-arts-benefits .benefit-item-visual {
    padding: 20px 15px;
  }
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.benefits-image {
  text-align: center;
  margin: 40px 0 50px;
}

.benefits-image img {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-icon.orange {
  background: linear-gradient(135deg, var(--orange), #ea580c);
}

.benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0;
}

/* Visual Arts Specific Styles */
.visual-arts-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  position: relative;
  overflow: hidden;
}

.visual-arts-hero .page-title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-gray);
}

.hero-description {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin: 30px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  text-align: center;
  margin-top: 30px;
}

/* Philosophy Section */
.philosophy-section {
  padding: 80px 0;
  background: white;
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin: 40px 0;
}

.philosophy-text {
  font-size: 1.2rem;
  color: var(--gray);
}

.philosophy-quote {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.philosophy-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.philosophy-image-1 img,
.philosophy-image-2 img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.philosophy-message {
  text-align: center;
  margin-top: 50px;
}

.philosophy-message p {
  font-size: 1.3rem;
  color: var(--dark-gray);
}

/* Visual Arts Benefits */
.benefits-grid-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-item-visual {
  text-align: center;
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.benefit-item-visual:hover {
  transform: translateY(-5px);
}

.benefit-icon-visual {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 15px;

  img {
    max-width: 50px;
    max-height: 50px;
  }
}

.benefit-icon-visual.orange {
  background: linear-gradient(135deg, var(--orange), #ea580c);
}

.benefit-item-visual h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: var(--dark-gray);
  margin-bottom: 40px;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-question {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.cta-links ul {
  list-style: none;
  margin-bottom: 40px;
}

.cta-links li {
  margin-bottom: 10px;
}

.cta-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

.cta-link:hover {
  text-decoration: underline;
}

/* Annual Plan Section */
.annual-plan {
  padding: 80px 0;
  background: white;
}

.plan-document {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid var(--blue);
}

.plan-document p {
  margin: 0;
  font-weight: 500;
  color: var(--dark-gray);
}

.course-plan {
  margin-top: 40px;
}

.course-plan h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 30px;
}

.modules-section {
  margin-bottom: 40px;
}

.modules-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.module-list {
  list-style: none;
  padding-left: 20px;
}

.module-list li {
  margin-bottom: 10px;
}

.module-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.module-link:hover {
  color: #ea580c;
  text-decoration: underline;
}

/* Theater Page Styles */
.theater-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  position: relative;
  overflow: hidden;
}

.theater-hero .page-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.hero-subtitle-theater {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-gray);
  opacity: 0.8;
  font-weight: 400;
}

.infrastructure,
.pedagogical-excellence {
  padding: 80px 0;
  background: white;
}

.infrastructure {
  background: #f8fafc;
}

.infrastructure-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 20px auto;
}

.infrastructure-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.infrastructure-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #ea580c;
  font-weight: bold;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 40px;
}

/* Circus Page Styles */
.circus-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  position: relative;
  overflow: hidden;
}

.circus-hero .page-title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-gray);
}

/* Differentials Section */
.differentials-section {
  padding: 80px 0;
  background: white;
}

.differentials-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.differential-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 15px;
  transition: transform 0.3s;
}

.differential-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.differential-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.differential-item p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  font-size: 1.1rem;
}

/* ...existing code... */

/* Meaning Section */
.meaning-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.meaning-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.meaning-text-block {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--orange);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

.meaning-image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.meaning-image-text.reverse {
  grid-template-columns: 1fr 1fr;
}

.meaning-image-text.reverse .meaning-image {
  order: 2;
}

.meaning-image-text.reverse .meaning-text {
  order: 1;
}

.meaning-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.meaning-image:hover {
  transform: scale(1.02);
}

.meaning-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 120, 0, 0.95);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.meaning-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

.meaning-text p {
  margin-bottom: 20px;
}

.meaning-text p:last-child {
  margin-bottom: 0;
}

.meaning-final {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.meaning-final .meaning-image {
  max-width: 300px;
}

/* Responsivo */
@media (max-width: 768px) {
  .meaning-section {
    padding: 50px 0;
  }

  .meaning-content {
    gap: 40px;
  }

  .meaning-text-block {
    padding: 25px;
    font-size: 1rem;
  }

  .meaning-image-text {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .meaning-image-text.reverse .meaning-image,
  .meaning-image-text.reverse .meaning-text {
    order: unset;
  }

  .meaning-final {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .meaning-final .meaning-image {
    max-width: 100%;
  }

  .image-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}


/* Scenic Production Page Styles */
.scenic-card {
  background: #1e3a8a;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  color: white;
  border: 2px solid transparent;
}

.scenic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
  border-color: var(--orange);
}

.scenic-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(249, 115, 22, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.scenic-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--orange);
}

.scenic-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Methodology Section */
.methodology-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.methodology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.methodology-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
}

.methodology-text p {
  margin: 0;
}

.methodology-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Laboratories Section */
.labs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.lab-card {
  background: #1e3a8a;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}

.lab-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
  border-color: var(--orange);
}

.lab-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.lab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.lab-card:hover .lab-image img {
  transform: scale(1.1);
}

.lab-content {
  padding: 25px;
  color: white;
}

.lab-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--orange);
}

.lab-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.final-cta-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.cta-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-text h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-style: italic;
}

.cta-highlight {
  font-size: 1.2rem;
  color: var(--orange);
  line-height: 1.7;
  margin-bottom: 30px;
}

.cta-button-dark {
  background: #1e3a8a;
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  margin-bottom: 30px;
}

.cta-button-dark:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.cta-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-links a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.cta-links a:hover {
  color: var(--orange);
  text-decoration: underline;
}

/* Symphonic Groups Page Styles */
.symphonic-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  position: relative;
  overflow: hidden;
}

.symphonic-hero .page-title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.hero-subtitle-orange {
  text-align: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 50px;
  font-style: italic;
}

/* Orchestra Content */
.orchestra-content {
  padding: 80px 0;
  background: white;
}

.content-block {
  margin-bottom: 80px;
}

.content-header {
  margin-bottom: 40px;
}

.content-header h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.content-header h3 {
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 600;
}

.content-grid-symphonic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-grid-symphonic.reverse {
  grid-template-columns: 1fr 2fr;
}

.content-text p {
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.7;
  font-size: 1.1rem;
}

.content-text p:first-child {
  font-weight: 600;
  color: var(--orange);
  font-size: 1.2rem;
}

.content-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Upcoming Concerts */
.upcoming-concerts {
  padding: 80px 0;
  background: var(--light-gray);
}

.concerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.concert-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.concert-card:hover {
  transform: translateY(-5px);
}

.concert-image {
  height: 200px;
  overflow: hidden;
}

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

.concert-info {
  padding: 25px;
  text-align: center;
}

.concert-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.concert-info .btn {
  padding: 10px 25px;
  font-size: 0.9rem;
}

/* Pride Section - Enhanced Styling */
.pride-section {
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.pride-background {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 25%, #fbbf24 50%, #f59e0b 75%, #d97706 100%);
  border-radius: 25px;
  padding: 60px 40px;
  position: relative;
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
}

.pride-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.music-note {
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  animation: float 6s ease-in-out infinite;
}

.note-1 {
  top: 20px;
  left: 10%;
  animation-delay: 0s;
}

.note-2 {
  top: 60px;
  right: 15%;
  animation-delay: 2s;
}

.note-3 {
  bottom: 80px;
  left: 20%;
  animation-delay: 4s;
}

.note-4 {
  bottom: 40px;
  right: 25%;
  animation-delay: 1s;
}

.trophy-icon {
  position: absolute;
  top: 30px;
  right: 10%;
  font-size: 3rem;
  animation: bounce 3s ease-in-out infinite;
}

.world-icon {
  position: absolute;
  bottom: 30px;
  left: 5%;
  font-size: 2.5rem;
  animation: rotate 10s linear infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pride-content {
  position: relative;
  z-index: 2;
}

.pride-header {
  text-align: center;
  margin-bottom: 50px;
}

.pride-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.badge-icon {
  color: var(--orange);
  font-size: 1.2rem;
  animation: pulse 2s ease-in-out infinite;
}

.badge-text {
  font-weight: bold;
  color: var(--dark-gray);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.pride-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pride-subtitle {
  font-size: 1.8rem;
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.pride-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.5));
  margin: 0 auto;
  border-radius: 2px;
}

.content-grid-pride {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.content-text-pride {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.highlight-text {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  border-radius: 15px;
  color: white;
}

.highlight-icon {
  font-size: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

.pride-intro {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
}

.pride-description p {
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.7;
  font-size: 1.1rem;
}

.achievements {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: transform 0.3s;
}

.achievement-item:hover {
  transform: translateX(10px);
}

.achievement-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.achievement-text {
  display: flex;
  flex-direction: column;
}

.achievement-text strong {
  color: var(--dark-gray);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.achievement-text span {
  color: var(--gray);
  font-size: 0.9rem;
}

.content-image-pride {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: rotate(-2deg);
  transition: transform 0.3s;
}

.image-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.image-frame img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  color: white;
}

.overlay-text {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
}

.image-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--orange);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
}

/* Music Page Styles */
.music-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fef3c7, #fed7aa, #dbeafe);
  position: relative;
  overflow: hidden;
}

.hero-subtitle-music {
  text-align: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 50px;
  font-weight: 600;
  font-style: italic;
}

.music-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 30px auto 0;
  line-height: 1.7;
}

/* Instrument Selection */
.instrument-selection {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--light-gray) 100%);
  /* Fundo escuro para destacar as imagens */
  color: white;
}

.instruments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.instrument-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.instrument-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.instrument-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  z-index: 2;
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.instrument-image {
  height: 140px;
  overflow: hidden;
  position: relative;
}

.instrument-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.instrument-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.instrument-card:hover .instrument-image img {
  transform: scale(1.1);
}

.instrument-card h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 14px 0 8px;
  padding: 0 16px;
  color: var(--dark-gray);
}

.instrument-card p {
  color: var(--gray);
  padding: 0 16px 16px;
  font-size: 0.9rem;
}

.instrument-card .btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

.instrument-selection .section-title {
  /* Mudança: Cor escura para contrastar com o fundo branco */
  color: var(--dark-gray);
  margin-bottom: 50px;
  text-align: center;
  font-weight: 800;
}

/* Opcional: Um detalhe laranja embaixo do título para charmer */
.instrument-selection .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 15px auto 0;
  border-radius: 2px;
}

.gallery-wrapper {
  display: flex;
  height: 450px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 15px;
  padding: 0 20px;
  box-sizing: border-box;
}

.gallery-item {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s;
  filter: grayscale(100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-height: 300px;
}

/* Estado Ativo/Hover: O item cresce */
.gallery-item:hover,
.gallery-item.active {
  flex: 3.5;
  filter: grayscale(0%);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.9;
  transition: opacity 0.3s;
}

.gallery-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
  z-index: 2;
  color: white;
}

/* Conteúdo visível apenas quando expandido */
.gallery-item:hover .gallery-content,
.gallery-item.active .gallery-content {
  opacity: 1;
  transform: translateY(0);
}

/* Ícone e Título sempre visíveis */
.gallery-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.gallery-item h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  white-space: normal;
  line-height: 1.3;
}

.gallery-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tablet */
@media (max-width: 1024px) {
  .gallery-wrapper {
    height: 400px;
    gap: 12px;
    padding: 0 15px;
  }

  .gallery-item {
    border-radius: 16px;
  }

  .gallery-item h3 {
    font-size: 1.4rem;
  }

  .gallery-item p {
    font-size: 0.9rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-wrapper {
    flex-direction: column;
    height: auto;
    gap: 15px;
    padding: 0 15px;
  }

  .gallery-item {
    height: 320px;
    flex: none !important;
    filter: grayscale(0%);
    border-radius: 16px;
  }

  .gallery-content {
    opacity: 1;
    transform: translateY(0);
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .gallery-item h3 {
    font-size: 1.3rem;
    white-space: normal;
  }

  .gallery-item p {
    font-size: 0.85rem;
  }

  .gallery-icon {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}

/* Celular pequeno */
@media (max-width: 480px) {
  .gallery-wrapper {
    gap: 12px;
    padding: 0 10px;
  }

  .gallery-item {
    height: 280px;
  }

  .gallery-content {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .gallery-item h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .gallery-item p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .gallery-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
    display: none;
  }
}

/* Music Structure */
.music-structure {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc, #fef3c7);
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.structure-item {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.structure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.structure-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.structure-item h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.structure-item p {
  color: var(--gray);
  font-style: italic;
  line-height: 1.6;
}

/* Career Paths */
.career-paths {
  padding: 80px 0;
  background: white;
}

.subtitle-small {
  font-size: 1.2rem;
  color: var(--gray);
  font-weight: normal;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.path-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.path-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.path-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2.5rem;
  z-index: 2;
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.path-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.path-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

.path-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.path-card:hover .path-image img {
  transform: scale(1.1);
}

.path-card h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin: 25px 30px 15px;
}

.path-card p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0 30px 30px;
}

/* Student Performances */
.student-performances {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
}

.performances-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
  font-style: italic;
}

.performance-video {
  max-width: 900px;
  margin: 0 auto;
}

.performance-video .video-placeholder {
  height: 500px;
}

/* Music CTA */
.music-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.cta-card-music {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 60px 40px;
  color: white;
}

.cta-card-music h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-card-music p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.cta-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.link-blue {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.link-blue:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Theater Page Styles */
.theater-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fef3c7, #fecaca, #dbeafe);
  position: relative;
  overflow: hidden;
}

.hero-subtitle-theater {
  text-align: center;
  font-size: 1.5rem;
  color: #dc2626;
  margin-bottom: 50px;
  font-weight: 600;
  font-style: italic;
}

/* Theater Showcase */
.theater-showcase {
  padding: 80px 0;
  background: white;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.showcase-item {
  text-align: center;
  position: relative;
}

.showcase-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.showcase-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  margin-bottom: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-item:hover .showcase-image {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
}

.showcase-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--dark-gray);
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.theater-description {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.theater-description p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--gray);
}

/* Current Shows */
.current-shows {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc, #fef3c7);
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.show-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.show-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.show-poster {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.show-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.show-card:hover .show-poster img {
  transform: scale(1.05);
}

.show-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--orange);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.show-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin: 20px 20px 15px;
}

.show-card .btn {
  margin: 0 20px 20px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Actor Journey */
.actor-journey {
  padding: 80px 0;
  background: white;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}



.journey-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  position: relative;
}

.journey-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.journey-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2.5rem;
  z-index: 2;
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.journey-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.journey-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.journey-card:hover .journey-image img {
  transform: scale(1.1);
}

.journey-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin: 20px 25px 10px;
}

.journey-card p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0 25px 20px;
  font-size: 0.95rem;
}

.journey-card .btn {
  margin: 0 25px 25px;
  width: calc(100% - 50px);
}

/* Theater Vision */
.theater-vision {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
}

.vision-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
  font-style: italic;
}

.vision-video {
  max-width: 900px;
  margin: 0 auto 50px;
}

.vision-video .video-placeholder {
  height: 500px;
}

.theater-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

/* Theater CTA */
.theater-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #dc2626, #7c3aed);
}

.cta-card-theater {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 60px 40px;
  color: white;
}

.cta-card-theater h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: white;
}

.theater-contact {
  margin-top: 40px;
  font-size: 1.1rem;
}

.theater-contact p {
  margin-bottom: 15px;
}

.social-links {
  margin-top: 40px;
}

.social-links p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icons {
  img {
    height: 40px;
  }
}

/* enhanced social area at bottom of page */
.social-links-section.bottom {
  padding: 60px 0 40px;
  background: var(--light-gray);
}

.social-links-section.bottom .social-links p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.social-links-section.bottom .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.5rem;
  padding: 12px 20px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background .2s, border-color .2s, box-shadow .2s;
}

.social-links-section.bottom .social-icons a:hover {
  background: rgba(255, 165, 0, 0.1);
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* make links stack on narrow screens for easier tapping */
@media (max-width: 768px) {
  .social-links-section.bottom .social-icons {
    flex-direction: column;
    gap: 12px;
  }

  .social-links-section.bottom .social-icons a {
    width: 100%;
  }
}


.social-icon {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  transition: background 0.3s;
  font-weight: 500;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Dance Page Styles */
.dance-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  position: relative;
  overflow: hidden;
}

.dance-hero .page-title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.hero-subtitle-dance {
  text-align: center;
  font-size: 1.3rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 40px;
}

.dance-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin: 30px 0;
  font-weight: 500;
}

/* Three Acts Section */
.three-acts-section {
  padding: 80px 0;
  background: white;
}

.acts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.act-card {
  background: var(--dark-blue);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.act-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.act-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.act-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.act-card:hover .act-image img {
  transform: scale(1.1);
}

.act-content {
  padding: 25px;
  color: white;
}

.act-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.orange-text {
  color: var(--orange);
}

.act-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Dance Styles Section */
.dance-styles-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.dance-styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.style-card {
  background: var(--dark-blue);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.style-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.style-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.style-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.style-card:hover .style-image img {
  transform: scale(1.1);
}

.style-card h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 20px 20px 10px;
  margin: 0;
}

.style-card .btn {
  margin: 0 20px 25px;
}

/* Journey Section */
.journey-section {
  padding: 80px 0;
  background: white;
}

.clock-icon {
  font-size: 2rem;
  margin-right: 10px;
}

.journey-flow {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.journey-step {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card {
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.blue-card {
  background: var(--dark-blue);
  color: white;
}

.step-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.step-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.arrow-down {
  font-size: 2rem;
  color: var(--orange);
  margin: 10px 0;
}

/* Alumni Section */
.alumni-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.alumni-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 50px;
}

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.alumni-card {
  background: var(--dark-blue);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.alumni-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.alumni-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
}

.alumni-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.3s;
}

.alumni-card:hover .alumni-image img {
  transform: scale(1.05);
}

.alumni-content {
  padding: 30px;
  color: white;
}

.alumni-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.alumni-achievements {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alumni-achievements li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.alumni-achievements li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 1.5rem;
  line-height: 1.2;
}

/* Dance CTA Section */
.dance-cta {
  padding: 80px 0;
  background: white;
}

.cta-card-dance {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--light-gray);
  padding: 60px 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cta-card-dance h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.cta-message {
  font-size: 1.3rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-large {
  font-size: 1.1rem;
  padding: 18px 40px;
}

.cta-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.link-blue {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.link-blue:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}

/* Editais Page Styles */
.editais-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  text-align: center;
}

.page-title-editais {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.editais-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Editais Previous Section */
.editais-previous {
  padding: 80px 0;
  background: white;
}

.editais-top-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.btn-process-info {
  background: var(--dark-blue);
  color: white;
  padding: 25px 40px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
  transition: all 0.3s;
  flex: 0 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 300px;
}

.btn-process-info:hover {
  background: #1e40af;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.previous-notices {
  text-align: left;
  flex: 0 0 auto;
}

.editais-section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 25px;
  text-align: left;
}

.previous-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.edital-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.3s;
  padding: 5px 0;
  display: inline-block;
}

.edital-link:hover {
  color: var(--orange);
  transform: translateX(5px);
}

/* Editais Open Section */
.editais-open {
  padding: 60px 0;
  background: var(--light-gray);
}

.editais-grid {
  display: grid;
  gap: 30px;
}

.edital-card {
  background: var(--dark-blue);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.edital-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.open-card {
  border: 3px solid #10b981;
}

.closed-card {
  border: 3px solid #ef4444;
}

.edital-circo {
  background: rgb(185, 70, 70)
}

.edital-danca {
  background: rgb(225, 141, 204)
}

.edital-grupos-sinfonicos {
  background: rgb(108, 108, 108)
}

.edital-teatro {
  background: rgb(33, 89, 33)
}

.edital-musica {
  background: rgb(93, 174, 236)
}

.edital-artes-visuais {
  background: rgb(219, 169, 136)
}

.edital-producao-cenica {
  background: rgb(98, 19, 224)
}

.edital-musica2 {
  background: rgb(15, 50, 201)
}

.edital-arte-educacao {
  background: #1abc9c;
}

.edital-outros {
  background: #8c6f4e;
}

.status-badge {
  padding: 4px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.edital-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.4;
}

.edital-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.edital-doc-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  transition: color 0.3s;
  border-bottom: 1px solid transparent;
}

.edital-doc-link:hover {
  color: #f8fafc;
  border-bottom-color: white;
}

.highlight-link {
  color: #fbbf24;
  font-weight: 700;
  font-style: italic;
}

.edital-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.status-label {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.status-open {
  background: #10b981;
  color: white;
  border-radius: 10px;
}

.status-closed {
  background: #ef4444;
  color: white;
  border-radius: 10px;
}

/* Estilos da Legenda */
.editais-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #243b63;
  transition: 0.3s ease;
}

.legend-item:hover {
  color: #2f4f85;
}

.legend-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

/* Ajustes no Card para suportar o rodapé e descrição */
.edital-mini-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
  font-style: italic;
}

.edital-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.edital-course-tag {
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Ajuste responsivo para o rodapé do card */
@media (max-width: 480px) {
  .edital-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .edital-course-tag {
    align-self: flex-end;
    /* Nome do curso continua à direita mesmo no mobile */
  }
}

/* Editais Closed Section */
.editais-closed {
  padding: 60px 0;
  background: white;
}

/* Responsive Design for Editais */
@media (max-width: 768px) {
  .page-title-editais {
    font-size: 2.5rem;
  }

  .editais-top-section {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .previous-notices {
    text-align: center;
    width: 100%;
  }

  .editais-section-title {
    text-align: center;
  }

  .previous-links {
    text-align: center;
    align-items: center;
  }

  .btn-process-info {
    width: 100%;
    min-width: unset;
  }

  .edital-card {
    padding: 25px;
  }

  .edital-title {
    font-size: 1.1rem;
  }

  .edital-links {
    flex-direction: column;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.08);
    padding: 30px 0;
    gap: 0;
  }

  .nav-menu li {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu a {
    font-size: 15px;
  }

  .nav-menu a::after {
    display: none;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .about-grid,
  .content-grid,
  .philosophy-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    position: static;
    margin-top: 20px;
  }

  .timeline-item {
    flex-direction: column;
  }

  .hero-buttons,
  .about-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* Adding styles for Conselho Diretor page */

/* Conselho Diretor Header */
.conselho-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  text-align: center;
}

.page-title-conselho {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.conselho-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Current Status Section */
.conselho-status {
  padding: 60px 0;
  background: white;
}

.status-card-conselho {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: white;
  padding: 50px;
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.status-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fbbf24;
}

.status-info {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.status-info li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  padding-left: 30px;
  position: relative;
}

.status-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fbbf24;
  font-size: 1.5rem;
}

.status-info strong {
  font-weight: 600;
  color: white;
}

.btn-primary-conselho {
  background: var(--orange);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-primary-conselho:hover {
  background: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

/* Timeline Section */
.conselho-timeline {
  padding: 80px 0;
  background: var(--light-gray);
}

.conselho-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: var(--dark-gray);
  margin-bottom: 50px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.timeline-stage {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.timeline-stage:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.stage-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #fbbf24;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
}

.stage-content {
  font-size: 0.95rem;
  line-height: 1.6;
}

.stage-label {
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  color: #cbd5e1;
}

.stage-description {
  margin-bottom: 20px;
  opacity: 0.95;
  line-height: 1.7;
}

.stage-links {
  list-style: none;
  margin-top: 15px;
}

.stage-links li {
  margin-bottom: 10px;
}

.doc-link {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-block;
  position: relative;
  padding-left: 18px;
}

.doc-link::before {
  content: "📄";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.doc-link:hover {
  color: white;
  text-decoration: underline;
}

.highlight-doc {
  color: #fbbf24;
  font-weight: 600;
}

.highlight-doc::before {
  content: "🗳️";
}

.disabled-link {
  color: #64748b;
  cursor: not-allowed;
  opacity: 0.6;
}

.disabled-link:hover {
  text-decoration: none;
  color: #64748b;
}

/* Candidates Section */
.conselho-candidates {
  padding: 80px 0;
  background: white;
}

.candidates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.candidate-card {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.candidate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.candidate-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

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

.candidate-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fbbf24;
}

.candidate-description {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn-candidate {
  background: var(--orange);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.btn-candidate:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Documents Archive Section */
.conselho-documents {
  padding: 80px 0;
  background: var(--light-gray);
}

.documents-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.documents-table thead {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: white;
}

.documents-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

.documents-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.3s;
}

.documents-table tbody tr:hover {
  background: #f8fafc;
}

.documents-table tbody tr:last-child {
  border-bottom: none;
}

.documents-table td {
  padding: 20px;
  color: var(--gray);
  font-size: 0.95rem;
}

.download-link {
  background: var(--blue);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  transition: all 0.3s;
}

.download-link:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Responsive Design for Conselho Diretor */
@media (max-width: 768px) {
  .page-title-conselho {
    font-size: 2.5rem;
  }

  .conselho-subtitle {
    font-size: 1rem;
  }

  .status-card-conselho {
    padding: 30px 20px;
  }

  .status-title {
    font-size: 1.5rem;
  }

  .status-info li {
    font-size: 1rem;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .candidates-grid {
    grid-template-columns: 1fr;
  }

  .documents-table-wrapper {
    overflow-x: auto;
  }

  .documents-table {
    min-width: 600px;
  }

  .conselho-section-title {
    font-size: 2rem;
  }
}

/* Responsive Design for Dance Page */
@media (max-width: 768px) {
  .dance-hero .page-title {
    font-size: 2.5rem;
  }

  .hero-subtitle-dance {
    font-size: 1.1rem;
  }

  .acts-grid,
  .dance-styles-grid {
    grid-template-columns: 1fr;
  }

  .alumni-grid {
    grid-template-columns: 1fr;
  }

  .journey-flow {
    padding: 0 10px;
  }

  .cta-card-dance {
    padding: 40px 25px;
  }

  .cta-card-dance h2 {
    font-size: 2rem;
  }
}

/* Adding Calendario page styles */
/* ===================================
   Calendario Page Styles
   =================================== */

.calendario-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  text-align: center;
}

.calendario-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.calendario-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Download Section */
.calendario-download {
  padding: 50px 0 80px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
}

.download-content {
  max-width: 1200px;
  margin: 0 auto;
}

.download-text {
  text-align: left;
  margin-bottom: 10px;
}

.download-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--orange);
  margin-bottom: 5px;
}

.download-buttons-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.download-buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}

.btn-download-unit {
  background: var(--dark-blue);
  color: white;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--dark-blue);
}

.btn-download-unit:hover {
  background: transparent;
  color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(19, 36, 86, 0.2);
}

.calendario-preview {
  flex: 1;
  max-width: 400px;
}

.calendario-preview img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.calendario-preview img:hover {
  transform: scale(1.02);
}

/* Responsive Design for Calendario */
@media (max-width: 968px) {
  .calendario-title {
    font-size: 2.5rem;
  }

  .download-buttons-container {
    flex-direction: column;
    gap: 40px;
  }

  .download-buttons {
    max-width: 100%;
  }

  .calendario-preview {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .calendario-header {
    padding: 100px 0 40px;
  }

  .calendario-title {
    font-size: 2rem;
  }

  .calendario-subtitle {
    font-size: 1rem;
  }

  .download-title {
    font-size: 1.5rem;
  }

  .btn-download-unit {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

/* Trabalhe Conosco Page Styles */
.trabalhe-header {
  background: linear-gradient(135deg, var(--dark-blue), #1e40af);
  padding: 100px 0 60px;
  text-align: center;
}

.trabalhe-hero {
  padding: 80px 0;
  background: #f8fafc;
}

.trabalhe-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.trabalhe-intro-text {
  padding-right: 40px;
}

.trabalhe-tagline {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--orange);
  font-weight: 500;
}

.trabalhe-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.trabalhe-cta-center {
  text-align: center;
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Vagas Section */
.trabalhe-vagas {
  padding: 80px 0;
  background: white;
}

.section-title-left {
  text-align: left;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: var(--dark-blue);
}

.vaga-card {
  background: var(--dark-blue);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vaga-header {
  margin-bottom: 30px;
}

.vaga-title {
  color: var(--orange);
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
}

.vaga-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.vaga-requirements ul,
.vaga-details ul {
  list-style: none;
  padding: 0;
  color: white;
}

.vaga-requirements ul li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.vaga-requirements ul li:before {
  content: "•";
  color: var(--orange);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
}

.vaga-details ul li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.vaga-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-orange {
  background: var(--orange);
  color: white;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid var(--orange);
}

.btn-orange:hover {
  background: white;
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Banco de Talentos Section */
.trabalhe-banco {
  padding: 80px 0;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.banco-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.banco-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.banco-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--orange);
  margin-bottom: 30px;
}

.banco-illustration {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.banco-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.banco-label h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.banco-label p {
  font-size: 1rem;
  color: #64748b;
  font-style: italic;
}

/* Benefícios Section */
.trabalhe-beneficios {
  padding: 80px 0;
  background: white;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.beneficio-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 15px;
  transition: all 0.3s;
}

.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.beneficio-icon {
  flex-shrink: 0;
}

.beneficio-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
  line-height: 1.4;
}

/* Responsive Design for Trabalhe Conosco */
@media (max-width: 768px) {
  .trabalhe-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trabalhe-intro-text {
    padding-right: 0;
  }

  .trabalhe-tagline {
    font-size: 1.1rem;
  }

  .vaga-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vaga-title {
    font-size: 1.4rem;
  }

  .banco-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .banco-title {
    font-size: 1.75rem;
  }

  .banco-description {
    font-size: 1rem;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .beneficio-card {
    flex-direction: column;
    text-align: center;
  }

  .section-title-left {
    font-size: 2rem;
  }
}

/* Corpo Docente Page Styles */
.corpo-docente-header {
  background: linear-gradient(135deg, var(--dark-blue), #1e40af);
  padding: 100px 0 60px;
  text-align: center;
}

.corpo-docente-header .page-title {
  color: white;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
}

.corpo-docente-intro {
  padding: 80px 0;
  background: #f8fafc;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #475569;
  text-align: justify;
}

.corpo-docente-categories {
  padding: 80px 0;
  background: white;
}

.categories-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--orange);
  margin-bottom: 60px;
  text-align: left;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
}

.category-link {
  display: block;
  padding: 30px;
  background: white;
  border: 2px solid var(--dark-blue);
  border-radius: 15px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--dark-blue);
  text-decoration: none;
  transition: all 0.3s;
}

.category-link:hover {
  background: var(--dark-blue);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}

/* Professor Cards */
.professores-section {
  padding: 80px 0;
  background: #f8fafc;
}

.professores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.professor-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.professor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.professor-photo {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.professor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.professor-info {
  padding: 30px;
}

.professor-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.professor-specialty {
  font-size: 1rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 15px;
}

.professor-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
}

/* Responsive Design for Corpo Docente */
@media (max-width: 768px) {
  .intro-text {
    font-size: 1rem;
    text-align: left;
  }

  .categories-title {
    font-size: 1.75rem;
    text-align: center;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-link {
    font-size: 1.25rem;
    padding: 25px;
  }

  .professores-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .professor-photo {
    height: 250px;
  }

  .professor-name {
    font-size: 1.3rem;
  }
}

/* Corpo Docente Category Page Layout */
.corpo-docente-category-page {
  padding: 80px 0;
  background: white;
  min-height: 100vh;
}

/* Back Button with Arrow */
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  margin-bottom: 40px;
  transition: all 0.3s;
}

.back-button:hover {
  color: var(--orange);
  transform: translateX(-5px);
}

.back-button svg {
  width: 24px;
  height: 24px;
}

/* Page Title */
.category-page-title {
  font-size: 3rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 20px;
  text-align: center;
}

/* Category Subtitle */
.category-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 60px;
  text-align: left;
}

/* Professors Card Grid - 2 columns */
.professors-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Professor Display Card */
.professor-display-card {
  background: var(--dark-blue);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.professor-display-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Professor Avatar */
.professor-avatar {
  flex-shrink: 0;
}

.professor-avatar img {
  display: block;
  max-height: 100px;
  border-radius: 10px;
}

/* Professor Card Content */
.professor-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
}

/* Professor Area Section */
.professor-area h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.professor-area p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.4;
}

/* Professor Details Section */
.professor-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.professor-details h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  line-height: 1.3;
}

/* Professor Email */
.professor-email {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.professor-email span {
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 600;
}

.professor-email em {
  font-size: 0.9rem;
  color: var(--orange);
  font-style: italic;
}

/* Responsive Design for Category Pages */
@media (max-width: 968px) {
  .professors-card-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-page-title {
    font-size: 2.5rem;
  }

  .category-subtitle {
    font-size: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .corpo-docente-category-page {
    padding: 60px 0;
  }

  .category-page-title {
    font-size: 2rem;
  }

  .category-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }

  .professor-display-card {
    flex-direction: column;
    padding: 25px;
    gap: 20px;
  }

  .professor-avatar {
    margin: 0 auto;
  }

  .professor-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .professor-email {
    align-items: flex-start;
  }

  .professor-details h4 {
    font-size: 1.15rem;
  }
}

/* Partners Section */
.partners {
  padding: 80px 0;
  background: #f8f9fa;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark-blue);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-card {
  background: var(--orange);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.partner-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  ;
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .partners-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.partner-card.basileu-franca img {
  /* O filtro que transforma a imagem em branco */
  filter: brightness(0) invert(1);
}

.text-white {
  color: white;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* parte caracterizacao da parte das artes cenicas */

/* ...existing code... */

/* Production Cenica Styles */
.container-centered {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.area-hero {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9533 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.area-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.area-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.video-container {
  margin: 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.video-placeholder {
  background: rgba(0, 0, 0, 0.3);
  padding: 60px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  text-align: center;
  color: white;
}

.hero-description {
  font-size: 1.1rem;
  margin: 30px 0;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: white;
  color: var(--orange);
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  align-items: center;


}


.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.content-section {
  padding: 80px 0;
  background: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
  color: var(--dark-gray);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card,
.scenic-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.scenic-card:hover {
  border-color: var(--orange);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 120, 0, 0.15);
  background: white;
}

.card-icon {
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.card-icon svg {
  width: 48px;
  height: 48px;
}

.feature-card h3,
.scenic-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.feature-card p,
.scenic-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

/* Methodology Section */
.methodology-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.methodology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.methodology-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

.methodology-text p {
  margin-bottom: 20px;
}

.methodology-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Labs Grid */
.labs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.lab-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.lab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.lab-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.lab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lab-card:hover .lab-image img {
  transform: scale(1.05);
}

.lab-content {
  padding: 25px;
}

.lab-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--orange);
}

.lab-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, var(--dark-gray) 0%, #2c3e50 100%);
  color: white;
  padding: 80px 0;
}

.final-cta-section .section-title {
  color: white;
}

.final-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.cta-highlight {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-button-dark {
  background: var(--orange);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.cta-button-dark:hover {
  background: #ff9533;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 120, 0, 0.3);
}

.cta-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-links a {
  color: var(--orange);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-links a:hover {
  color: white;
  transform: translateX(8px);
}

/* Responsivo */
@media (max-width: 768px) {
  .area-title {
    font-size: 2.5rem;
  }

  .area-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .methodology-content,
  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .labs-grid {
    grid-template-columns: 1fr;
  }

  .cta-text h3 {
    font-size: 1.4rem;
  }

  .cta-links {
    flex-direction: column;
  }
}

/* ...existing code... */
.music-hero .cta-button,
.final-cta-section .cta-button-dark {
  display: block;
  width: fit-content;
  /* mantém o tamanho do botão */
  margin: 24px auto 0;
  /* centraliza horizontalmente */
  text-align: center;
}

/* Fallback para navegadores antigos que não suportam fit-content */
.music-hero .cta-button,
.final-cta-section .cta-button-dark {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.music-hero a,
.final-cta-section a,
.cta-button,
.cta-button-dark {
  text-decoration: none;
}

/* ...existing code... */

/* Hamburger Mobile Menu */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: white;
    text-align: center;
    transition: transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    transform: translateX(-100%);
    visibility: hidden;
  }

  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: 0.3s;
    background: var(--dark-gray);
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* ...existing code... */

/* Garante que o widget VLibras fique visível e no topo */
.vw,
.vw * {
  z-index: 99999 !important;
  pointer-events: auto !important;
}

/* evita que regras globais escondam o botão */
.vw-access-button {
  display: block !important;
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
}

/* se quiser forçar o estilo parecido com a imagem (opcional) */
.vw-access-button .vw-access-btn {
  border-radius: 10px !important;
}

/* ...existing code... */
/* ...existing code... */

/* ... resto do seu CSS ... */

/* ESTILOS DO VLIBRAS (Forçar visualização) */
.vw,
.vw * {
  z-index: 2147483647 !important;
  pointer-events: auto !important;
  box-sizing: content-box !important;
  /* Evita que o box-sizing global o encolha */
  visibility: visible !important;
  /* Garante que não foi escondido */
}

.vw-access-button {
  display: flex !important;
  /* Força o display para o tipo flex */
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  z-index: 2147483647 !important;
  visibility: visible !important;
  width: 50px !important;
  /* Garante um tamanho visível */
  height: 50px !important;
  /* Garante um tamanho visível */
}

/* FORÇAR APARIÇÃO DO BOTÃO - Adicione ao final do styles.css */
[vw].enabled {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.vw-access-button {
  width: 40px !important;
  height: 40px !important;
  background-color: #1e3a8a !important;
  /* Cor azul para você ver onde ele está */
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer !important;
  position: fixed !important;
  top: 50% !important;
  /* Temporariamente no meio da tela para teste */
  right: 10px !important;
  z-index: 999999 !important;
}

.vw-access-button.active {
  display: block !important;
}

/* Coordination Section Styles */
.coordination-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.coordination-section .section-title {
  margin-bottom: 50px;
}

.coordinator-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coordinator-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coordinator-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.coordinator-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coordinator-name {
  font-size: 28px;
  font-weight: bold;
  color: var(--dark-blue);
  margin: 0;
}

.coordinator-role {
  font-size: 16px;
  color: var(--orange);
  font-weight: 600;
  margin: 0;
}

.coordinator-achievements h4 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.coordinator-achievements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coordinator-achievements ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.coordinator-achievements ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
  font-size: 18px;
}

/* Art Education Journey Grid - Smaller and More Compact */
.journey-grid-arte-educacao {
  max-width: 600px;
  margin: 40px auto !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
}

.journey-grid-arte-educacao .journey-card {
  height: auto;
  padding: 0;
}

.journey-grid-arte-educacao .journey-image {
  height: 200px;
}

.journey-grid-arte-educacao .journey-card h3 {
  font-size: 1.2rem;
  margin: 15px 20px 8px;
}

.journey-grid-arte-educacao .journey-card p {
  font-size: 0.9rem;
  margin: 0 20px 15px;
  line-height: 1.5;
}

.journey-grid-arte-educacao .btn {
  margin: 0 20px 20px;
}

/* Responsive Design for Coordination Section */
@media (max-width: 768px) {
  .coordinator-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .coordinator-image img {
    max-width: 280px;
  }

  .coordinator-name {
    font-size: 24px;
  }

  .coordinator-role {
    font-size: 14px;
  }

  .coordinator-achievements h4 {
    font-size: 16px;
  }

  .coordinator-achievements ul li {
    font-size: 14px;
    padding: 8px 0 8px 25px;
  }
}

/* Responsive Design for Journey Grid Arte Educacao */
@media (max-width: 768px) {
  .journey-grid-arte-educacao {
    max-width: 100%;
    gap: 15px !important;
  }

  .journey-grid-arte-educacao .journey-card h3 {
    font-size: 1.1rem;
    margin: 12px 15px 6px;
  }

  .journey-grid-arte-educacao .journey-card p {
    font-size: 0.85rem;
    margin: 0 15px 12px;
  }

  .journey-grid-arte-educacao .journey-image {
    height: 180px;
  }
}

/* Coordination Section Styles */
.coordination-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.coordination-section .section-title {
  margin-bottom: 50px;
}

.coordinator-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coordinator-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coordinator-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.coordinator-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coordinator-name {
  font-size: 28px;
  font-weight: bold;
  color: var(--dark-blue);
  margin: 0;
}

.coordinator-role {
  font-size: 16px;
  color: var(--orange);
  font-weight: 600;
  margin: 0;
}

.coordinator-achievements h4 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.coordinator-achievements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coordinator-achievements ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.coordinator-achievements ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
  font-size: 18px;
}

/* Responsive Design for Coordination Section */
@media (max-width: 768px) {
  .coordinator-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .coordinator-image img {
    max-width: 280px;
  }

  .coordinator-name {
    font-size: 24px;
  }

  .coordinator-role {
    font-size: 14px;
  }
}

/*conselho diretor */
/* ===================================
   Board Composition Section (Conselho Diretor)
   =================================== */
.text-center {
  text-align: center;
}

.board-composition {
  padding: 80px 0;
  background: var(--light-gray);
}

.board-composition .section-subtitle {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 60px;
  font-size: 1.3rem;
}

.board-category {
  margin-bottom: 70px;
}

.board-category-title {
  font-size: 1.8rem;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.board-category-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 15px auto 0;
  border-radius: 2px;
}

.board-grid {
  display: grid;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.board-grid.top-board {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.board-grid.reps-board {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-content: center;
}

.board-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-bottom: 4px solid var(--orange);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.board-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-role {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.member-name {
  font-size: 1.25rem;
  color: var(--dark-gray);
  font-weight: 600;
  line-height: 1.4;
}

.member-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.member-list li {
  font-size: 1.15rem;
  color: var(--dark-gray);
  font-weight: 500;
}

/* Responsivo para os Cards do Conselho */
@media (max-width: 768px) {

  .board-grid.top-board,
  .board-grid.reps-board {
    grid-template-columns: 1fr;
  }

  .board-category-title {
    font-size: 1.5rem;
  }

  .board-card {
    padding: 30px 20px;
  }
}

/* Estatuto Section Styles */
.statutes-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
}

.statutes-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
}

.statutes-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.statutes-content .btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.statutes-content .btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}