/* =========================================================
   LA MÚSICA — styles.css (LEAN OPTIMIZED)
   - Mantém layout/funcionalidade
   - Remove redundâncias/overrides repetidos
   - Consolida media queries e regras duplicadas
   ========================================================= */

/* =========================================================
   1) VARIÁVEIS
   ========================================================= */
:root{
  --bg:#000;
  --text:#fff;
  --muted:rgba(255,255,255,.78);

  --accent:#E2725B;
  --accent-2:#fad86a;

  --wppcolor:#25d365da;
  --wppcolor2:#25D366;

  --light-bg:#f4f1ed;
  --light-surface:#fff;
  --light-text:#101014;
  --light-muted:rgba(16,16,20,.72);

  --stroke:rgba(255,255,255,.12);
  --radius:22px;
  --container:1400px;
  --topbar-h:74px;

  --section-pad-x:20px;
  --section-pad-bottom:64px;

  --smoke-opacity:.32;
  --smoke-blur:90px;

  --shadow-light:0 10px 30px rgba(0,0,0,.06);
  --shadow-mid:0 14px 34px rgba(0,0,0,.08);
  --shadow-heavy:0 22px 60px rgba(0,0,0,.12);

  --t-fast:.15s ease;
  --t-mid:.18s ease;
}

/* =========================================================
   2) RESET / BASE
   ========================================================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
.container{ max-width:var(--container); margin:0 auto; }

button,.btn,input[type="button"],input[type="submit"]{ cursor:pointer; }

/* =========================================================
   3) TOPBAR / MENU
   ========================================================= */
.topbar{
  position:fixed;
  top:0; left:0; right:0;
  height:var(--topbar-h);
  z-index:50;
  background:rgba(0,0,0,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.topbar__container{
  max-width:var(--container);
  margin:0 auto;
  height:100%;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.nav{ display:flex; align-items:center; gap:16px; }
.nav__link{
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.nav__link:hover{
  background:var(--wppcolor2);
  color:rgba(255,255,255,.95);
  transform: translateY(-1px);
}
.nav__link--cta{
  /* antes estava "linear-gradient(deg,...)" (inválido). Mantém o visual esperado */
  background: linear-gradient(180deg, var(--wppcolor), var(--wppcolor2));
  color:#fff;
  padding:10px 14px;
}

.nav__toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  height:2px;
  margin:6px 10px;
  background:rgba(255,255,255,.9);
  border-radius:2px;
}

/* menu mobile */
.nav__mobile{
  display:none;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav__m{
  display:block;
  padding:14px 20px;
  text-decoration:none;
  color:rgba(255,255,255,.88);
  border-top:1px solid rgba(255,255,255,.06);
  font-weight:600;
}
.nav__m--cta{ background:rgba(255,255,255,.06); }

.nav{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
}

/* barrinha */
.nav__indicator{
  position:absolute;
  bottom:4px;
  height:2px;
  background:#fff;
  border-radius:2px;
  width:0;
  transform: translateX(0);
  transition:
    transform 0.35s cubic-bezier(.4,0,.2,1),
    width 0.35s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}

/* links */
.nav__link{
  position:relative;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:10px 10px 14px;
  border-radius:12px;
}

/* CTA não recebe barrinha */
.nav__link--cta{
  background: linear-gradient(180deg, var(--wppcolor), var(--wppcolor2));
  color:#fff;
}
.hero__highlight{
  color: var(--accent);
  text-shadow: 0 0 12px color-mix(in srgb, var(--accent), transparent 60%);
}

/* Mobile primeiro */
.br-desktop{
  display:none;
}

/* Desktop */
@media (min-width: 1024px){
  .br-desktop{
    display:inline;
  }
}



/* =========================================================
   4) BRAND
   ========================================================= */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand__logo-img{ height:72px; width:auto; display:block; }

/* =========================================================
   5) BOTÕES
   ========================================================= */
button,.btn,a.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:none;
  cursor:pointer;
  font-family:inherit;
  margin-bottom: 10px;
  outline:none;
  transition: transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              filter .3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow .3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              background-color .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn{
  padding:14px 28px;
  border-radius:10px;
  font-weight:700;
  font-size:16px;
  color:#fff;
  background-color:#333;
}
.btn--primary{
  min-width:280px;
  height:65px;
  font-size:22px;
  font-weight:800;
  letter-spacing:.5px;
  color:#fff;
  border-radius:100px;
  background: linear-gradient(109deg, var(--wppcolor), var(--wppcolor2));
  box-shadow: 0 10px 20px rgba(0,0,0,.3);
  margin:30px auto 0;
  display:flex;
  max-width: fit-content;
}
.btn--primary:hover{
  transform: scale(1.05) translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 15px 30px rgba(0,0,0,.4);
}
.btn--primary:active{ transform: scale(.98); }

/* escrita Thiago e Renata */
.typewriter-group .professor-block__text{ margin:0; }
.typewriter-group .professor-block__text + .professor-block__text{ margin-top:16px; }

/* =========================================================
   6) HERO + FUMAÇA
   ========================================================= */
.hero{
  position:relative;
  background:var(--bg);
  color:var(--text);
  overflow:hidden;
  contain: layout paint;
}
.hero--fullscreen{
  min-height:100vh;
  padding: calc(var(--topbar-h) + 44px) var(--section-pad-x) var(--section-pad-bottom);
  display:flex;
  align-items:center;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:#000;
  overflow:hidden;
  z-index:0;
}
.hero__bg::before,
.hero__bg::after{
  content:"";
  position:absolute;
  inset:-30%;
  pointer-events:none;
  z-index:1;
  background:
    radial-gradient(40% 30% at 25% 30%, rgba(194,96,66,.22), transparent 72%),
    radial-gradient(45% 35% at 75% 38%, rgba(194,96,66,.18), transparent 74%),
    radial-gradient(38% 30% at 52% 78%, rgba(194,96,66,.14), transparent 76%);
  filter: blur(var(--smoke-blur));
  opacity: var(--smoke-opacity);
  mix-blend-mode: screen;
  transform: translate3d(0,0,0) scale(1.08);
}
@media (prefers-reduced-motion: no-preference){
  .hero__bg::before{ animation: smokeAutoA 28s ease-in-out infinite; }
  .hero__bg::after{
    opacity: calc(var(--smoke-opacity) * .75);
    animation: smokeAutoB 44s ease-in-out infinite;
  }
}
@media (prefers-reduced-motion: reduce){
  .hero__bg::before,
  .hero__bg::after{ animation:none; }
}
@keyframes smokeAutoA{
  0%{ transform: translate3d(0,0,0) scale(1.08) rotate(0deg); }
  33%{ transform: translate3d(-2.5%,-1.5%,0) scale(1.11) rotate(-1deg); }
  66%{ transform: translate3d(2%,-2.2%,0) scale(1.10) rotate(1deg); }
  100%{ transform: translate3d(0,0,0) scale(1.08) rotate(0deg); }
}
@keyframes smokeAutoB{
  0%{ transform: translate3d(0,0,0) scale(1.10) rotate(0deg); }
  40%{ transform: translate3d(2.2%,-1.8%,0) scale(1.13) rotate(1.2deg); }
  80%{ transform: translate3d(-2.8%,-2.4%,0) scale(1.11) rotate(-1.2deg); }
  100%{ transform: translate3d(0,0,0) scale(1.10) rotate(0deg); }
}

.hero__overlay{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 30% 28%, rgba(0,0,0,.18), transparent 65%),
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.20) 55%, rgba(0,0,0,.38));
}
.hero__container{
  position:relative;
  z-index:3;
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:48px;
  align-items:center;
}
.hero__content{ padding:10px 0; }
.hero__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.85);
  font-size:13px;
}
.hero__title{
  margin:18px 0 14px;
  font-size:clamp(34px,4.2vw,56px);
  line-height:1.06;
  letter-spacing:-.02em;
}
.hero__subtitle{
  padding-top:20px;
  margin:0 0 40px;
  max-width:62ch;
  color:var(--muted);
  line-height:1.55;
  font-size:16.5px;
}
.hero__subtitle--h2{
  font-size:clamp(15px,1.2vw,18px);
  font-weight:500;
}
.hero__cta{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================================================
   7) CARROSSEL (hero)
   ========================================================= */
