@charset "UTF-8";
:root {
  --primary-font: "Nunito", sans-serif;
  --primary-color: #3141de;
  --red: #ff0000;
  --semi-bold: 700;
  --med-bold: 600;
  --low-bold: 500;
}

a {
  text-decoration: none;
}

.ab {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
}

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

.bg_red {
  background-color: var(--red);
}

*:focus {
  outline: none;
}

.relative {
  position: relative;
}

.all {
  transition: all 0.4s ease;
}

ul li {
  list-style: none;
}

.wpcf7-not-valid {
  border: 1px solid #ff0000 !important;
  animation: shake 150ms 2 linear;
  -moz-animation: shake 150ms 2 linear;
  -webkit-animation: shake 150ms 2 linear;
  -o-animation: shake 150ms 2 linear;
}

.al-center {
  align-items: center;
}

@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.slick-dots li button:before {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-disabled {
  opacity: 0.4;
}

strong {
  font-weight: var(--semi-bold);
}

html {
  padding: 0;
  margin-top: 0 !important;
}

html,
body {
  overflow-x: hidden;
}

html.is-active {
  overflow: hidden;
}

body {
  font-family: var(--primary-font);
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 300;
  color: var(--primary-color);
  background-color: #fff;
}
body.is-active {
  overflow: hidden !important;
}

@media (max-width: 990px) {
  body {
    padding: 0;
    font-size: 14px;
  }
}
p {
  margin: 0.75rem 0;
  line-height: 28px;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 0.95rem;
  position: relative;
}

@media (max-width: 1190px) {
  .container {
    max-width: 990px;
    padding-inline: 1rem;
  }
}
.container-large {
  max-width: 1400px;
}

@media (max-width: 1390px) {
  .container-large {
    max-width: 1210px;
  }
}
.container-space {
  max-width: 1240px;
}

.container-small {
  max-width: 890px;
}

.container-litle {
  max-width: 840px;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.center {
  text-align: center;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

h2 {
  font-weight: initial;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 62px;
  height: 62px;
  z-index: 2;
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  display: none;
}

.hamburger {
  position: fixed;
  right: 60px;
  z-index: 9999999;
  top: 30px;
}

.hamburger .line {
  width: 38px;
  height: 4px;
  border-radius: 2rem;
  background-color: #cd405e;
  display: block;
  margin: 10px auto;
  transition: all 0.3s ease-in-out;
}

@keyframes myAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.menu {
  position: fixed;
  right: 0;
  z-index: 999999;
  background: #f4cfc7;
  top: 105px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.menu.active {
  opacity: 1;
  visibility: visible;
}
.menu ul {
  padding: 1rem 2rem;
}
.menu ul li {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.menu a {
  color: #cd405e;
  font-size: 18px;
  font-weight: 600;
}

.hamburger.is-active .line {
  background-color: #cd405e !important;
}

.hamburger.ativo .line {
  background-color: #343f41;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

.hamburger#hamburger-1.is-active .line:nth-child(1) {
  transform: translateY(18px) rotate(45deg);
}

.hamburger#hamburger-1.is-active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-49deg);
}

header {
  background-color: #f4cfc7;
  position: fixed;
  height: 125px;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 99;
}
header .grid {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
}
header .social {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
header .social a {
  display: block;
  height: 26px;
}
header .social a:first-child {
  background: url(../imgs/social.svg) 0 0 no-repeat;
  width: 26px;
}
header .social a:nth-child(2) {
  background: url(../imgs/social.svg) -40px 0 no-repeat;
  width: 26px;
}
header .social a:nth-child(3) {
  background: url(../imgs/social.svg) -80px 0 no-repeat;
  width: 38px;
}
header .social a:nth-child(4) {
  background: url(../imgs/social.svg) -130px 0 no-repeat;
  width: 40px;
}

#banner {
  margin-top: 125px;
  height: 520px;
}
#banner .swiper-slide {
  opacity: 0;
  /* Or use a class for the specific content */
  /* .swiper-slide > * { opacity: 0 !important; } */
}
#banner .swiper-slide.swiper-slide-active {
  opacity: 1;
}
#banner .bg {
  height: 520px;
}
#banner .tt {
  position: relative;
  z-index: 8;
  width: 440px;
  text-align: center;
  top: 30%;
}
#banner .tt img {
  width: 200px;
  margin-bottom: 1rem;
  animation-name: myAnimation;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
#banner .tt h2 {
  color: white;
  font-size: 50px;
  font-weight: 700;
  line-height: 44px;
}
#banner .swiper-pagination-bullet-active {
  background-color: #d9d9d9;
}
#banner .swiper-pagination-bullet-active:after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 10rem;
  border: 1px solid #d9d9d9;
  display: block;
  position: absolute;
  top: -3px;
  left: -3px;
}
#banner .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin-right: 14px;
}
#banner .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
#banner .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  height: 30px;
  padding-top: 16px;
  bottom: 40px;
}
#banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
#banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
#banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
#banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(1);
  background-color: #d9d9d9;
  position: relative;
}

h2 {
  font-size: 38px;
  font-weight: 700;
}

