/* 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;
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.benefit-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
}

.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;
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.benefit-item-visual:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
}

.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: linear-gradient(135deg, hsl(222, 47%, 15%), hsl(222, 47%, 10%));
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition-smooth);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.scenic-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.5);
  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;
}

/* 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;
  }
}

/* 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;
  }
}

/* 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 */