.hero__media{ position:relative; min-height:520px; }
.carousel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  height:720px;
  overflow:hidden;
}
.carousel__col{ position:relative; overflow:hidden; border-radius:18px; }
.carousel__track{
  display:flex;
  flex-direction:column;
  gap:12px;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.imgcard{
  display:block;
  position:relative;
  border-radius:30px;
  overflow:hidden;
}
.imgcard img{
  width:100%;
  height:350px;
  object-fit:cover;
  transform: scale(1.02);
  filter:saturate(1.05) contrast(1.05);
}
.imgcard::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.30), transparent 60%);
  pointer-events:none;
}
.hero__glow{ display:none !important; }

/* =========================================================
   8) SECTIONS
   ========================================================= */
.section{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding: calc(var(--topbar-h) + 44px) var(--section-pad-x) var(--section-pad-bottom);
  position:relative;
  overflow:hidden;

  content-visibility:auto;
  contain-intrinsic-size: 1px 800px;
}
.section--dark{ background:var(--bg); color:var(--text); }
.section--light{ background:var(--light-bg); color:var(--light-text); }

.section__header{ margin-bottom:28px; max-width:860px; }
.section__title{
  font-size:clamp(26px,2.6vw,40px);
  line-height:1.1;
  letter-spacing:-.02em;
  margin:0 0 10px;
}
.section__subtitle{ margin:0; line-height:1.55; color:var(--muted); }
.section--light .section__subtitle{ color:var(--light-muted); }
.section__title .highlight{ color:var(--accent); }

/* =========================================================
   9) SMOKE PARA SECTIONS
   ========================================================= */
.section::before{
  content:"";
  position:absolute;
  inset:-35%;
  pointer-events:none;
  z-index:0;

  opacity: var(--sec-smoke-opacity, .40);
  filter: blur(var(--sec-smoke-blur, 90px));
  transform: translate3d(0,0,0) scale(1.06);

  background:
    radial-gradient(42% 32% at var(--s1x, 25%) var(--s1y, 28%), rgba(194,96,66,.45), transparent 72%),
    radial-gradient(46% 36% at var(--s2x, 78%) var(--s2y, 35%), rgba(194,96,66,.30), transparent 74%),
    radial-gradient(40% 34% at var(--s3x, 52%) var(--s3y, 80%), rgba(194,96,66,.20), transparent 76%);
}
.section > .container{ position:relative; z-index:1; }
.section--dark::before{
  opacity: var(--sec-smoke-opacity, .55);
  filter: blur(var(--sec-smoke-blur, 100px));
  mix-blend-mode: screen;
}
.section--light::before{
  opacity: var(--sec-smoke-opacity, .22);
  filter: blur(var(--sec-smoke-blur, 120px));
  mix-blend-mode: multiply;
}
.section#autoridade{ --s1x:18%; --s1y:22%; --s2x:82%; --s2y:40%; --s3x:50%; --s3y:78%; }
.section#metodologia{ --s1x:32%; --s1y:30%; --s2x:72%; --s2y:18%; --s3x:18%; --s3y:86%; }
.section#professores{ --s1x:14%; --s1y:26%; --s2x:86%; --s2y:54%; --s3x:60%; --s3y:14%; }
.section#faq{ --s1x:28%; --s1y:18%; --s2x:84%; --s2y:32%; --s3x:42%; --s3y:88%; }
.section#contato{ --s1x:62%; --s1y:22%; --s2x:18%; --s2y:62%; --s3x:88%; --s3y:86%; }

/* =========================================================
   10) GRIDS + CARDS
   ========================================================= */
.grid{ display:grid; gap:16px; }
.grid--2{ grid-template-columns:repeat(2,minmax(0,1fr)); }
.grid--3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.grid--4{ grid-template-columns:repeat(4,minmax(0,1fr)); }

:where(.card,.course,.tcard,.faq__item,.mini-card,.pain-points,.note,.closing){
  border-radius:18px;
  padding:18px;
}
.section--dark :where(.card,.course,.tcard,.faq__item,.mini-card,.pain-points,.note,.closing){
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.section--light :where(.card,.course,.tcard,.faq__item,.mini-card,.pain-points,.note,.closing){
  border:1px solid rgba(16,16,20,.10);
  background:var(--light-surface);
  box-shadow: var(--shadow-light);
}

/* =========================================================
   11) SPLIT + WORD ROTATE
   ========================================================= */
.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:start;
}
.h2-big{
  margin:0 0 14px;
  font-size:clamp(30px,3.3vw,52px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.kicker{
  margin:0 0 18px;
  line-height:1.55;
  color:var(--muted);
}
.section--light .kicker{ color:var(--light-muted); }

.word-rotate{
  display:inline-block;
  color:var(--accent);
  font-weight:900;
  padding:0 2px;
  border-bottom:2px solid rgba(194,96,66,.35);
}
.word-rotate.is-typing{ border-bottom-color: rgba(194,96,66,.7); }

.mini-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:18px 0;
}

.pp{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.pp__icon{
  width:28px; height:28px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(194,96,66,.16);
  border:1px solid rgba(194,96,66,.28);
  color:rgba(255,255,255,.95);
  flex:0 0 28px;
}
.section--light .pp__icon{
  color:var(--light-text);
  background:rgba(194,96,66,.12);
  border:1px solid rgba(194,96,66,.26);
}
.note{ margin-top:12px; border-radius:16px; line-height:1.55; }
.section--light .note{ color:var(--light-text); }

/* =========================================================
   12) METODOLOGIA
   ========================================================= */
.section#metodologia .split{ align-items:stretch; }
.section#metodologia .word-rotate{
  background:transparent !important;
  box-shadow:none !important;
  border-radius:0 !important;
  border-bottom:none !important;
  padding:0 2px !important;
  display:inline-block;
  white-space:nowrap;
  min-width:10ch;
  font-size:1em !important;
}
@media (max-width:520px){
  .section#metodologia .word-rotate{ min-width:8ch; }
}

.section#metodologia .pain-points{
  min-height:460px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:26px;
  border-radius:22px;
  background:
    radial-gradient(1100px 600px at 12% 18%, rgba(199,137,119,.16), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  box-shadow: 0 22px 60px rgba(0,0,0,.10);
}
.section#metodologia .pp{
  padding:16px 14px;
  border-radius:18px;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid), background var(--t-mid);
}
.section#metodologia .pp:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0,0,0,.10);
  border-color: rgba(194,96,66,.26);
  background: rgba(0,0,0,.015);
}
.section#metodologia .note{ margin-top:16px; padding:18px; border-radius:18px; }

@media (max-width:980px){
  .section#metodologia .pain-points{ min-height:auto; padding:20px; }
}

@media (prefers-reduced-motion: no-preference){
  .section#metodologia .pain-points{
    opacity:0;
    transform: translateY(10px);
    animation: metodPanelIn .6s ease-out forwards;
  }
  @keyframes metodPanelIn{ to{ opacity:1; transform: translateY(0); } }

  .section#metodologia .pp__icon{ position:relative; }
  .section#metodologia .pp__icon::after{
    content:"";
    position:absolute;
    inset:-6px;
    border-radius:14px;
    border:1px solid rgba(194,96,66,.28);
    opacity:0;
    animation: iconPulse 2.6s ease-in-out infinite;
  }
  @keyframes iconPulse{
    0%{ transform: scale(.95); opacity:0; }
    35%{ transform: scale(1.06); opacity:.55; }
    70%{ transform: scale(1.16); opacity:0; }
    100%{ transform: scale(.95); opacity:0; }
  }
}