#sobre {
  padding-block: 100px;
  position: relative;
}
#sobre .grid {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
#sobre .text {
  color: #3141de;
}
#sobre .text p {
  margin-bottom: 1rem;
}
#sobre .text a {
  background-color: #66d7d1;
  border-radius: 36px;
  color: #3141de;
  text-transform: uppercase;
  padding-inline: 20px;
  padding-block: 20px;
  font-size: 20px;
  font-weight: 700;
  display: block;
  text-align: center;
  width: 92%;
}
#sobre .text h2 {
  color: #ff600e;
  font-weight: 700;
}
#sobre .box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: white;
  position: relative;
  z-index: 3;
  gap: 1rem;
}
#sobre .box .cc {
  background-repeat: no-repeat;
  text-align: center;
  font-size: 22px;
  width: 260px;
  height: 160px;
  background-size: cover;
}
#sobre .box .cc:nth-child(1) {
  width: 260px;
  height: 160px;
  padding-top: 3rem;
}
#sobre .box .cc:nth-child(1) h3 {
  font-size: 32px;
  font-weight: 700;
}
#sobre .box .cc:nth-child(1) p {
  margin: 0;
}
#sobre .box .cc:nth-child(2) {
  font-size: 30px;
  color: #3141de;
  font-weight: 700;
  width: 260px;
  height: 160px;
  padding-top: 3rem;
}
#sobre .box .cc:nth-child(3), #sobre .box .cc:nth-child(4), #sobre .box .cc:nth-child(5), #sobre .box .cc:nth-child(6) {
  padding-top: 3rem;
}
#sobre .box .cc:nth-child(3) strong, #sobre .box .cc:nth-child(4) strong, #sobre .box .cc:nth-child(5) strong, #sobre .box .cc:nth-child(6) strong {
  font-size: 30px;
  font-weight: 700;
}
#sobre .box .cc:nth-child(4), #sobre .box .cc:nth-child(5) {
  color: #3141de;
}
#sobre .box .cc:nth-child(5) {
  font-weight: 700;
}
#sobre .box .cc:nth-child(6) {
  font-weight: 700;
  height: 156px;
}
#sobre .missao_content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  align-items: center;
}
#sobre .missao_content .box {
  color: #3141de;
  display: block;
  padding-inline: 3rem;
}
#sobre .missao_content .box:nth-child(1):after, #sobre .missao_content .box:nth-child(1):before {
  content: "";
  display: block;
  width: 80px; /* ajuste conforme necessidade */
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-inline: auto;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='62.875' height='62.789' viewBox='0 0 62.875 62.789'><g transform='matrix(0.891,0.454,-0.454,0.891,129.791,278.647)'><path d='M-181.745-161.942q-2.872-4.344-5.312-8.952a39.764,39.764,0,0,0,8.1-2.859q1.169-.561,2.3-1.2c.331-.186.166-.625-.134-.72q-5.337-1.692-10.8-2.92a49.3,49.3,0,0,0,6.117-7.373c.174-.256.34-.517.509-.777a.939.939,0,0,0,.1-.159c.321-.5.636-1,.939-1.512.187-.315-.167-.635-.475-.556q-5.615,1.441-11.162,3.136a33.473,33.473,0,0,0,.5-9.423q-.126-1.421-.376-2.827a.4.4,0,0,0-.687-.244q-3.758,4.35-7.082,9.048a60.711,60.711,0,0,1-5.068-7.108c-.089-.147-.175-.3-.263-.443a.746.746,0,0,0-.218-.367c-.309-.524-.612-1.052-.905-1.585a.4.4,0,0,0-.455-.162.415.415,0,0,0-.272.4q-.379,5.978-.757,11.957l-10.47-4.254c-.336-.137-.757.22-.512.566q.55.778,1.083,1.567a.815.815,0,0,0,.159.235q2.448,3.634,4.556,7.482a58.9,58.9,0,0,0-8.233,2c-.3.1-.594.2-.89.3a.728.728,0,0,0-.152.051c-.474.163-.948.33-1.418.5a.4.4,0,0,0-.057.728l9.011,4.351,1.993.962a26.244,26.244,0,0,0-5.991,6.658,25.684,25.684,0,0,0-1.329,2.391.4.4,0,0,0,.475.556l9.151-2.741c.346-.1.691-.211,1.038-.311.194-.056.623-.208.76.021.12.2.031.585.019.8q-.035.636-.071,1.272-.131,2.349-.262,4.7-.147,2.643-.294,5.285a.4.4,0,0,0,.608.31,39.58,39.58,0,0,0,6.948-8.117q.471-.688.932-1.382a71.707,71.707,0,0,1,5.664,7.784q.733,1.165,1.421,2.358a.4.4,0,0,0,.72-.134,92.913,92.913,0,0,0,.469-10.006c0-.808.084-1.614.089-2.422a54.242,54.242,0,0,0,9.573,3.74.4.4,0,0,0,.412-.6' fill='%23ff600e'/></g></svg>");
  animation-name: myAnimation;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
#sobre .missao_content .box:nth-child(2):after, #sobre .missao_content .box:nth-child(2):before {
  content: "";
  display: block;
  width: 80px; /* ajuste conforme necessidade */
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-inline: auto;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='62.875' height='62.789' viewBox='0 0 62.875 62.789'><g transform='matrix(0.891,0.454,-0.454,0.891,129.791,278.647)'><path d='M-181.745-161.942q-2.872-4.344-5.312-8.952a39.764,39.764,0,0,0,8.1-2.859q1.169-.561,2.3-1.2c.331-.186.166-.625-.134-.72q-5.337-1.692-10.8-2.92a49.3,49.3,0,0,0,6.117-7.373c.174-.256.34-.517.509-.777a.939.939,0,0,0,.1-.159c.321-.5.636-1,.939-1.512.187-.315-.167-.635-.475-.556q-5.615,1.441-11.162,3.136a33.473,33.473,0,0,0,.5-9.423q-.126-1.421-.376-2.827a.4.4,0,0,0-.687-.244q-3.758,4.35-7.082,9.048a60.711,60.711,0,0,1-5.068-7.108c-.089-.147-.175-.3-.263-.443a.746.746,0,0,0-.218-.367c-.309-.524-.612-1.052-.905-1.585a.4.4,0,0,0-.455-.162.415.415,0,0,0-.272.4q-.379,5.978-.757,11.957l-10.47-4.254c-.336-.137-.757.22-.512.566q.55.778,1.083,1.567a.815.815,0,0,0,.159.235q2.448,3.634,4.556,7.482a58.9,58.9,0,0,0-8.233,2c-.3.1-.594.2-.89.3a.728.728,0,0,0-.152.051c-.474.163-.948.33-1.418.5a.4.4,0,0,0-.057.728l9.011,4.351,1.993.962a26.244,26.244,0,0,0-5.991,6.658,25.684,25.684,0,0,0-1.329,2.391.4.4,0,0,0,.475.556l9.151-2.741c.346-.1.691-.211,1.038-.311.194-.056.623-.208.76.021.12.2.031.585.019.8q-.035.636-.071,1.272-.131,2.349-.262,4.7-.147,2.643-.294,5.285a.4.4,0,0,0,.608.31,39.58,39.58,0,0,0,6.948-8.117q.471-.688.932-1.382a71.707,71.707,0,0,1,5.664,7.784q.733,1.165,1.421,2.358a.4.4,0,0,0,.72-.134,92.913,92.913,0,0,0,.469-10.006c0-.808.084-1.614.089-2.422a54.242,54.242,0,0,0,9.573,3.74.4.4,0,0,0,.412-.6' fill='%2366D7D1'/></g></svg>");
  animation-name: myAnimation;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
