:root {
  --red: #da251c;
  --red-hover: #d86963;
  --text: #4a4a4a;
  --black: #333;
  --footer-bg: #efefef;
  --footer-link: #dd3333;
  --max: 1200px;
  --font-body: Poppins, sans-serif;
  --font-display: 'Passion One', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.4;
  margin: 0 0 0.5em;
}

h2 {
  font-family: var(--font-script);
  font-size: 44px;
  font-weight: 600;
  color: var(--red);
  line-height: 1.4;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 15px;
}

/* Header topo */
.site-header {
  background: #fff;
}

.topo {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo img {
  width: 98px;
  height: auto;
  max-height: 130px;
}

.dados {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 5px;
  color: var(--red);
  font-size: 16px;
}

.dados a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 15px;
}

.dados a span {
  font-weight: 700;
  color: var(--red);
}

.dados a:hover {
  color: var(--red);
}

.icon-mail {
  color: var(--red);
  flex-shrink: 0;
}

/* Nav */
.nav-wrap {
  background: var(--red);
  text-align: center;
}

.mobile-toggle {
  display: none;
  background: var(--red);
  color: #fff;
  border: 0;
  font-family: var(--font-script);
  font-size: 22px;
  padding: 14px 20px;
  width: 100%;
  cursor: pointer;
}

.menu-principal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.menu-principal > li {
  position: relative;
}

.menu-principal > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  background: var(--red);
  font-family: var(--font-script);
  font-size: 22px;
  font-weight: 100;
  line-height: 60px;
  padding: 0 15px;
  white-space: nowrap;
}

.menu-principal > li > a:hover,
.menu-principal > li.active > a {
  color: #fff;
  background: var(--red);
}

.nav-arrow {
  width: 12px;
  height: 12px;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-top: 3px solid var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  z-index: 50;
  text-align: left;
}

.has-children:hover > .sub-menu,
.has-children:focus-within > .sub-menu {
  display: block;
}

.sub-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  color: var(--black);
  font-family: var(--font-body);
}

.sub-menu a:hover {
  color: var(--red);
  background: #fafafa;
}

/* Hero slider */
.hero-slider {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: #333;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center center;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.72;
}

.hero-slide.no-overlay .overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.fraseBanner h1 {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1.15;
  color: #fff !important;
  margin: 50px auto 24px;
  max-width: 1000px;
  text-transform: uppercase;
}

.saibaMais {
  display: inline-block;
  background: var(--red);
  padding: 10px 25px;
  border-radius: 20px;
}