/* =========================================================
   13) AUTORIDADE
   ========================================================= */
.section#autoridade .section__header{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width:900px;
}
.section#autoridade .section__title{
  font-size:clamp(32px,3.6vw,54px);
  letter-spacing:-.03em;
}
.section#autoridade .section__subtitle{
  margin-left:auto;
  margin-right:auto;
  max-width:70ch;
  color:rgba(255,255,255,.76);
}
.section#autoridade .grid{ margin-top:26px; gap:18px; }

.section#autoridade .card{
  position:relative;
  padding:56px 56px 22px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgb(255,255,255);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid), background var(--t-mid);
  text-align:center;
}
.section#autoridade .card-badge{
  width:220px; height:220px;
  margin:0 auto 26px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(194,96,66,.16);
  box-shadow: 0 18px 40px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.25);
}
.section#autoridade .card-badge img{
  width:310px; height:260px;
  object-fit:cover;
  border-radius:14px;
}
.section#autoridade .card h3{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.01em;
  color:rgba(255,255,255,.94);
}
.section#autoridade .card p{
  margin:0;
  font-size:14.5px;
  line-height:1.6;
  color:rgba(255,255,255,.75);
}
.section#autoridade .cta-row{
  margin-top:42px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  text-align:center;
}
.section#autoridade .cta-row__hint{
  font-size:13.5px;
  color:rgba(255,255,255,.78);
  max-width:42ch;
  line-height:1.5;
  padding-top:6px;
  position:relative;
}
.section#autoridade .cta-row__hint::before{
  content:"";
  display:block;
  width:42px;
  height:1px;
  background:rgba(255,255,255,.25);
  margin:0 auto 10px;
}

/* =========================================================
   14) GALERIA
   ========================================================= */
.gallery{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.gallery__ph{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  aspect-ratio:16/9;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  transition: transform var(--t-mid), box-shadow var(--t-mid), filter var(--t-mid);
}
.gallery__ph:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  filter:saturate(1.05) contrast(1.05);
}
.section--light .gallery__ph{
  border:1px solid rgba(16,16,20,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}
.gallery__ph--1{ background-image:url("./Assets/bateriadesfoque.png"); }
.gallery__ph--2{ background-image:url("./Assets/cantor.png"); }
.gallery__ph--3{ background-image:url("./Assets/fachada.png"); }

/* =========================================================
   15) PROFESSORES
   ========================================================= */
.professor-section{ overflow:hidden; }

.professor-block{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items:center;
}
.professor-block--image-right{ direction: rtl; }
.professor-block--image-right > *{ direction:ltr; }

.professor-block__photo{
  width:100%;
  height: clamp(380px, 42vw, 560px);
  border-radius:30px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.12);
}
.professor-block__photo--thiago{ background-image:url("./Assets/Thiago/Thiago.jpeg"); }
.professor-block__photo--renata{ background-image:url("./Assets/RENATA/RENATA_002.jpeg"); }

/* Texto da Renata em preto (mantido) */
#renata .professor-block__text{ color: var(--bg); }

.professor-block__content{ max-width:640px; }
.professor-block__name{
  margin:0 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing:-0.03em;
}
.professor-block__role{
  margin:0 0 24px;
  font-weight:800;
  color:var(--accent);
}
.professor-block__text{
  margin:0 0 18px;
  font-size:16.5px;
  line-height:1.7;
  color:var(--muted);

  /* merge do patch final */
  text-align: justify;
  hyphens: auto;
}
.typewriter{ opacity:0; }

@media (max-width:980px){
  .professor-block{ grid-template-columns:1fr; gap:26px; }
  .professor-block--image-right{ direction:ltr; }
  .professor-block__content{ max-width:none; text-align:center; }
  .professor-block__photo{ height:360px; }
}

/* =========================================================
   16) TESTIMONIALS
   ========================================================= */
/* =========================================================
   16) TESTIMONIALS (GRID BASE)
   ========================================================= */
.testimonials{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.tcard__text{ margin:0 0 12px; line-height:1.55; color:rgba(255,255,255,.86); }
.section--light .tcard__text{ color:var(--light-muted); }
.tcard__name{ color:rgba(255,255,255,.92); }
.section--light .tcard__name{ color:var(--light-text); }

/* =========================================================
   DEPOIMENTOS (SECTION STYLES)
   ========================================================= */
.section#depoimentos{
  padding-top: calc(var(--topbar-h) + 26px);
  padding-bottom: 46px;
  overflow-x: hidden; /* evita qualquer estouro no mobile */
}

.section#depoimentos .section__header{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width:980px;
  margin-bottom:34px;
}

.section#depoimentos .section__title{
  font-size:clamp(36px,4.4vw,64px);
  line-height:1.05;
  letter-spacing:-.03em;
  margin:0 0 12px;

  /* segurança: nunca cortar título */
  max-width:100%;
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.section#depoimentos .hl-orange{ color:var(--accent); }

.section#depoimentos .section__subtitle{
  font-size:15.5px;
  line-height:1.55;
  max-width:72ch;
  margin-left:auto;
  margin-right:auto;
  color:rgba(16,16,20,.70);
}

/* Cards (base) */
.section#depoimentos .tcard{
  background:#fff;
  border-radius:18px;
  padding:28px 24px 30px;
  text-align:center;
  box-shadow: var(--shadow-mid);
  display:flex;
  flex-direction:column;
  align-items:center;

  /* segurança contra “estouro” */
  min-width:0;
}

.section#depoimentos .tcard__media{
  width:88px; height:88px;
  margin-bottom:18px;
  border-radius:50%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f1f1f1;
  border:2px solid rgba(194,96,66,.35);
}

.section#depoimentos .tcard__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

.section#depoimentos .tcard__text{
  font-size:15.5px;
  line-height:1.6;
  color:#333;
  margin:0 0 16px;

  overflow-wrap:anywhere;
  word-break:break-word;
}

.section#depoimentos .tcard__name{
  font-weight:800;
  color:#000;
}

/* =========================================================
   CARROSSEL (apenas quando usar .testimonials--carousel)
   - Desktop: 3 cards mais “premium” + botões
   - Mobile: 1 card CENTRALIZADO + dica visual (fade) + dots
   ========================================================= */

/* Wrapper do carrossel */
.tcarousel{
  position:relative;
  width:100%;
  max-width:100%;
}

/* Botões (desktop) */
.tcarousel__btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(16,16,20,.12);
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:5;
  user-select:none;
}
.tcarousel__btn--prev{ left:0; }
.tcarousel__btn--next{ right:0; }

/* Track do carrossel (sobrescreve o grid base) */
.testimonials.testimonials--carousel{
  display:flex;
  grid-template-columns:none; /* garante que o grid não interfira */
  gap:24px;

  width:100%;
  max-width:100%;
  min-width:0;

  overflow-x:auto;
  overflow-y:hidden;

  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-x:contain;

  scroll-behavior:smooth;
  cursor:grab;
  user-select:none;
  align-items:stretch;
}
.testimonials.testimonials--carousel:active{ cursor:grabbing; }

/* Scrollbar discreta */
.testimonials.testimonials--carousel::-webkit-scrollbar{ height:10px; }
.testimonials.testimonials--carousel::-webkit-scrollbar-thumb{ border-radius:999px; }