#sobre .missao_content .box:nth-child(3):after, #sobre .missao_content .box:nth-child(3):before {
  content: "";
  display: block;
  width: 80px; /* ajuste conforme necessidade */
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-inline: auto;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='62.875' height='62.789' viewBox='0 0 62.875 62.789'><g transform='matrix(0.891,0.454,-0.454,0.891,129.791,278.647)'><path d='M-181.745-161.942q-2.872-4.344-5.312-8.952a39.764,39.764,0,0,0,8.1-2.859q1.169-.561,2.3-1.2c.331-.186.166-.625-.134-.72q-5.337-1.692-10.8-2.92a49.3,49.3,0,0,0,6.117-7.373c.174-.256.34-.517.509-.777a.939.939,0,0,0,.1-.159c.321-.5.636-1,.939-1.512.187-.315-.167-.635-.475-.556q-5.615,1.441-11.162,3.136a33.473,33.473,0,0,0,.5-9.423q-.126-1.421-.376-2.827a.4.4,0,0,0-.687-.244q-3.758,4.35-7.082,9.048a60.711,60.711,0,0,1-5.068-7.108c-.089-.147-.175-.3-.263-.443a.746.746,0,0,0-.218-.367c-.309-.524-.612-1.052-.905-1.585a.4.4,0,0,0-.455-.162.415.415,0,0,0-.272.4q-.379,5.978-.757,11.957l-10.47-4.254c-.336-.137-.757.22-.512.566q.55.778,1.083,1.567a.815.815,0,0,0,.159.235q2.448,3.634,4.556,7.482a58.9,58.9,0,0,0-8.233,2c-.3.1-.594.2-.89.3a.728.728,0,0,0-.152.051c-.474.163-.948.33-1.418.5a.4.4,0,0,0-.057.728l9.011,4.351,1.993.962a26.244,26.244,0,0,0-5.991,6.658,25.684,25.684,0,0,0-1.329,2.391.4.4,0,0,0,.475.556l9.151-2.741c.346-.1.691-.211,1.038-.311.194-.056.623-.208.76.021.12.2.031.585.019.8q-.035.636-.071,1.272-.131,2.349-.262,4.7-.147,2.643-.294,5.285a.4.4,0,0,0,.608.31,39.58,39.58,0,0,0,6.948-8.117q.471-.688.932-1.382a71.707,71.707,0,0,1,5.664,7.784q.733,1.165,1.421,2.358a.4.4,0,0,0,.72-.134,92.913,92.913,0,0,0,.469-10.006c0-.808.084-1.614.089-2.422a54.242,54.242,0,0,0,9.573,3.74.4.4,0,0,0,.412-.6' fill='%23EACE2D'/></g></svg>");
  animation-name: myAnimation;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
#sobre .ct {
  padding-right: 4rem;
}

#musica {
  background-color: #ff600e;
  padding-block: 100px;
}
#musica .grid {
  grid-template-columns: 1fr 1fr 1fr;
}
#musica h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}
#musica span {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}
#musica a {
  color: white;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  background-color: #3141de;
  padding-inline: 2rem;
  padding-block: 15px;
  margin-top: 50px;
}

#orquestra {
  background: url(../imgs/bg_orquestra.jpg) left top no-repeat;
  min-height: 768px;
  display: flex;
  align-items: center;
  position: relative;
}
#orquestra:after {
  content: "";
  position: absolute;
  right: 0;
  top: -13rem;
  background: url(../imgs/ss3.svg) no-repeat;
  width: 271px;
  height: 456px;
}
#orquestra .text {
  padding-left: 50%;
}
#orquestra .text h2 {
  color: #cc415e;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 2rem;
}
#orquestra .text h2 strong {
  font-size: 25px;
  font-weight: 500;
  color: #ff600e;
}
#orquestra a {
  color: #3141de;
  font-size: 20px;
  background-color: #eace2d;
  border-radius: 36px;
  text-transform: uppercase;
  font-weight: 700;
  padding-inline: 1rem;
  padding-block: 15px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-top: 3rem;
}

#banner_interno {
  height: 400px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  margin-top: 100px;
}
@media (min-width: 1440px) {
  #banner_interno {
    height: 495px;
  }
}
#banner_interno.noticias:after {
  content: "";
  position: absolute;
  left: 5rem;
  bottom: -4rem;
  background: url(../imgs/ct6.svg) no-repeat;
  width: 236px;
  height: 236px;
  z-index: -1;
  animation-name: myAnimation;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}
#banner_interno.noticias .tt {
  position: absolute;
  background-color: #cc415e;
  width: 296px;
  height: 166px;
  bottom: -6rem;
  left: 12rem;
  border-radius: 100rem 100rem 8rem 8rem;
  padding: 0 5rem;
  display: flex;
  align-items: center;
}
#banner_interno.noticias .tt h2 {
  color: white;
}
#banner_interno.patrocine:after {
  content: "";
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  background: url(../imgs/ct9.svg) no-repeat;
  width: 236px;
  height: 236px;
}
#banner_interno.patrocine .tt {
  position: absolute;
  background-color: #66d7d1;
  width: 506px;
  height: 241px;
  bottom: -6rem;
  left: 5rem;
  border-radius: 0 100rem 100rem 0;
  padding: 0 5rem;
  display: flex;
  align-items: center;
}
#banner_interno.patrocine .tt h2 {
  color: #3141de;
}
#banner_interno.transparencia .tt {
  position: absolute;
  background-color: #ff600e;
  width: 439px;
  height: 268px;
  bottom: -6rem;
  left: 5rem;
  border-radius: 10px 30rem 10px 16rem;
  padding: 0 5rem;
  display: flex;
  align-items: center;
}
#banner_interno.transparencia .tt h2 {
  color: white;
}
#banner_interno.transparencia:after {
  content: "";
  display: block;
  left: 0;
  top: 14rem;
  background: url(../imgs/ct15.svg) no-repeat center;
  width: 436px;
  height: 435px;
  margin-top: 5rem;
  position: absolute;
  left: -11rem;
  z-index: -1;
  animation-name: myAnimation;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}

