@font-face {
    font-family: 'Raleway';
    /* Caminho apontando para a pasta 'static' conforme sua árvore */
    src: url('./fonts/Raleway/static/Raleway-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder';
    src: 
         /* 1ª tentativa: WOFF2 (Mais rápido) */
         url('fonts/THUNDER/Fonts/Web-TT/Thunder-LC.woff2') format('woff2'),
         
         /* 2ª tentativa: WOFF padrão */
         url('fonts/THUNDER/Fonts/Web-TT/Thunder-LC.woff') format('woff'),
         
         /* 3ª tentativa: TTF (Garantia extra) */
         url('fonts/THUNDER/Fonts/Web-TT/Thunder-LC.ttf') format('truetype');
         
    font-weight: normal;
    font-style: normal;
}

/* Aplicando a fonte nos links */
a {
    font-family: 'Thunder', sans-serif;
}



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    overflow-x:hidden;
    font-family: 'Raleway', sans-serif;

}

a {
    font-family: 'Thunder', sans-serif;
}



.hero-section {
  position: relative;
  width: 100%;
  /* min-height: 100vh; */
  background-color: #000000;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
    /* background-image: url('../assets/images/topo1.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat; */
}

.bg-photo-topo {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .bg-photo-topo-mobile {
    display: none;
  }
}

.content-container {
  position: absolute;
  z-index: 2;
  padding: 30px 8% 40px 8%;
  display: flex;
  flex-direction: column;
  /* flex-grow: 1; */
  /* background-image: url('../assets/images/topo1.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat; */
  /* height: 130vh; */
  width: 100%;
}