/* ===== DESKTOP: cards menos largos e mais profissionais ===== */
@media (min-width: 769px){
  .testimonials.testimonials--carousel{
    max-width:1120px;
    margin:0 auto;

    /* espaço interno pros botões */
    padding: 8px 56px 14px;
    scroll-padding-left:56px;
    scroll-padding-right:56px;
  }

  /* 3 cards “premium” (não ficam gigantes) */
  .testimonials.testimonials--carousel > .tcard{
    flex:0 0 340px;
    max-width:340px;
    min-width:0;

    scroll-snap-align:start;
    scroll-snap-stop:always;

    border:1px solid rgba(16,16,20,.10);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border-radius:22px;
    padding:26px 22px 26px;
    background:#fff;
  }

  .section#depoimentos .tcard__media{ margin-bottom:14px; }
  .section#depoimentos .tcard__text{ line-height:1.55; }
  .section#depoimentos .tcard__name{ margin-top:6px; }
}

/* ===== MOBILE: 1 card por vez CENTRALIZADO NO CONTAINER ===== */
@media (max-width: 768px){
  /* some botões no mobile */
  .tcarousel__btn{ display:none; }

  .section#depoimentos .section__header{ text-align:center; }
  .section#depoimentos .section__title{
    padding-bottom: 5vh;
    font-size:clamp(28px,7vw,40px);
    line-height:1.05;
  }

  /* Centralização real:
     - padding do track vira o “gutter” (mesma lógica do container)
     - cada card ocupa 100% do miolo
  */
  .testimonials.testimonials--carousel{
    gap:12px;

    /* IMPORTANTE: aqui você controla o alinhamento com a section
       Se seu .container tiver padding lateral diferente, ajuste este valor. */
    padding: 0 16px 12px;
    scroll-padding-left:16px;
    scroll-padding-right:16px;
  }

  .testimonials.testimonials--carousel > .tcard{
    flex:0 0 100%;
    min-width:0;

    scroll-snap-align:center;
    scroll-snap-stop:always;

    border-radius:20px;
    padding:22px 18px 22px;
  }

  .section#depoimentos .tcard__text{
    font-size:15px;
    line-height:1.45;
  }

  /* DICA VISUAL: fade nas bordas indicando “arraste para o lado” */
  .tcarousel::before,
  .tcarousel::after{
    content:"";
    position:absolute;
    top:0;
    bottom:34px; /* deixa espaço pros dots */
    width:34px;
    pointer-events:none;
    z-index:4;
  }

  /* Use a cor do fundo da section (aproximação segura) */
  .tcarousel::before{
    left:0;
    background:linear-gradient(to right, rgba(245,242,236,1), rgba(245,242,236,0));
  }
  .tcarousel::after{
    right:0;
    background:linear-gradient(to left, rgba(245,242,236,1), rgba(245,242,236,0));
  }
}

/* ===== DOTS (indicador de páginas) ===== */
.tcarousel__dots{
  display:none;
  justify-content:center;
  gap:8px;
  margin-top:10px;
}
.tcarousel__dot{
  width:7px;
  height:7px;
  border-radius:999px;
  border:1px solid rgba(16,16,20,.25);
  background:transparent;
  opacity:.8;
}
.tcarousel__dot.is-active{
  background:rgba(16,16,20,.55);
  opacity:1;
}

@media (max-width: 768px){
  .tcarousel__dots{ display:flex; }
}/* ===== PATCH DEFINITIVO: mobile não pode ter overflow lateral ===== */
@media (max-width: 768px){
  /* trava qualquer estouro dentro da section (não afeta o resto do site) */
  .section#depoimentos,
  .section#depoimentos *{
    max-width: 100%;
  }

  /* se algo estiver com 100vw, isso corrige na marra */
  .section#depoimentos .container{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* carrossel: SEM margin negativa (ela é a causa mais comum do “puxado”) */
  .testimonials.testimonials--carousel{
    margin-left: 0 !important;
    margin-right: 0 !important;

    /* gutter alinhado com container */
    padding: 0 16px 12px !important;
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;

    gap: 12px;
  }

  /* 1 card por vez, ocupando 100% do miolo */
  .testimonials.testimonials--carousel > .tcard{
    flex: 0 0 100% !important;
    margin: 0 !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-width: 0;
  }

  /* evita texto/elementos internos estourarem */
  .section#depoimentos .tcard__text{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* dica visual: fade nas bordas */
  .tcarousel::before,
  .tcarousel::after{
    content:"";
    position:absolute;
    top:0;
    bottom:34px;
    width:34px;
    pointer-events:none;
    z-index:4;
  }
  .tcarousel::before{
    left:0;
    background:linear-gradient(to right, rgba(245,242,236,1), rgba(245,242,236,0));
  }
  .tcarousel::after{
    right:0;
    background:linear-gradient(to left, rgba(245,242,236,1), rgba(245,242,236,0));
  }

  /* dots no mobile */
  .tcarousel__dots{ display:flex; }
}
/* ===== MOBILE: centralização vertical REAL da section ===== */
@media (max-width: 768px){
  .section#depoimentos{
    display: flex;
    flex-direction: column;
    justify-content: center; /* <<< ISSO centraliza verticalmente */
    min-height: 100svh;      /* usa altura real da viewport mobile */
  }

  /* garante que o conteúdo não fique colado no topo */
  .section#depoimentos .container{
    flex: 0 0 auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  /* espaçamento mais equilibrado entre título e carrossel */
  .section#depoimentos .section__header{
    margin-bottom: 20px;
  }

  /* carrossel fica exatamente no “meio visual” */
  .tcarousel{
    margin-top: 0;
  }
}

/* ===== PATCH DEFINITIVO: mobile não pode ter overflow lateral ===== */
@media (max-width: 768px){
  /* trava qualquer estouro dentro da section (não afeta o resto do site) */
  .section#depoimentos,
  .section#depoimentos *{
    max-width: 100%;
  }

  /* se algo estiver com 100vw, isso corrige na marra */
  .section#depoimentos .container{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* carrossel: SEM margin negativa (ela é a causa mais comum do “puxado”) */
  .testimonials.testimonials--carousel{
    margin-left: 0 !important;
    margin-right: 0 !important;

    /* gutter alinhado com container */
    padding: 0 16px 12px !important;
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;

    gap: 12px;
  }

  /* 1 card por vez, ocupando 100% do miolo */
  .testimonials.testimonials--carousel > .tcard{
    flex: 0 0 100% !important;
    margin: 0 !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-width: 0;
  }

  /* evita texto/elementos internos estourarem */
  .section#depoimentos .tcard__text{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* dica visual: fade nas bordas */
  .tcarousel::before,
  .tcarousel::after{
    content:"";
    position:absolute;
    top:0;
    bottom:34px;
    width:34px;
    pointer-events:none;
    z-index:4;
  }
  .tcarousel::before{
    left:0;
    background:linear-gradient(to right, rgba(245,242,236,1), rgba(245,242,236,0));
  }
  .tcarousel::after{
    right:0;
    background:linear-gradient(to left, rgba(245,242,236,1), rgba(245,242,236,0));
  }

  /* dots no mobile */
  .tcarousel__dots{ display:flex; }
}

/* =========================================================
   17) FAQ (seta + animação)
   ========================================================= */
.faq{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  width:100%;
}
.faq__item{
  width:100%;
  max-width:860px;
  min-width:0;
  overflow:hidden;
  transition: background .25s ease, border-color .25s ease;
}

/* summary */
.faq__item summary{
  cursor:pointer;
  font-weight:800;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-width:0;
  width:100%;
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
  text-align:center;

  position:relative;
  padding-right:34px;
}
.faq__item summary::-webkit-details-marker{ display:none; }