.page-template-musical #banner_interno .tt {
  position: absolute;
  background-color: #eace2d;
  width: 506px;
  height: 240px;
  bottom: -6rem;
  left: 6rem;
  border-radius: 20px 10rem 10rem 20px;
  padding: 0 5rem;
  display: flex;
  align-items: center;
}
.page-template-musical #banner_interno:after {
  content: "";
  position: absolute;
  left: 0rem;
  bottom: 2rem;
  background: url(../imgs/ct.svg) no-repeat;
  width: 236px;
  height: 236px;
  animation-name: myAnimation;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}

#instagram {
  background: #eace2d;
  padding-block: 90px;
}
#instagram h2 {
  text-align: center;
  color: #3141de;
}

:root {
  --cor-titulo: #4361ee; /* azul do título */
  --cor-bloco: #d1445b; /* vermelho/rosa do balão */
  --cor-detalhe: #65d5c7; /* verde água do detalhe */
  --branco: #ffffff;
}

.sec-depo {
  padding: 56px 0 24px;
}

.sec-depo .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.sec-depo .sec-title {
  text-align: center;
  font-family: system-ui, -apple-system, "Figtree", Arial, sans-serif;
  font-weight: 800;
  color: var(--cor-titulo);
  font-size: clamp(24px, 4vw, 40px);
  margin-bottom: 22px;
}

/* NAV SETAS (triangulinhos) */
.sec-depo .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.sec-depo .prev {
  left: -4rem;
}

.sec-depo .next {
  right: -4rem;
}

.sec-depo .prev:before {
  border-right: 18px solid #3f3ced; /* roxinho */
}

.sec-depo .next:before {
  border-left: 18px solid #3f3ced;
  margin-left: auto;
}

/* CARD */
.card-depo {
  position: relative;
  min-height: 493px;
  background: url(../imgs/bg_dep.svg) no-repeat;
  border-radius: 36px;
  padding: clamp(20px, 3.2vw, 40px);
  color: var(--branco);
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  align-items: center;
  overflow: hidden;
  font-size: 22px;
}
.card-depo svg {
  position: absolute;
  right: 10rem;
  top: 16rem;
}

.card-copy {
  position: relative;
  z-index: 1;
  padding-right: clamp(12px, 2vw, 24px);
}
.card-copy strong {
  margin-top: 3rem;
  display: block;
}

.card-copy .texto {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  margin: 0 0 18px;
}

.card-copy .autor {
  font-weight: 700;
  margin: 0;
}

/* FOTO à direita com máscara oval */
.card-foto {
  position: relative;
  z-index: 1;
  margin: 0;
  justify-self: end;
  overflow: hidden;
}

.card-foto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* detalhe “estrela” verde-água */
.detalhe {
  position: absolute;
  right: clamp(80px, 16vw, 140px);
  bottom: -16px;
  transform: rotate(8deg);
}

.detalhe path {
  fill: var(--cor-detalhe);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .card-depo {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }
  .card-foto {
    order: 2;
    margin-top: 18px;
    justify-self: center;
    width: min(80vw, 420px);
    height: min(52vw, 300px);
  }
  .card-depo:after {
    /* remove “mordida” no mobile para não cortar o texto */
    -webkit-mask: none;
    mask: none;
  }
  .sec-depo .prev {
    left: 0;
  }
  .sec-depo .next {
    right: 0;
  }
}
:root {
  --cor-titulo: #ff6400;
  --cor-texto: #2e3a8c;
  --cor-btn: #eace2d;
}

#sec-patrocine {
  position: relative;
  overflow: hidden;
  /* altura mínima para destacar */
  min-height: 768px;
  padding-top: 100px;
  /* BG IMAGE PRINCIPAL */
  background: url("../imgs/bg_praa.png") no-repeat;
  background-position: 322% 60px;
  background-size: contain;
}
@media (min-width: 1480px) {
  #sec-patrocine {
    background: url("../imgs/bg_praa.png") no-repeat 222% center/contain;
  }
}
#sec-patrocine img.mob {
  display: none;
}

/* curva branca sobre a imagem */
#sec-patrocine::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 377px;
  height: 218px;
  background: #fff;
  background: url(../imgs/ss1.svg) no-repeat;
  z-index: 1;
}

#sec-patrocine .container {
  width: min(1200px, 90%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#sec-patrocine .content {
  max-width: 560px;
  padding: 0 0;
}

#sec-patrocine h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--cor-titulo);
  margin-bottom: 2rem;
}

#sec-patrocine h2 span {
  color: var(--cor-titulo);
}

#sec-patrocine .texto {
  color: var(--cor-texto);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  margin-bottom: 14px;
}

#sec-patrocine .btn-destaque {
  display: inline-block;
  font-size: 20px;
  margin-top: 16px;
  padding: 14px 28px;
  border-radius: 40px;
  background: var(--cor-btn);
  color: #3240de;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 4rem;
}

#sec-patrocine .btn-destaque:hover {
  background: #ffe44d;
  transform: scale(1.05);
}