.saibaMais a,
a.saibaMais {
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.saibaMaisbranco {
  display: inline-block;
  background: #fff;
  padding: 10px 25px;
  border-radius: 20px;
}

.saibaMaisbranco a,
a.saibaMaisbranco {
  color: #000 !important;
  font-weight: 600;
}

.saibaMaisPreto {
  display: inline-block;
  background: #000;
  padding: 10px 25px;
  border-radius: 20px;
}

.saibaMaisPreto a,
a.saibaMaisPreto {
  color: #fff !important;
  font-weight: 600;
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dots button.is-active {
  background: #fff;
}

/* About — fundo #efefef full-bleed, conteúdo 1200 */
.about-section {
  background: #efefef;
}

.about-grid {
  display: grid;
  grid-template-columns: 462px 1fr;
  gap: 30px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 15px;
  min-height: 500px;
}

.about-photo img {
  width: 462px;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-text {
  padding-top: 20px;
}

.about-text h2 {
  font-size: 44px;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.4;
}

.about-text p {
  margin: 0 0 1em;
  color: var(--black);
}

.about-cta {
  margin-top: 20px;
}

/* Feature tiles (Serviços/Vídeos/Depoimentos/Fotos) */
.feature-band {
  background-position: center center;
  background-repeat: no-repeat;
}

.feature-band--notes {
  background-image: url('/assets/img/musical.png');
  background-repeat: no-repeat;
  background-position: center center;
}

.feature-band--notes-repeat {
  background-image: url('/assets/img/musical.png');
  background-repeat: repeat;
}

.feature-quad {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 352px;
}

.feature-spacer {
  min-height: 1px;
}

.feature-tile {
  min-height: 350px;
  padding: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.feature-tile--red {
  background: var(--red);
}

.feature-tile--black {
  background: #000;
}

.feature-icon {
  width: 80px;
  height: 80px;
  font-size: 80px !important;
  line-height: 1;
  color: #fff;
  margin: 0 auto 10px;
  display: inline-block;
}

.feature-tile h2 {
  margin: 0;
  padding-bottom: 25px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 1.4;
}

.feature-tile h2 a {
  color: #fff !important;
}

.feature-tile h2 a:hover {
  color: #fff !important;
  opacity: 0.9;
}

.feature-tile p {
  margin-top: 40px;
}

.band-section {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.band-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.69;
}

.band-section .inner {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

.band-section h1 {
  font-family: var(--font-display);
  font-size: 48px;
  color: #fff;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.band-section .novidades-sub {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  margin: 0;
}

/* Page header */
.page-header {
  background: #f5f5f5;
  padding: 34px 0;
  position: relative;
}

.page-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 53px;
}

.page-header-title {
  font-family: var(--font-script);
  font-size: 38px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

.site-breadcrumbs {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #6f6f6f;
  line-height: 1.4;
}

.site-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.site-breadcrumbs a {
  color: #6f6f6f;
}

.site-breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumb-sep {
  margin: 0 6px;
  color: #6f6f6f;
}

.content-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 50px 15px 60px;
  width: 100%;
}

.content-wrap p {
  margin: 0 0 1em;
}

.content-wrap h3,
.content-wrap strong.block-title {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 22px;
  display: block;
  margin: 1.5em 0 0.5em;
}

.repertorio-list li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.repertorio-list li::before {
  content: '♫ ';
  color: var(--red);
  font-size: 18px;
  vertical-align: middle;
}

.repertorio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 0;
}

.repertorio-card {
  padding: 20px;
  text-align: center;
  border: 0;
}

.repertorio-card--black {
  background: #000;
}

.repertorio-card--red {
  background: var(--red);
}

.repertorio-card h3,
.repertorio-card h2 {
  font-family: var(--font-script);
  color: #fff;
  font-size: 30px;
  margin: 0;
  padding-bottom: 25px;
  line-height: 1.4;
}

.repertorio-card .feature-icon {
  font-size: 80px !important;
  color: #fff;
  margin-bottom: 8px;
}

.repertorio-card p {
  margin-top: 10px;
}

.repertorio-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.servicos-hero {
  display: grid;
  grid-template-columns: 38.5% 61.5%;
  gap: 30px;
  margin-bottom: 30px;
  align-items: start;
}

.servicos-hero img {
  width: 100%;
  height: auto;
}

.servicos-box {
  background: #f8f8f8;
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 0;
}

.servicos-box p {
  margin: 0 0 1em;
}

.servicos-box .svc-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 0.8em;
}

.servicos-box .svc-title i {
  color: var(--red);
  margin-right: 6px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.quem-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.quem-cols h3 {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 18px;
  margin: 0 0 12px;
}

.quem-closing {
  text-align: center;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  margin: 30px 0 0;
  line-height: 1.4;
}

/* Depoimentos */
.depoimento-item {
  border-bottom: 1px dotted #ccc;
  padding: 0 0 30px;
  margin-bottom: 30px;
}

.depoimento-item:last-child {
  border-bottom: none;
}

.depoimento-item h3 {
  font-family: var(--font-script);
  font-size: 20px;
  font-weight: 600;
  color: var(--red);
  line-height: 1.4;
  margin: 0 0 10px;
  pointer-events: none;
}

.contact-form {
  max-width: 100%;
}

/* Videos — facade (thumbnail até o clique) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.video-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--red);
  margin: 12px 0 0;
  pointer-events: none;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #111;
  overflow: hidden;
}

.video-frame iframe,
.yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-facade {
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
  background: #111;
}

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

.yt-facade-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 48px;
  margin: -24px 0 0 -34px;
  border-radius: 14px;
  background: #da251c;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.yt-facade-play::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 14px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.yt-facade:hover .yt-facade-play,
.yt-facade:focus-visible .yt-facade-play {
  background: #b51d16;
  transform: scale(1.05);
}

.yt-facade:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

/* Fotos gallery */
.fotos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fotos-grid a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f3f3f3;
}

.fotos-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.fotos-grid a:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

/* Form */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--black);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.btn-submit {
  background: var(--red);
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 28px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--red-hover);
}