/* seta */
.faq__item summary::after{
  content:"▾";
  position:absolute;
  right:12px;
  top:50%;
  transform: translateY(-50%);
  font-size:18px;
  transition: transform .25s ease;
  opacity:.8;
}
.faq__item[open] summary::after{
  transform: translateY(-50%) rotate(180deg);
}

/* conteúdo (mantém seu HTML atual com <p>) */
.faq__item p{
  margin:10px 0 0;
  width:100%;
  max-width:70ch;
  min-width:0;
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
  line-height:1.55;
  color:var(--muted);
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.section--light .faq__item p{ color:var(--light-muted); }

.section#faq .section__header{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.section#faq .container{ overflow-x:hidden; }
.section#faq .faq__item[open]{
  background:rgba(255,255,255,.06);
  border-color: rgba(194,96,66,.35);
}
.faq__item[open]{
  background: rgba(255,255,255,.06);
  border-color: rgba(194,96,66,.35);
}

/* animação suave abrir/fechar (mantida, sem duplicar blocos) */
.faq__item > p{
  display:grid;
  grid-template-rows: 0fr;
  opacity:0;
  transition: grid-template-rows .35s ease, opacity .25s ease;
}
.faq__item > p > *{ overflow:hidden; }
.faq__item[open] > p{
  grid-template-rows: 1fr;
  opacity:1;
  transition-delay:.05s;
}

/* =========================================================
   18) CTA-ROW
   ========================================================= */
.cta-row{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.cta-row__hint{ font-size:13px; color:var(--muted); }
.section--light .cta-row__hint{ color:var(--light-muted); }

/* =========================================================
   19) PARA-QUEM (hover)
   ========================================================= */
.section#para-quem .section__header{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width:900px;
}
.section#para-quem .section__subtitle{
  margin-left:auto;
  margin-right:auto;
  max-width:65ch;
  color:var(--bg);
}
.section#para-quem .path{
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.section#para-quem .path:hover{
  transform: scale(1.035);
  border-color: rgba(194,96,66,.45);
  box-shadow: 0 0 0 1px rgba(194,96,66,.35), 0 0 28px rgba(194,96,66,.18), 0 18px 45px rgba(0,0,0,.65);
}

/* =========================================================
   20) CURSOS 
   ========================================================= */
/* =========================================================
   20) CURSOS (SEÇÃO) + 24) CURSOS — CARROSSEL
   FIX DEFINITIVO: não estoura largura + CTA sempre central
   ========================================================= */

.section#cursos .section__header{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width: 980px;
}

.section#cursos .section__subtitle{
  margin-left:auto;
  margin-right:auto;
  max-width:70ch;
  text-align:center;
}

/* ✅ trava overflow horizontal APENAS no cursos (remove o bug do track) */
.section#cursos{
  overflow-x: hidden;     /* <<< ESSENCIAL */
}

/* ---------------------------------------------------------
   CARROSSEL (desktop e mobile)
   --------------------------------------------------------- */
.section#cursos .courses-carousel{
  width:100%;
  max-width:100%;
  margin-top:24px;
  overflow:hidden;        /* recorte extra */
}

/* viewport é o “recorte” (nunca pode deixar o track alargar a página) */
.section#cursos .cc__viewport{
  width:100%;
  max-width:100%;
  overflow:hidden;        /* desktop: recortado */
  position:relative;
  contain: layout paint;  /* isola o track do layout da página */
}

/* track pode ser grande, mas fica preso no viewport */
.section#cursos .cc__track{
  display:flex;
  gap:16px;
  width:max-content;      /* ok, porque viewport recorta */
  max-width:none;
  padding:12px 0;
  transform: translate3d(0,0,0);
  will-change: transform;
}


/* cards */
.section#cursos .cc__card{
  flex:0 0 auto;
  width: clamp(220px, 22vw, 320px);
  height: clamp(240px, 26vw, 360px);
  border-radius:22px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  font-size: clamp(18px, 1.6vw, 28px);
  position:relative;
  background:#111;
  overflow:hidden;
}

.section#cursos .cc__card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.55));
}

.section#cursos .cc__card span{
  position:relative;
  z-index:1;
  text-align:center;
  padding:0 12px;

  /* ✅ impede “Musicalização Infantil” de estourar */
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* backgrounds (mantém os seus) */
.section#cursos .cc__card--baixo{ background:url("./Assets/Instrumentos/Baixo.webp") center/cover no-repeat; }
.section#cursos .cc__card--bateria{ background:url("./Assets/Instrumentos/Bateria.webp") center/cover no-repeat; }
.section#cursos .cc__card--canto{ background:url("./Assets/Instrumentos/Canto.webp") center/cover no-repeat; }
.section#cursos .cc__card--guitarra{ background:url("./Assets/Instrumentos/Guitarra.webp") center/cover no-repeat; }
.section#cursos .cc__card--violao{ background:url("./Assets/Instrumentos/Violao.webp") center/cover no-repeat; }
.section#cursos .cc__card--piano{ background:url("./Assets/Instrumentos/Piano.webp") center/cover no-repeat; }
.section#cursos .cc__card--ukulele{ background:url("./Assets/Instrumentos/Ukelele.webp") center/cover no-repeat; }
.section#cursos .cc__card--musicalizacao{ background:url("./Assets/Instrumentos/Infantil.webp") center/cover no-repeat; }
.section#cursos .cc__card--bandas{ background:url("./Assets/Instrumentos/Banda.webp") center/cover no-repeat; }

/* ---------------------------------------------------------
   CTA (botão) — sempre central
   --------------------------------------------------------- */
.section#cursos .cta-row{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:26px;
}

.section#cursos .cta-row > .btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  margin:0 !important; /* evita briga com margin do .btn--primary */
}

/* =========================================================
   RESPONSIVO: tablet/mobile libera swipe no viewport
   ========================================================= */
@media (max-width: 980px){
  /* mantém tudo recortado e sem puxar a página */
  .section#cursos,
  .section#cursos .container{
    max-width:100%;
    overflow-x:hidden;
  }
}

/* swipe real + snap no mobile */
@media (max-width: 768px){
  .section#cursos .courses-carousel{
    margin-top:18px;
  }

  .section#cursos .cc__viewport{
    overflow-x:auto;                 /* ✅ swipe */
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding:12px 0;
  }
  .section#cursos .cc__viewport::-webkit-scrollbar{ display:none; }

  .section#cursos .cc__track{
    gap:14px;
    padding:0 14px;                  /* respiro lateral */
    width:fit-content;
    max-width:none;
  }

  .section#cursos .cc__card{
    width:78vw;
    max-width:320px;
    height:56vw;
    max-height:220px;
    scroll-snap-align:center;
  }

  .section#cursos .cc__card span{
    font-size:18px;
  }
}

/* =========================================================
   MOBILE PEQUENO: (se você quiser manter seus grids também)
   ========================================================= */
@media (max-width:576px){
  .section#cursos .grid.grid--4{ grid-template-columns:1fr; }
  .section#cursos .grid.grid--4 .course{ padding:30px 20px; }
  .section#cursos .grid.grid--4 .course .course__icon{
    width:70px; height:70px; font-size:1.5rem;
  }

  .section#cursos .services-grid.courses-grid{ grid-template-columns:1fr; }
  .section#cursos .service-card.course-card{ padding:30px 20px 46px; }
  .section#cursos .service-icon.course-icon{ width:70px; height:70px; font-size:26px; }
}

/* =========================================================
   21) CONTATO / CLOSING
   ========================================================= */