/* responsivo */
@media (max-width: 900px) {
  #sec-patrocine {
    background-position: center top;
    background-size: cover;
  }
  #sec-patrocine::after {
    width: 100%;
    clip-path: none;
    right: auto;
    left: 0;
    height: 50%;
    top: 50%;
  }
  #sec-patrocine .content {
    max-width: 100%;
    text-align: center;
  }
}
footer {
  color: white;
  /* ícones "pill" no estilo do print (contorno branco arredondado) */
  /* SVG embutido via data-URI para não depender de libs */
}
footer :root {
  --azul-fundo: #3342cf; /* azul do bloco */
  --branco: #fff;
}
footer .sec-horarios {
  background-color: #3141de;
}
footer a {
  color: white;
}
footer h2 {
  text-align: center;
}
footer .sec-horarios {
  color: var(--branco);
  padding: 72px 0;
}
footer .sec-horarios .container {
  width: min(1200px, 92%);
  margin: 0 auto;
}
footer .sec-horarios h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin: 0 0 40px;
}
footer .grid-locais {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 60px);
}
footer .local h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  margin: 0 0 10px;
}
footer .local p {
  margin: 8px 0;
  line-height: 1.6;
  font-size: clamp(15px, 1.3vw, 18px);
}
footer .social {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 36px;
}
footer .ico {
  width: 48px;
  height: 48px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
footer .ico:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.12);
}
footer .instagram {
  background-image: url("../imgs/inst.svg");
}
footer .whatsapp {
  background-image: url("../imgs/whats.svg");
}
footer .youtube {
  background-image: url("../imgs/you.svg");
}
footer .email {
  background-image: url("../imgs/email.svg");
}
@media (max-width: 980px) {
  footer .grid-locais {
    grid-template-columns: 1fr;
  }
  footer .local {
    max-width: 680px;
    margin: 0 auto;
  }
  footer .social {
    margin-top: 28px;
  }
}
footer .logos {
  text-align: center;
  padding: 45px 0;
}

.sec-orquestra {
  position: relative;
  padding: clamp(32px, 5vw, 64px) 0;
}

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

.sec-orquestra__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

@media (max-width: 900px) {
  .sec-orquestra__grid {
    grid-template-columns: 1fr;
  }
}
.sec-orquestra__media {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
}

.sec-orquestra__media img {
  width: 100%;
  height: auto;
  display: block;
}

.sec-orquestra__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  color: #ff6a22; /* laranja do exemplo */
  font-weight: 800;
}

.sec-orquestra__subtitle {
  margin: 0 0 20px;
  font-size: clamp(16px, 2.1vw, 22px);
  color: #ff6a22;
  font-weight: 700;
}

.sec-orquestra__text {
  margin-bottom: 100px;
}

/* Ícone decorativo (florzinha) */
.sec-orquestra__ornament {
  position: absolute;
  right: 14px;
  bottom: -10px;
  display: inline-block;
  transform: rotate(0.0001deg); /* evita blur em alguns browsers */
}

.sec-orquestra__ornament svg {
  width: min(66px, 12vw);
  height: auto;
}

/* Versão alternada (imagem à direita) */
.sec-orquestra--alt .sec-orquestra__grid {
  grid-template-columns: 1fr 1.05fr;
}

.sec-orquestra--alt .sec-orquestra__media {
  order: 2;
}

.sec-orquestra--alt .sec-orquestra__content {
  order: 1;
}

.sec-orquestra--alt .sec-orquestra__ornament {
  right: auto;
  left: 14px;
}

.page-template-musical .sec-orquestra__text {
  position: relative;
}
.page-template-musical .sec-orquestra__text:after {
  content: "";
  display: block;
  right: -7rem;
  bottom: 0;
  background: url(../imgs/ct1.svg) no-repeat right;
  width: 100%;
  height: 66px;
  margin-top: 5rem;
}
.page-template-musical h3 {
  font-size: 30px;
  color: #ff600e;
}
.page-template-musical h2 {
  font-size: 38px;
  color: #cc415e;
}
.page-template-musical .sec-orquestra__text {
  color: #3141de !important;
}
.page-template-musical .sec-orquestra__text img {
  width: 100%;
  margin-block: 35px;
}

#banner_interno {
  margin-bottom: 120px;
}
#banner_interno:after {
  content: "";
  position: absolute;
  left: -7rem;
  bottom: 2rem;
  background: url(../imgs/ct.svg) no-repeat;
  width: 236px;
  height: 236px;
}
#banner_interno .tt {
  position: absolute;
  background-color: #eace2d;
  width: 506px;
  height: 240px;
  bottom: -6rem;
  left: 0;
  border-radius: 0 10rem 10rem 0;
  padding: 0 5rem;
  display: flex;
  align-items: center;
}
#banner_interno .tt h2 {
  color: #3141de;
  font-size: 40px;
}

.page-template-quem-somos #banner_interno .t,
.page-template-quem-somos #banner_interno .t2 {
  position: absolute;
  left: 0;
}
.page-template-quem-somos #banner_interno .t {
  left: -9rem;
  z-index: -1;
  top: 12rem;
}
.page-template-quem-somos #banner_interno .t2 {
  top: 0;
  animation-name: myAnimation;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  left: 600px;
  transform: translate(50%, -50%);
  top: 350px;
  z-index: -1;
}
.page-template-quem-somos #banner_interno .tt {
  background-color: #cc415e;
  width: 439px;
  border-radius: 15rem 1rem 20rem;
  padding: 4rem;
  left: 7rem;
}
.page-template-quem-somos #banner_interno .tt h2 {
  color: white;
}
.page-template-quem-somos #banner_interno:after {
  content: "";
  position: absolute;
  left: -7rem;
  bottom: 2rem;
  background: url(../imgs/ct.svg) no-repeat;
  width: 236px;
  display: none;
  height: 236px;
}
.page-template-quem-somos h2 {
  color: #ff600e;
  font-size: 30px;
}
.page-template-quem-somos #sobre {
  padding-block: 40px;
}
.page-template-quem-somos #rr img {
  margin-block: 4rem;
}
.page-template-quem-somos #pp {
  margin-top: 20rem;
  margin-bottom: 4rem;
  position: relative;
}
.page-template-quem-somos #pp::after {
  content: "";
  width: 885px;
  height: 700px;
  background: url(../imgs/ct2.svg) no-repeat;
  display: block;
  position: absolute;
  right: -8rem;
  top: -13rem;
  z-index: -1;
  background-size: contain;
  animation-name: myAnimation;
  animation-duration: 6s;
  animation-iteration-count: 2;
}
.page-template-quem-somos #pp .box {
  color: white;
  width: 941px;
  height: auto;
  border-radius: 10px 23rem 30px 19rem;
  background-color: #ff600e;
  position: relative;
  padding-top: 7rem;
  padding-inline: 13rem;
  padding-bottom: 2rem;
}
.page-template-quem-somos #pp .box img {
  position: absolute;
  top: -16rem;
  left: -4rem;
}
.page-template-quem-somos #pp .box h2 {
  font-size: 30px;
  color: white;
}