.logo-placeholder {
  width: 8%;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.text-wrapper {
  /* max-width: 700px; */
  width: 100%;
  position: relative;
  z-index: 3;
}

.text-wrapper img {
    width: 25%;
}

@media (max-width: 1300px) {
  .text-wrapper img {
    width: 20%;
  }
}

.main-title {
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -3px;
  margin-bottom: 30px;
}

.color-orange {
  color: #EE6A4E;
}

.color-pink {
  color: #FF6FCC;
}

.subtitle {
  color: #FADE3E;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 35px;
  margin-top: 35px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: 'Thunder', 'sans-serif';
  font-size: 26px;
  letter-spacing: 2px;
}

@media (max-width: 1023px) {
  .subtitle  {
    font-size: 16px;
  }
}

@media (min-width: 2000px) {
  .subtitle  {
    font-size: 40px;
    letter-spacing: 2px;
  }
}

.cta-button {
  display: inline-block;
  background-color: #4EBCA1;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-transform: lowercase;
  transition: transform 0.2s ease;

  font-size: 20px;
  letter-spacing: 1px;
}

@media (min-width: 1700px) {
  .cta-button  {
    font-size: 28px;
  }
}

@media (min-width: 2000px) {
  .cta-button  {
    font-size: 40px;
  }
}

.cta-button:hover {
  transform: scale(1.05);
}

.bottom-artwork-placeholder {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 3;
  display: block;
  /* margin-top: auto;
  object-fit: cover;
  object-position: bottom; */
  top: -130px
}

@media (max-width: 1024px) {
  .bg-photo-placeholder {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .bg-photo-placeholder {
    width: 90%;
    opacity: 0.3;
  }

  .content-container {
    padding: 40px 5% 20px 5%;
  }
}






.community{
    background:#000;
    padding-bottom:110px;
}

.community-container{
    width:min(1180px,90%);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.55fr 1fr;
    gap:90px;
    align-items:center;
}

.community-video{
    position:relative;
    width:100%;
    aspect-ratio:16/10;
    overflow:hidden;
    background:#111;
    align-self: start;
    height: 100%;
}

@media (max-width:1300px){
    .community-video{
        height: 80%;
    }
}

.community-video iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

.community-content{
    max-width: 80%;
}

.community-content h2{
    color:#F8D533;
    font-size:30px;
    font-weight:900;
    text-transform:uppercase;
    line-height:1;
    margin-bottom:25px;
    font-family: 'Thunder', sans-serif;
}

.community-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.community-item{
    display:flex;
    align-items:flex-start;
    gap:22px;
}

.community-item .icon{
    color:#F578C8;
    font-size:70px;
    font-weight:900;
    line-height:1;
    flex-shrink:0;
}

.community-item p{
    color:#fff;
    font-size:16px;
    line-height:1.25;
    font-weight:800;
}

.community-btn {
    margin-top: 58px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 300px;
    height: 50px;
    background: #F578C8;
    border-radius: 999px;
    text-decoration: none;
    color: #111;
    font-size: 20px;
    font-weight: 900;
    transition: .25s;
}

.community-btn:hover{
    transform:translateY(-3px);
}

@media (max-width:1000px){

    .community{
        padding:70px 0;
    }

    .community-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .community-content h2{
        /* font-size:2.6rem; */
    }

    .community-item p{
        font-size:1.35rem;
    }

    .community-btn{
        width:100%;
        font-size:1.5rem;
    }

}


.courses__container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
    margin-top: 10px;
    margin: auto;
  }

  .courses__card {
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: black;
    border-radius: 8px;
    overflow: hidden;
  }

  .courses__image-placeholder {
    width: 100%;
    height: 200px; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-weight: bold;
    font-size: 1.2rem;
  }

  .course__img-theater {
    background-image: url('../assets/images/1.png');
  }

  .course__img-dance {
    background-image: url('../assets/images/2.png');
  }

  .course__img-writing {
    background-image: url('../assets/images/3.png');
  }

  .course__img-music {
    background-image: url('../assets/images/4.png');
  }

  .course__img-audiovisual {
    background-image: url('../assets/images/5.png');
  }

  .course__img-oficinas {
    background-image: url('../assets/images/6.png');
  }

  .courses__category {
    padding: 15px 20px;
    font-family: 'Thunder', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: bolder;
  }

  .courses__content {
    padding: 20px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
  }

  .courses__title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .courses__description {
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1; 
  }

  .courses__button {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    align-self: flex-start; 
    font-size: 20px;
    letter-spacing: 1px;
  }

  .courses__card-orange .courses__category { background-color: #d96f5b; color: #000; }
  .courses__card-orange .courses__title { color: #d96f5b; }
  .courses__card-orange .courses__button { background-color: #d96f5b; color: #000; }

  .courses__card-pink .courses__category { background-color: #ff66cc; color: #000; }
  .courses__card-pink .courses__title { color: #ff66cc; }
  .courses__card-pink .courses__button { background-color: #ff66cc; color: #000; }

  .courses__card-yellow .courses__category { background-color: #f6e05e; color: #000; }
  .courses__card-yellow .courses__title { color: #f6e05e; }
  .courses__card-yellow .courses__button { background-color: #f6e05e; color: #000; }

.courses__card-green .courses__category { background-color: #4CAF50; color: #000; }
.courses__card-green .courses__title { color: #4CAF50; }
.courses__card-green .courses__button { background-color: #4CAF50; color: #000; }

.courses__card-beige .courses__category { background-color: #dcb897; color: #000; }
.courses__card-beige .courses__title { color: #dcb897; }
.courses__card-beige .courses__button { background-color: #dcb897; color: #000; }

.courses__card-white .courses__category { background-color: #f0f0f0; color: #000; }
.courses__card-white .courses__title { color: #f0f0f0; }
.courses__card-white .courses__button { background-color: #f0f0f0; color: #000; }






.courses__schedule-wrapper {

    margin-top: 30px;

}


.courses__schedule-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
    padding: 50px 0 50px 0;
    box-sizing: border-box;
    /* background-image: url('../assets/images/ondas-verdes.png'); */
    background-repeat: no-repeat;
    background-size: cover;
    min-height: fit-content;
    background-color: #36B284; 
}

.courses__schedule-bg2 {
  width: 100%;
  margin-top: -2px;
  margin-bottom: -2px;
}


  .courses__day-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    width: 14%;
  }


  .courses__day-header {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Thunder', sans-serif;
  }

  .courses__schedule-card {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    color: black;
    text-align: left;
    font-weight: bold;
    font-size: 1rem;
  }

  .courses__schedule-time {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .courses__bg-pink { background-color: #ff85c0; }
  .courses__bg-orange { background-color: #d25b42; color: white; }
  .courses__bg-yellow { background-color: #e5d635; }
  .courses__bg-beige { background-color: #c9ab86; }
  .courses__bg-white { background-color: white; }

  /* Specific styles for the side note */
  .courses__side-note {
    width: 200px;
    background-color: white;
    padding: 15px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 0.9rem;
    align-self: flex-start;
    margin-top: 50px; /* Align with the first row of cards */
  }



.courses__prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }


  .courses__discount-banner {
    text-align: center;
    padding: 40px 20px;
    color: white;
  }

  .courses__discount-title {
    color: #4CAF50; /* Green color matching the image */
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 2px;
  }

  .courses__discount-amount {
    color: #e5d635; /* Yellow color matching the image */
    font-size: 4rem;
    font-weight: 900; /* Extra bold */
    line-height: 1;
    margin: 0;
    font-family: 'Thunder', sans-serif;
  }


  .courses__discount-text {
    color: #e5d635; /* Yellow text for the conditions */
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 15px;
  }

  .courses__discount-text span {
    color: white; /* White text for "até o dia 5" */
  }

  .courses__cta-button {    
    margin-top: 58px;
    margin-bottom: 58px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 55px;
    background: yellow;
    border-radius: 999px;
    text-decoration: none;
    color: #111;
    font-weight: 900;
    transition: .25s;

    font-size: 26px;
    letter-spacing: 1px;
}

  /* courses_contact.css */

.courses__contact-section {
  background-color: #c75c40; /* Orange background */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.courses__contact-title {
  color: #ff85c0; /* Pink title color */
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Thunder', sans-serif;
}

.courses__contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
}

.courses__contact-input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 4px;
  background-color: #f0f0f0; /* Light grey background for inputs */
  color: #c75c40; /* Orange text color matching background */
  font-size: 1rem;
  font-weight: bold;
  box-sizing: border-box;
}

.courses__contact-input::placeholder {
  color: #c75c40; /* Orange placeholder text */
  opacity: 1; /* Override default opacity */
}

.courses__select-wrapper {
  position: relative;
}

.courses__contact-select {
  appearance: none; /* Remove default styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Custom dropdown arrow */
.courses__select-wrapper::after {
  content: '\25BC'; /* Downward triangle */
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #ff85c0; /* Pink color for the arrow */
  pointer-events: none; /* Ensure clicks pass through to the select element */
}

.courses__contact-submit {
  background-color: #ff85c0; /* Pink button */
  color: #000; /* Black text */
  border: none;
  border-radius: 25px;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  align-self: center; /* Center the button */
  transition: background-color 0.3s ease;
}

.courses__contact-submit:hover {
  background-color: #ff66aa; /* Slightly darker pink on hover */
}


/* footer.css */

.footer__container {
  background-color: #000;
  color: #ff85c0; /* Pink color matching the text */
  padding: 80px 20px;
}

.footer__content {
  display: flex;
  justify-content: space-between; /* Distribute items evenly */
  align-items: center; /* Center items vertically */
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer__social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.footer__icon {
  width: 24px;
  height: 24px;
  /* You can replace these with actual SVG icons or font icons like FontAwesome */
}

.footer__address {
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
}

.footer__address strong {
  font-size: 1.1rem;
}

.footer__website {
  font-size: 1.2rem;
  font-weight: bold;
}
.footer__website a {

    font-size: 23px;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Responsive adjustments (optional) */
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

.site-footer-authorship {
  width: 100%;
  background-color: #C75C40;
  padding: 15px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer-authorship p {
  margin: 0;
  color: #1A1A1A;
  font-size: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .site-footer p {
    font-size: 13px;
  }
}