.section#contato{ position:relative; }
.section#contato .closing--pro{
  border-radius:26px;
  padding: clamp(130px, 3.2vw, 130px);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
  border: 1px solid rgba(16,16,20,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.12);
  position:relative;
  overflow:hidden;
}
.section#contato .closing--pro::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(36% 26% at 25% 30%, rgba(245,235,232,.22), transparent 70%),
    radial-gradient(34% 24% at 78% 35%, rgba(197,94,26,.18), transparent 72%),
    radial-gradient(30% 24% at 50% 80%, rgba(194,96,66,.10), transparent 75%);
  filter: blur(42px);
  opacity:.9;
  pointer-events:none;
}
.section#contato .closing__header{
  position:relative;
  z-index:1;
  text-align:center;
  max-width:900px;
  margin:0 auto 26px;
}
.section#contato .closing__pill{
  display:inline-flex;
  margin:30px 0;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  color:rgba(16,16,20,.78);
  background: rgba(255,255,255,.12);
  border:1px solid rgba(194,96,66,.22);
}
.section#contato .closing__title{
  margin:16px 0 12px;
  font-size:clamp(34px,4.2vw,60px);
  line-height:1.03;
  letter-spacing:-.03em;
  color:var(--light-text);
}
.section#contato .closing__highlight{ color:var(--accent); }
.section#contato .closing__lead{
  margin:0 auto;
  max-width:70ch;
  font-size:clamp(15px,1.15vw,18px);
  line-height:1.6;
  color:rgba(16,16,20,.72);
}
.section#contato .closing__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:20px;
}
.section#contato .closing__box{
  border-radius:20px;
  padding:18px 18px 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,16,20,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  text-align:left;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.section#contato .closing__box:hover{
  transform: translateY(-4px);
  border-color: rgba(194,96,66,.28);
  box-shadow: 0 22px 55px rgba(0,0,0,.12);
}
.section#contato .closing__box--accent{
  background: linear-gradient(180deg, rgb(255,255,255), rgba(190,190,190,.1));
  border: 1px solid rgba(194,96,66,.26);
}
.section#contato .closing__box h3{
  margin:0 0 6px;
  font-size:16px;
  letter-spacing:-.01em;
  color:rgba(16,16,20,.92);
  font-weight:900;
}
.section#contato .closing__box p{
  margin:0;
  color:rgba(16,16,20,.72);
  line-height:1.55;
  font-size:14px;
}
.section#contato .closing__ctaWrap{
  position:relative;
  z-index:1;
  margin-top:24px;
  display:grid;
  justify-items:center;
  gap:12px;
  text-align:center;
}
.section#contato .closing__ctaBtn{
  padding:20px 40px;
  font-size:22px;
  border-radius:100px;
}
.section#contato .closing__ctaBtn:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.section#contato .closing__meta{ display:grid; gap:6px; }
.section#contato .closing__note{ font-size:13px; color:rgba(16,16,20,.75); font-weight:700; }
.section#contato .closing__trust{ font-size:12.5px; color:rgba(16,16,20,.60); }

/* =========================================================
   22) LOCALIZAÇÃO
   ========================================================= */
.section__header--center{ text-align:center; margin-left:auto; margin-right:auto; }
.loc{ display:grid; gap:18px; margin-top:18px; }
.loc__map{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  padding:0;
  min-height:360px;
}
.loc__iframe{
  width:100%;
  height:100%;
  min-height:360px;
  border:0;
  display:block;
}
.loc__mapLink{ position:absolute; inset:0; z-index:2; }
.loc__mapHint{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:3;
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  background:rgba(0,0,0,.55);
  color:rgba(255,255,255,.9);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.loc__photosHeader{ text-align:center; margin-top:6px; }
.loc__photosTitle{
  margin:0 0 6px;
  font-size:clamp(38px,1.8vw,22px);
  letter-spacing:-.02em;
}
.loc__grid{
  margin-top:50px;
  margin-bottom:50px;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}
.loc__photo{
  padding:0;
  border-radius:18px;
  overflow:hidden;
  aspect-ratio:4/3;
}
.loc__photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transform: scale(1.01);
}
.loc__photos{ margin-top:50px; }

.loc__map:hover,
.loc__photo:hover{
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
  border-color: rgba(194,96,66,.28);
}

/* =========================================================
   23) FOOTER
   ========================================================= */
.site-footer{
  --footer-bg:#000;
  --footer-text:#fff;
  --footer-muted:rgba(255,255,255,.75);
  --footer-line:rgba(255,255,255,.18);
  background:var(--footer-bg);
  color:var(--footer-text);
  position:relative;
  overflow:hidden;
}

/* CONTAINER CENTRAL */
.site-footer__inner{
  max-width:1200px;
  margin-inline:auto;
  padding:64px 24px 20px;
  position:relative;
  z-index:2;
}

/* DECORAÇÃO */
.site-footer::after{
  content:"";
  position:absolute;
  right:-40px;
  top:24px;
  width:min(520px,42vw);
  height:min(520px,42vw);
  opacity:.22;
  filter:saturate(0) contrast(1.2);
  z-index:1;
  pointer-events:none;
}

/* GRID EQUILIBRADO */
.site-footer__grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:48px;
  align-items:start;
  justify-items:center;
}

/* BRAND CENTRALIZADA */
.site-footer__brand{
  text-align:center;
  max-width:360px;
}

.footer-brand{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
}

.footer-brand__logo{
  height:54px;
  width:auto;
  display:block;
  margin-inline:auto;
}

/* SOCIAL CENTRAL */
.site-footer__social{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:8px;
}

.social-btn{
  width:36px;
  height:36px;
  border-radius:999px;
  background:rgba(255,255,255,.85);
  color:#111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:700;
  font-size:12px;
  transition: transform var(--t-fast), background var(--t-fast);
}
.social-btn:hover{
  transform: translateY(-2px);
  background:rgba(255,255,255,.98);
}

/* COLUNAS */
.site-footer__col{
  width:100%;
  max-width:320px;
}

.site-footer__title{
  font-size:16px;
  margin:4px 0 14px;
  letter-spacing:.2px;
  text-align:center;
}

.site-footer__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
  text-align:center;
}

.site-footer__list a{
  color:var(--footer-text);
  text-decoration:none;
  opacity:.92;
  transition: opacity var(--t-fast), transform var(--t-fast);
  display:inline-flex;
  justify-content:center;
}
.site-footer__list a:hover{
  opacity:1;
  transform: translateY(-2px);
}

.footer-info__item{
  margin:0 0 14px;
  color:var(--footer-muted);
  line-height:1.4;
  text-align:center;
}
.footer-info__item strong{
  color:var(--footer-text);
}

.footer-link{
  color:var(--footer-text);
  text-decoration:none;
  text-underline-offset:3px;
}

/* POWERED */
.site-footer__powered{
  margin-top:16px;
  font-size:13px;
  line-height:1.45;
  color:rgba(255,255,255,.65);
  max-width:360px;
  margin-inline:auto;
  text-align:center;
}
.site-footer__powered strong{
  color:rgba(255,255,255,.85);
  font-weight:700;
}

/* MOBILE */
@media (max-width: 768px){
  .site-footer__grid{
    grid-template-columns:1fr;
    gap:36px;
  }
}

/* =========================================================
   24) CURSOS — CARROSSEL (sem botões)
   ========================================================= */