.page-template-projetos #banner_interno:after {
  display: none;
}
.page-template-projetos #banner_interno .t {
  left: -5rem;
  z-index: -1;
  top: 19rem;
  position: absolute;
  animation-name: myAnimation;
  animation-duration: 6s;
  animation-iteration-count: 2;
}
.page-template-projetos #banner_interno .tt {
  position: absolute;
  background-color: #eace2d;
  width: 506px;
  height: 240px;
  bottom: -6rem;
  left: 8rem;
  border-radius: 1rem 10rem 10rem 1rem;
  padding: 0 5rem;
  display: flex;
  align-items: center;
}
.page-template-projetos .intro h2 {
  color: #ff600e;
}
.page-template-projetos h2 {
  font-size: 38px;
  color: #cc415e;
}
.page-template-projetos h3 {
  font-size: 30px;
  color: #ff600e;
}
.page-template-projetos h4 {
  font-size: 38px;
  margin-bottom: 2rem;
}
.page-template-projetos .sec-orquestra__text img {
  width: 100%;
  margin-block: 35px;
}
.page-template-projetos .sec-orquestra__text:after {
  content: "";
  display: block;
  right: -7rem;
  bottom: 0;
  background: url(../imgs/ct4.svg) no-repeat center;
  width: 100%;
  height: 66px;
  margin-top: 5rem;
  animation-name: myAnimation;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
.page-template-projetos .sec-orquestra__text:last-child::after {
  display: none;
}

#post {
  margin-top: 11rem;
}
#post .evento-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  background-color: #f26a21;
  border-radius: 32px;
  line-height: 11px;
}
#post .evento-item:after {
  content: "";
  display: block;
  right: -7rem;
  bottom: -2rem;
  background: url(../imgs/ct7.svg) no-repeat center;
  width: 110px;
  height: 110px;
  margin-top: 5rem;
  position: absolute;
  left: -46px;
  z-index: -1;
}
#post .evento-item .sec-orquestra__t .evento-thumb {
  flex: 1;
}
#post .evento-item .sec-orquestra__t .evento-thumb img {
  width: 100%;
  height: 311px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}
#post .evento-item .evento-conteudo {
  flex: 1;
  background-color: #f26a21;
  color: #fff;
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#post .evento-item .evento-conteudo .evento-data {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  text-align: end;
}
#post .evento-item .evento-conteudo .evento-titulo {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
#post .evento-item .evento-conteudo .evento-excerpt {
  font-size: 1rem;
  line-height: 1.5;
}
#post .evento-item:nth-child(2n):after {
  content: "";
  display: block;
  right: -3rem;
  bottom: -2rem;
  background: url(../imgs/ct7.svg) no-repeat center;
  width: 110px;
  height: 110px;
  margin-top: 5rem;
  position: absolute;
  left: initial;
  z-index: -1;
}
@media (max-width: 768px) {
  #post .evento-item {
    flex-direction: column;
  }
  #post .evento-item .evento-thumb img {
    border-radius: 12px 12px 0 0;
  }
  #post .evento-item .evento-conteudo {
    border-radius: 0 0 12px 12px;
  }
}

#banner_interno.blog:after {
  content: "";
  position: absolute;
  left: -4rem;
  bottom: -3rem;
  background: url(../imgs/ct8.svg) no-repeat;
  width: 426px;
  height: 429px;
  z-index: -1;
}

#post_int strong {
  color: #ff600e;
}
#post_int a {
  text-decoration: underline;
}
#post_int h1 {
  color: #cc415e;
  font-size: 38px;
  margin-bottom: 2rem;
}
#post_int h2 {
  color: #ff600e;
  font-size: 30px;
  margin-bottom: 4rem;
}
#post_int h3 {
  color: #cc415e;
  font-size: 16px;
  margin-top: 4rem;
}
#post_int h5 {
  font-size: 16px;
  color: #cc415e;
}

#patrocine .ll {
  color: black;
  text-decoration: underline;
  font-weight: 600;
  display: inline-block;
}
#patrocine .bb {
  width: 612px;
  height: 344px;
  color: #3141de;
  background-color: #eace2d;
  border-radius: 10rem 100rem 10px 50rem;
  padding: 5rem 6rem 0 6rem;
  margin-inline: auto;
  font-size: 25px;
  line-height: 39px;
}
#patrocine .bb h2 {
  font-size: 30px;
  margin-bottom: 1rem;
}
#patrocine h3 {
  font-size: 30px;
  margin-block: 2rem;
}
#patrocine ul {
  padding-left: 3rem;
  margin-block: 2rem;
}
#patrocine ul li {
  background: url(../imgs/li.svg) no-repeat left;
  padding-left: 1.5rem;
  line-height: 32px;
}
#patrocine .box_d {
  margin-block: 5rem;
  width: 408px;
  height: 246px;
  background-color: #eace2d;
  padding-top: 5rem;
  margin-inline: auto;
  border-radius: 100rem 100rem 10px 10px;
  position: relative;
}
#patrocine .box_d:after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -3rem;
  background: url(../imgs/ct12.svg) no-repeat;
  width: 211px;
  height: 211px;
  z-index: -1;
  animation-name: myAnimation;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