.form-feedback {
  margin-top: 14px;
  padding: 10px;
  border-radius: 4px;
  display: none;
}

.form-feedback.is-ok {
  display: block;
  background: #e8f8ef;
  color: #146c2e;
}

.form-feedback.is-err {
  display: block;
  background: #fdecea;
  color: #a32018;
}

/* Footer */
.site-footer {
  margin-top: 0;
}

.footer-contact-band {
  background: var(--footer-bg);
  padding: 25px 0;
  color: #000;
}

.footer-contact-inner {
  text-align: center;
  max-width: 1170px;
}

.footer-contact-band h2 {
  font-size: 40px;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 22px;
  vertical-align: middle;
}

.footer-contact a:hover {
  color: #000;
}

.footer-contact .fa-envelope {
  font-size: 30px;
  color: var(--red);
}

.footer-social-band {
  background-image: url('/assets/img/photo03.png');
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  padding: 150px 0;
  text-align: center;
  min-height: 439px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-band h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.social-links img {
  width: 64px;
  height: 64px;
}

.footer-bottom {
  background: #fff;
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: #000;
}

.footer-bottom a,
.footer-policies a {
  color: var(--footer-link);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.wa-float:hover {
  color: #fff;
  transform: scale(1.05);
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 1.4em;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--black);
  margin-top: 1em;
}

/* Mobile */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 30px 15px;
  }

  .about-photo img {
    width: 100%;
    height: auto;
    max-height: 480px;
  }

  .feature-quad {
    grid-template-columns: 1fr;
    padding: 20px 15px;
    gap: 30px;
  }

  .feature-spacer {
    display: none;
  }

  .repertorio-cards,
  .repertorio-cols,
  .servicos-hero,
  .servicos-grid,
  .quem-cols {
    grid-template-columns: 1fr;
  }

  .site-breadcrumbs {
    position: static;
    transform: none;
    margin-top: 10px;
  }

  .page-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .fotos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fraseBanner h1 {
    font-size: 34px;
    margin-top: 20px;
  }

  .hero-slider {
    height: 420px;
  }

  .band-section h1 {
    font-size: 28px;
  }

  .footer-social-band {
    background-attachment: scroll;
    padding: 80px 20px;
    min-height: 280px;
  }

  h2 {
    font-size: 32px;
  }
}

@media (max-width: 780px) {
  .topo {
    flex-direction: column;
    text-align: center;
  }

  .dados {
    align-items: center;
    padding-right: 0;
  }

  .dados li {
    padding-right: 0 !important;
  }

  .mobile-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    background: var(--red);
  }

  .main-nav.is-open {
    display: block;
  }

  .menu-principal {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-principal > li > a {
    line-height: 48px;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    border-top: 0;
    background: #b81e17;
  }

  .has-children.open > .sub-menu {
    display: block;
  }

  .sub-menu a {
    color: #fff;
    text-align: center;
    padding: 12px;
  }

  .sub-menu a:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
  }
}

@media (max-width: 500px) {
  h1,
  h2 {
    font-size: 25px !important;
  }

  .page-header-title {
    font-size: 28px;
  }

  .fraseBanner h1 {
    font-size: 28px !important;
  }
}