.courses-carousel{ width:100%; margin-top:24px; }
.cc__viewport{
  width:100%;
  overflow-x:hidden; /* desktop */
  overflow-y:visible;
}
.cc__track{
  display:flex;
  gap:16px;
  width:max-content;
  padding:12px 0;
}
.cc__card{
  flex:0 0 auto;
  width: clamp(220px, 22vw, 320px);
  height: clamp(240px, 26vw, 360px);
  border-radius:22px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  font-size: clamp(18px, 1.6vw, 28px);
  position:relative;
  background:#111;
  overflow:hidden;
}
.cc__card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.6));
}
.cc__card span{
  position:relative;
  z-index:1;
  text-align:center;
  padding:0 12px;
}
.cc__card--baixo{ background:url("./Assets/Instrumentos/Baixo.webp") center/cover no-repeat; }
.cc__card--bateria{ background:url("./Assets/Instrumentos/Bateria.webp") center/cover no-repeat; }
.cc__card--canto{ background:url("./Assets/Instrumentos/Canto.webp") center/cover no-repeat; }
.cc__card--guitarra{ background:url("./Assets/Instrumentos/Guitarra.webp") center/cover no-repeat; }
.cc__card--violao{ background:url("./Assets/Instrumentos/Violao.webp") center/cover no-repeat; }
.cc__card--piano{ background:url("./Assets/Instrumentos/Piano.webp") center/cover no-repeat; }
.cc__card--ukulele{ background:url("./Assets/Instrumentos/Ukelele.webp") center/cover no-repeat; }
.cc__card--musicalizacao{ background:url("./Assets/Instrumentos/Infantil.webp") center/cover no-repeat; }
.cc__card--bandas{ background:url("./Assets/Instrumentos/Banda.webp") center/cover no-repeat; }

/* =========================================================
   TYPEWRITER WAIT (cursor)
   ========================================================= */
#typewriter-wait{
  display:inline-block;
  white-space:nowrap;
}
#typewriter-wait::after{
  content:"";
  display:inline-block;
  width:1ch;
  margin-left:2px;
  border-right:2px solid currentColor;
  animation: twBlink .8s steps(1) infinite;
}
@keyframes twBlink{ 50%{ opacity:0; } }

/* Para Desktop (telas maiores que 768px) */
@media (min-width:768px){
  .nome-metodo{ white-space:nowrap; }
}

/* =========================================================
   COMBO (2 colunas)
   ========================================================= */
.combo2__container{ max-width:1200px; margin:0 auto; }

.combo2__header{
  text-align:center;
  max-width:980px;
  margin:0 auto 26px;
}
.combo2__title{
  margin:0 0 12px;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height:1.05;
  letter-spacing:-.02em;
  font-weight:900;
  color:var(--accent);
  text-transform:uppercase;
}
.combo2__pill{
  display:inline-block;
  margin:8px auto 0;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height:1.2;
  font-weight:400;
  letter-spacing:-.01em;
  text-transform:uppercase;
  color:var(--muted);
  background:none;
  border:0;
  padding:0;
}
.combo2__plus{
  margin:0 6px;
  font-weight:600;
  color:var(--muted);
}
@media (max-width:720px){
  .combo2__pill{
    font-size: clamp(18px, 5vw, 26px);
    line-height:1.25;
  }
}
.combo2__subtitle{
  margin:14px auto 0;
  max-width:75ch;
  color:var(--light-muted);
  line-height:1.6;
  font-size:16px;
}
.combo2__grid{
  margin-top:26px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.combo2__content{ text-align:left; }
.combo2__h3{
  margin:0 0 12px;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing:-.02em;
  color:var(--light-text);
  font-weight:900;
  text-transform:uppercase;
}
.combo2__text{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.75;
  font-size:16px;
}
.combo2__text strong{ color:var(--muted); }
.combo2__callout{
  margin:16px 0 18px;
  padding-left:14px;
  border-left:4px solid rgba(194,96,66,.45);
}
.combo2__callout p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}
.combo2__ctaRow{
  margin-top:18px;
  display:grid;
  justify-items:start;
  gap:10px;
}
.combo2__hint{
  font-size:13px;
  font-weight:700;
  color:rgba(16,16,20,.62);
}
.combo2__media{
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(16,16,20,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}
.combo2__img{
  width:100%;
  height: clamp(260px, 34vw, 520px);
  object-fit:cover;
  display:block;
}
.combo2__media--placeholder{
  height: clamp(260px, 34vw, 520px);
  background:
    radial-gradient(900px 520px at 30% 28%, rgba(194,96,66,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
}

/* =========================================================
   LOCAL SECTION (carrossel + texto)
   ========================================================= */
.local-section{ overflow:hidden; }
.local-wrap{
  display:grid;
  grid-template-columns: 520px 1fr;
  gap:38px;
  align-items:center;
  max-width:1200px;
}

.local-carousel{ width:100%; }
.lc__frame{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background: rgba(0,0,0,.04);
  border:1px solid rgba(16,16,20,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}
.lc__viewport{
  position:relative;
  width:100%;
  aspect-ratio: 1 / 1;
  overflow:hidden;
}
.lc__slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .35s ease, transform .45s ease;
  margin:0;
}
.lc__slide.is-active{
  opacity:1;
  transform: scale(1);
}
.lc__slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.lc__nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  z-index:3;
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size:28px;
  line-height:1;
  display:grid;
  place-items:center;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.lc__nav:hover{
  background: rgba(0,0,0,.45);
  transform: translateY(-50%) scale(1.05);
}
.lc__nav--prev{ left:10px; }
.lc__nav--next{ right:10px; }

.lc__dots{
  display:flex;
  justify-content:center;
  gap:6px;
  padding:12px 8px;
}
.lc__dot{
  width:6px;
  height:6px;
  border-radius:999px;
  border:0;
  background: rgba(0,0,0,.22);
  cursor:pointer;
  transition: transform .18s ease, background .18s ease;
}
.lc__dot.is-active{
  background: rgba(0,0,0,.55);
  transform: scale(1.2);
}

.local-copy{ text-align:left; }
.local-title{
  margin:0 0 12px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height:1.15;
  letter-spacing:-.02em;
  font-weight:0;
  color:var(--muted);
}
.local-subtitle{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.65;
}
.local-address{
  margin:0 0 18px;
  padding:12px 14px;
  border-left:4px solid rgba(194,96,66,.45);
  background: rgba(0,0,0,.02);
  border-radius:14px;
  color:var(--muted);
  line-height:1.55;
}
.local-actions{
  display:grid;
  gap:10px;
  justify-items:start;
}
.local-hint{
  font-size:13px;
  font-weight:700;
  color: rgba(16,16,20,.62);
}
.local-address__link{
  color:inherit;
  text-decoration:underline;
  text-underline-offset:3px;
  font-weight:600;
  transition: opacity .2s ease;
}
.local-address__link:hover{ opacity:.8; }

/* =========================================================
   RESPONSIVO (consolidado e sem duplicações)
   ========================================================= */
@media (max-width:1200px){
  .section#cursos .services-grid.courses-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width:1000px){
  .site-footer::after{ right:-120px; top:120px; opacity:.14; }
}

@media (max-width:992px){
  .section#cursos .grid.grid--4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width:980px){
  .nav{ display:none; }
  .nav__toggle{ display:inline-block; }

  .hero--fullscreen{ padding: calc(var(--topbar-h) + 30px) 18px 46px; }
  .hero__container{ grid-template-columns:1fr; gap:26px; }

  .section{ padding: calc(var(--topbar-h) + 30px) 18px 54px; align-items:center; }
  .split{ grid-template-columns:1fr; }
  .grid--3{ grid-template-columns:1fr; }
  .grid--4{ grid-template-columns:1fr 1fr; }
  .testimonials{ grid-template-columns:1fr; }
  .mini-cards{ grid-template-columns:1fr; }
  .team{ grid-template-columns:1fr; }

  .hero__media{ min-height:480px; }
  .carousel{ height:480px; }

  /* HERO centralizado no mobile */
  .hero__content{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .hero__badge{ justify-content:center; text-align:center; }
  .hero__title,.hero__subtitle{ text-align:center; max-width:90%; }
  .hero__subtitle{ margin-left:auto; margin-right:auto; }

  /* Metodologia centralizada no mobile */
  .section#metodologia .split{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .section#metodologia .split__left,
  .section#metodologia .split__right{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .section#metodologia .h2-big,
  .section#metodologia .kicker,
  .section#metodologia .mini-card h3,
  .section#metodologia .mini-card p{ text-align:center; }

  .section#metodologia .mini-cards{ grid-template-columns:1fr; justify-items:center; }
  .section#metodologia .mini-card{ text-align:center; }
  .section#metodologia .btn{ margin-left:auto; margin-right:auto; }

  .section#metodologia .pp{
    align-items:center;
    justify-content:center;
    text-align:center;
  }
  .section#metodologia .pp > div{ text-align:center; }
  .section#metodologia .note{ text-align:center; }
  .section#metodologia .pp__icon{ margin-top:0; }

  /* Local: centraliza endereço */
  .section#local .local-copy{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .section#local .local-address{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }

  /* Ajustes gerais cursos */
  #cursos{ padding-bottom:90px; }
  #cursos .cta-row{ margin-top:28px; padding-bottom:16px; }

  /* local-wrap responsivo */
  .local-wrap{ grid-template-columns:1fr; gap:22px; }
  .local-copy{ text-align:center; }
  .local-actions{ justify-items:center; }
  .local-address{
    text-align:left;
    max-width:720px;
    margin-left:auto;
    margin-right:auto;
  }
  .lc__viewport{ aspect-ratio: 16 / 12; }
}

@media (max-width:768px){
  /* libera swipe no carrossel de cursos e impede overflow lateral */
  #cursos, #cursos .container{ max-width:100%; overflow-x:hidden; }

  .courses-carousel{
    width:100%;
    max-width:100%;
    overflow:hidden;
    margin-top:18px;
  }

  .cc__viewport{
    width:100%;
    max-width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    box-sizing:border-box;
    scroll-snap-type: x mandatory;
    padding:12px 0;
    scrollbar-width:none;
  }
  .cc__viewport::-webkit-scrollbar{ display:none; }

  .cc__track{
    gap:14px;
    padding:0 14px;
    width: fit-content;
    max-width:none;
  }

  .cc__card{
    width:78vw;
    max-width:320px;
    height:56vw;
    max-height:220px;
    scroll-snap-align:center;
  }
  .cc__card span{ font-size:18px; }
}

@media (max-width:576px){
  /* cursos grid */
  .section#cursos .grid.grid--4{ grid-template-columns:1fr; }
  .section#cursos .grid.grid--4 .course{ padding:30px 20px; }
  .section#cursos .grid.grid--4 .course .course__icon{
    width:70px; height:70px; font-size:1.5rem;
  }

  /* services cards */
  .section#cursos .services-grid.courses-grid{ grid-template-columns:1fr; }
  .section#cursos .service-card.course-card{ padding:30px 20px 46px; }
  .section#cursos .service-icon.course-icon{ width:70px; height:70px; font-size:26px; }

  /* centralizar seção cursos no mobile */
  .section#cursos{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
  }
  .section#cursos > .container{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:20px;
    text-align:center;
  }
  .section#cursos .section__header{ margin-bottom:8px; }
  .section#cursos .courses-carousel{ width:100%; max-width:100%; }
  .section#cursos .cta-row{
    margin-top:12px;
    display:flex;
    justify-content:center;
    width:100%;
  }

  /* centralizar conteúdo da section contato */
  .section#contato{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
  }

  /* contato: ajustes */
  .section#contato .closing--pro{
    border-radius:18px;
    padding:26px 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
  }
  .section#contato .closing--pro::before{
    inset:-55%;
    filter: blur(32px);
    opacity:.75;
  }
  .section#contato .closing__header{
    max-width:100%;
    margin:0 auto 18px;
    padding:0 24px;
  }
  .section#contato .closing__pill{
    margin-top:20px;
    margin-bottom:0;
    padding:9px 12px;
    font-size:12px;
    gap:8px;
  }
  .section#contato .closing__lead{
    margin:20px;
    max-width:70ch;
    font-size:clamp(15px,1.15vw,18px);
    line-height:1.6;
    color:rgba(16,16,20,.72);
  }
  .section#contato .closing__note{
    margin-top:20px;
  }
}