#patrocine .box_d h3 {
  font-size: 30px;
  text-align: center;
}
#patrocine .tt h3 {
  color: #cc415e;
  font-size: 38px;
}
#patrocine .campos {
  margin-top: 4rem;
}
#patrocine .campos .text h2 {
  color: #cc415e;
}
#patrocine .campos .img img {
  width: 301px;
  height: 354px;
  border-radius: 64px;
  -o-object-fit: cover;
     object-fit: cover;
}
#patrocine .campos .box {
  display: flex;
  gap: 4rem;
  margin-block: 5rem;
}
#patrocine .campos .cc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  row-gap: 3rem;
}
#patrocine .campos .cc .bbt {
  color: white;
  padding: 0;
  width: 290px;
  min-height: 159px;
  text-align: center;
  font-size: 25px;
  position: relative;
}
#patrocine .campos .cc .bbt h3 {
  font-size: 35px;
  display: block;
  margin-bottom: 0;
}
#patrocine .campos .cc .bbt p {
  margin: 0;
}
#patrocine .campos .cc .bbt:nth-child(1) {
  background-color: #3141de;
  border-radius: 0 30rem 30rem 0;
}
#patrocine .campos .cc .bbt:nth-child(2) {
  background-color: #eace2d;
  border-radius: 10px 30rem 10px 30rem;
}
#patrocine .campos .cc .bbt:nth-child(2):after {
  content: "";
  position: absolute;
  right: -1rem;
  top: -3rem;
  background: url(../imgs/ct13.svg) no-repeat;
  width: 192px;
  height: 193px;
  z-index: -1;
}
#patrocine .campos .cc .bbt:nth-child(3) {
  background-color: #cc415e;
  border-radius: 30rem 30rem 10px 10px;
  font-size: 18px;
  padding-inline: 2rem;
}
#patrocine .campos .cc .bbt:nth-child(3):after {
  content: "";
  position: absolute;
  left: 0rem;
  top: 0rem;
  background: url(../imgs/ct14.svg) no-repeat;
  width: 82px;
  height: 82px;
  z-index: -1;
}
#patrocine .campos .cc .bbt:nth-child(4) {
  background-color: #66d7d1;
  border-radius: 0 30rem 30rem 0;
}

@media (max-width: 770px) {
  .logo img {
    width: 200px;
  }
  .page-template-projetos h2,
  .page-template-musical h2 {
    font-size: 28px;
  }
  .page-template-musical .sec-orquestra__text:after {
    background: url(../imgs/ct1.svg) no-repeat center;
    margin-top: 0;
  }
  footer .sec-horarios h2 {
    color: white;
  }
  .sec-orquestra__text {
    margin-bottom: 50px;
  }
  #sobre .missao_content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .page-template-quem-somos #rr img {
    width: 100%;
  }
  .page-template-quem-somos #pp .box img {
    width: 100%;
    left: 0;
    top: -15rem;
  }
  .page-template-quem-somos #pp .box {
    color: white;
    width: 100%;
    height: auto;
    border-radius: 0 0 30px 2rem;
    background-color: #ff600e;
    position: relative;
    padding-top: 1rem;
    padding-inline: 2rem;
    padding-bottom: 2rem;
  }
  #sobre .grid {
    grid-template-columns: 1fr;
  }
  #sobre .box {
    grid-template-columns: 1fr;
    justify-content: center;
    margin-inline: auto;
  }
  #musica .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  #orquestra:after {
    display: none;
  }
  #orquestra .text {
    background: white;
    padding: 2rem;
  }
  #orquestra a {
    width: 100%;
    font-size: 16px;
    text-align: center;
  }
  .card-depo svg {
    display: none;
  }
  .sec-depo .nav {
    top: 60%;
  }
  .card-depo {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
    height: auto;
    font-size: 14px;
  }
  #sec-patrocine .content {
    background-color: white;
    padding: 2rem;
  }
  #sec-patrocine .container {
    width: 100%;
  }
  #sec-patrocine .btn-destaque {
    font-size: 14px;
  }
  .slide-1:after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    top: initial !important;
    height: 200px !important;
    width: 100% !important;
    bottom: 0;
  }
  #banner .tt h2 {
    font-size: 26px;
  }
  header .grid {
    grid-template-columns: 1fr;
    padding-block: 1rem;
  }
  header .social {
    display: none;
  }
  .hamburger {
    position: fixed;
    right: 1rem;
    z-index: 9999999;
    top: 1rem;
  }
  #post .evento-item .evento-thumb img {
    border-radius: 12px 12px 0 0;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #post_int h1 {
    font-size: 28px;
  }
  #post_int h2 {
    font-size: 24px;
  }
  #patrocine .bb {
    width: 100%;
    height: auto;
    color: #3141de;
    background-color: #eace2d;
    border-radius: 10rem 6rem 10px 5rem;
    padding: 4rem 1rem 2rem 3rem;
    margin-inline: auto;
    font-size: 18px;
    line-height: 39px;
  }
  #patrocine .bb h2 {
    font-size: 28px;
  }
  h2 {
    font-size: 28px;
  }
  #patrocine ul {
    padding-left: 0;
  }
  #patrocine ul li {
    background: url(../imgs/li.svg) no-repeat left 7px;
  }
  #patrocine h3 {
    font-size: 24px;
  }
  #patrocine .box_d {
    width: 100%;
  }
  #patrocine .campos .box {
    display: flex;
    gap: 4rem;
    margin-block: 5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  #patrocine .campos .cc {
    grid-template-columns: 1fr;
  }
  #sec-patrocine img.mob {
    display: block;
  }
}
#orquestra img.mob {
  display: none;
}

.card-foto.mob {
  display: none;
}