@media (max-width:980px){
  .combo2__grid{ grid-template-columns:1fr; gap:18px; }
  .combo2__media{ order:-1; }
  .combo2__ctaRow{ justify-items:center; }
  .combo2__content{ text-align:center; }
  .combo2__callout{
    text-align:left;
    max-width:720px;
    margin-left:auto;
    margin-right:auto;
  }
  /* seu último patch dizia centralizar callout no <=980 */
  .combo2__callout{ text-align:center; }
}
/* Correção para o e-mail não vazar no mobile */
.footer-info__item {
    overflow-wrap: break-word; /* Quebra o texto se for muito longo */
    word-wrap: break-word;      /* Suporte para navegadores mais antigos */
    word-break: break-word;     /* Garante a quebra em dispositivos mobile */
    max-width: 100%;            /* Impede que o parágrafo estique a tela */
}

/* Opcional: Diminuir levemente a fonte do e-mail no mobile para caber melhor */
@media (max-width: 480px) {
    .footer-info__item {
        font-size: 14px; 
    }
}

.social-btn svg {
  width: 30px;
  height: 30px;
  display: block;
}

.social-btn:hover {
  color: var(--muted); /* azul Facebook */
}

.world2__container{
  max-width:1200px;
  margin:0 auto;
}

.world2__header{
  text-align:center;
  max-width:980px;
  margin:0 auto 26px;
}

.world2__title{
  margin:0 0 12px;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height:1.05;
  letter-spacing:-.02em;
  font-weight:900;
  color:var(--accent);
  text-transform:uppercase;
}

.world2__grid{
  margin-top:26px;
  display:grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: clamp(48px, 6vw, 88px); /* separação clara */
  align-items:center;
  
}

/* IMAGEM (CARD) */
.world2__media{
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(16,16,20,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  margin-left: -100px;
  justify-self:start; /* <- joga pra esquerda */
  width:110%;
  max-width: 1000px;
}

.world2__img{
  width:100%;
  height: auto;
  object-fit:contain;
 
}


/* TEXTO */
.world2__content{
  padding-left: clamp(12px, 2vw, 32px);
  max-width: 560px; /* mantém leitura confortável */
}


.world2__h3{
  margin:0 0 12px;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing:-.02em;
  color:var(--muted);
  font-weight:900;
  text-transform:uppercase;
}

.world2__text{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.75;
  font-size:16px;
}

.world2__text strong{ color:var(--muted); }

.world2__callout{
  margin:16px 0 18px;
  padding-left:14px;
  border-left:4px solid rgba(194,96,66,.45);
}

.world2__callout p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.world2__ctaRow{
  margin-top:18px;
  display:grid;
  justify-items:start;
  gap:10px;
}

/* RESPONSIVO */
@media (max-width: 900px){
  .world2__grid{
    grid-template-columns: 1fr;
  }
  .world2__media{
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(16,16,20,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  margin-left: -20px;
  justify-self:start; /* <- joga pra esquerda */
  width:110%;
  max-width: 1000px;
}

  .world2__media{
    justify-self:stretch; /* no mobile ocupa tudo */
    min-height: clamp(240px, 55vw, 420px);
  }

  .world2__content{
    padding-left: 0;
  }
}

@media (max-width: 900px){
  .world2__content{
    text-align: center;
    margin: 0 auto;
  }

  .world2__ctaRow{
    justify-items: center;
  }

  .world2__callout{
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    border-left: none;
    border-top: 3px solid rgba(194,96,66,.45);
    padding-top: 12px;
  }
}

#fale-conosco-1 {
  position: relative;
  overflow: hidden;
  transition: transform 1s ease;
}

#fale-conosco-1::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: none;
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { left: -60%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

#fale-conosco-1:hover {
  transform: scale(1.05); /* Leve aumento ao passar o mouse */
}