@media (max-width: 770px) {
  #sobre .box {
    grid-template-columns: auto auto;
    justify-content: center;
    margin-inline: auto;
  }
  #sobre .box .cc:nth-child(1) {
    width: 170px;
    height: 114px;
    padding-top: 2rem;
    background-size: contain;
    padding-right: 1rem;
  }
  #sobre .box .cc:nth-child(1) h3 {
    font-size: 18px;
    font-weight: 700;
  }
  #sobre .box .cc:nth-child(2) {
    font-size: 18px;
    color: #3141de;
    font-weight: 700;
    width: 170px;
    height: 114px;
    padding-top: 1rem;
    background-size: contain;
  }
  #sobre .box .cc:nth-child(3),
  #sobre .box .cc:nth-child(4),
  #sobre .box .cc:nth-child(5),
  #sobre .box .cc:nth-child(6) {
    padding-top: 1rem;
  }
  #sobre .box .cc:nth-child(4) p {
    padding-right: 1rem;
  }
  #sobre .box .cc {
    background-repeat: no-repeat;
    text-align: center;
    font-size: 18px;
    width: 170px;
    height: 133px;
    background-size: contain;
  }
  #sobre .box .cc:nth-child(3) strong,
  #sobre .box .cc:nth-child(4) strong,
  #sobre .box .cc:nth-child(5) strong,
  #sobre .box .cc:nth-child(6) strong {
    font-size: 18px;
    font-weight: 700;
  }
  #sobre .ct {
    padding-right: 0;
    text-align: center;
  }
  #sobre .text a {
    width: 100%;
    font-size: 12px;
  }
  #sobre {
    padding-block: 2rem;
    position: relative;
  }
  #banner .bg {
    height: 283px;
  }
  #banner .tt {
    position: relative;
    z-index: 8;
    width: 170px;
    text-align: center;
    top: 8rem;
  }
  #banner .tt h2 {
    font-size: 20px;
    line-height: normal;
  }
  .slide-1:after,
  .slide-2:after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    top: initial !important;
    height: 178px !important;
    width: 116% !important;
    bottom: 0;
  }
  #banner .tt img {
    width: 80px;
    margin-bottom: 0;
  }
  #banner {
    margin-top: 125px;
    height: 293px;
  }
  #musica .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  #musica .grid img {
    width: 100%;
  }
  #orquestra {
    background: transparent;
    display: block;
    line-height: 0;
    min-height: auto;
    margin-top: 3rem;
  }
  #orquestra img.mob {
    display: block;
    margin-top: 2rem;
  }
  #orquestra .text {
    background: white;
    padding: 0;
    text-align: center;
  }
  .card-depo {
    background: #cc425e;
  }
  .card-depo .card-foto {
    display: none;
  }
  .card-foto.mob {
    display: block;
  }
  .card-depo {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
    height: auto;
    font-size: 12px;
    height: auto;
    min-height: auto;
    margin-top: -2rem;
    margin-inline: 1rem;
    padding-top: 2rem;
  }
  .card-depo p {
    line-height: 20px;
  }
  .card-foto {
    margin-left: 2rem;
    order: 2;
    margin-top: 18px;
    justify-self: start;
    width: 220px;
    height: 137px;
  }
  .sec-depo .nav svg {
    width: 23px;
  }
  #sec-patrocine {
    background: transparent;
    padding-top: 0 !important;
  }
  #sec-patrocine .content {
    background-color: transparent;
    padding: 2rem;
  }
  #sec-patrocine {
    margin-top: 0;
    height: auto;
  }
  #sec-patrocine .content {
    padding: 0;
  }
  #sec-patrocine .btn-destaque {
    display: inline-block;
    font-size: 12px;
    margin-top: 16px;
    padding: 14px 28px;
    border-radius: 40px;
    background: var(--cor-btn);
    color: #3240de;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 0rem;
    margin-bottom: 3rem;
  }
  #sec-patrocine::after {
    width: 100px;
    clip-path: none;
    right: auto;
    left: 23px;
    height: 15%;
    top: 60%;
    background-size: contain;
    z-index: -1;
  }
  #sec-patrocine {
    min-height: auto;
    line-height: 0;
  }
  footer .grid-locais {
    text-align: center;
  }
  #banner_interno.patrocine:after {
    content: "";
    position: absolute;
    left: 2rem;
    bottom: 3rem;
    background: url(../imgs/ct9.svg) no-repeat;
    width: 100px;
    height: 100px;
    background-size: contain;
  }
  #banner_interno.patrocine .tt {
    position: absolute;
    background-color: #66d7d1;
    width: 300px;
    height: 129px;
    bottom: -2rem;
    left: 5rem;
    border-radius: 0 100rem 100rem 0;
    padding: 0 2rem;
    display: flex;
    align-items: center;
  }
  #banner_interno .tt h2 {
    color: #3141de;
    font-size: 21px;
  }
  #banner_interno {
    height: 400px;
    margin-top: 7rem;
    margin-bottom: 5rem;
  }
  .page-template-quem-somos #banner_interno .t {
    left: -2rem;
    z-index: -1;
    top: 15rem;
    width: 200px;
    height: 200px;
  }
  .page-template-quem-somos #banner_interno .t svg {
    width: 200px;
    height: -moz-max-content;
    height: max-content;
  }
  .page-template-projetos #banner_interno .tt {
    background-color: #eace2d !important;
  }
  .page-template-projetos #banner_interno .t {
    left: -1rem;
    z-index: -1;
    top: 17rem;
    position: absolute;
    animation-name: myAnimation;
    animation-duration: 6s;
    animation-iteration-count: 2;
    width: 200px;
  }
  .page-template-projetos #banner_interno .t svg {
    width: 180px;
    height: -moz-max-content;
    height: max-content;
  }
  #banner_interno.noticias .tt h2 {
    color: white;
    font-size: 33px;
  }
  #banner_interno.noticias .tt {
    position: absolute;
    background-color: #cc415e;
    width: 290px;
    height: 166px;
    bottom: -3rem;
    left: 5rem;
    border-radius: 100rem 100rem 8rem 8rem;
    padding: 0 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #banner_interno.noticias:after {
    content: "";
    position: absolute;
    left: -1rem;
    bottom: -4rem;
    background: url(../imgs/ct6.svg) no-repeat;
    width: 236px;
    height: 236px;
    z-index: -1;
    animation-name: myAnimation;
    animation-duration: 6s;
    animation-iteration-count: infinite;
  }
  #banner_interno.noticias:after {
    content: "";
    position: absolute;
    left: -1rem;
    bottom: 0rem;
    background: url(../imgs/ct6.svg) no-repeat;
    width: 150px;
    height: 150px;
    z-index: -1;
    animation-name: myAnimation;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    background-size: cover;
  }
}/*# sourceMappingURL=main.css.map */