/* =============================================================
   BYA ALVES — Site Profissional de Cantora
   Paleta: Dark Mode Elegante + Rose Gold Accent
   Fontes: Cormorant Garamond (serif) + DM Sans (sans-serif)
   Mobile-first | Responsivo 320px → 1440px
   ============================================================= */

/* --- CSS Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta — Dark Mode */
  --bg-primary: #0A0A0B;
  --bg-secondary: #111113;
  --bg-card: #18181B;
  --bg-card-hover: #1F1F23;
  --bg-elevated: #222226;

  /* Accent — Rose Gold */
  --accent: #E8A87C;
  --accent-light: #F3C9A8;
  --accent-dim: #C48B64;
  --accent-glow: rgba(232, 168, 124, 0.12);
  --accent-glow-strong: rgba(232, 168, 124, 0.25);

  /* Texto */
  --text-primary: #F5F2EF;
  --text-secondary: #A09A95;
  --text-muted: #6B6560;
  --text-inverse: #0A0A0B;

  /* Superfícies */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.10);
  --border-accent: rgba(232, 168, 124, 0.20);

  /* Tipografia */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Espaçamento */
  --section-padding: 5rem 0;
  --container-max: 1200px;
  --container-padding: 1.25rem;

  /* Transições */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(232, 168, 124, 0.15);

  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 50%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* --- Section titles --- */
.section {
  padding: var(--section-padding);
}

.section--alt {
  background-color: var(--bg-secondary);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section__title--center {
  text-align: center;
}

.section__title--light {
  color: var(--text-primary);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section__subtitle--light {
  color: var(--text-secondary);
}

/* --- Decorative accent line --- */
.accent-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dim));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition-fast);
  text-align: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--text-inverse);
  border-color: var(--accent);
}

.btn--primary:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--border-accent);
}

.btn--outline:hover {
  border-color: var(--accent);
  background-color: var(--accent-glow);
  transform: translateY(-2px);
}

.btn--submit {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }
.reveal:nth-child(9) { transition-delay: 0.64s; }


/* =============================================================
   NAVBAR
   ============================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-medium);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.navbar__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--accent);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.active .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active .navbar__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu mobile */
.navbar__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-card);
  border-left: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right var(--transition-medium);
  z-index: 1000;
}

.navbar__menu.open {
  right: 0;
}

.navbar__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.navbar__link {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  letter-spacing: 0.02em;
}

.navbar__link:hover,
.navbar__link:focus {
  color: var(--accent);
}

.navbar__link--cta {
  background-color: transparent;
  color: var(--accent);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navbar__link--cta:hover {
  background-color: var(--accent);
  color: var(--text-inverse);
}

/* Overlay para menu mobile */
.navbar__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.navbar__overlay.visible {
  opacity: 1;
  visibility: visible;
}


/* =============================================================
   1. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* [FOTO HERO — substituir]
     Descomente a linha abaixo e aponte para a foto real:
     background-image: url('../images/hero.jpg'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(10, 10, 11, 0.95) 0%,
    rgba(10, 10, 11, 0.85) 40%,
    rgba(24, 24, 27, 0.80) 100%
  );
  z-index: 2;
}

.hero__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(
    160deg,
    #0A0A0B 0%,
    #141416 40%,
    #1C1C1F 100%
  );
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem var(--container-padding);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 11vw, 7rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 0.95;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
}

.hero__divider {
  display: block;
  width: 80px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 1rem auto 1.25rem;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 2.2vw, 1rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.hero__actions .btn {
  width: 100%;
}


/* =============================================================
   2. SOBRE
   ============================================================= */
.sobre__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.sobre__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.sobre__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.sobre__text .section__title {
  margin-bottom: 1.5rem;
}

.sobre__bio {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sobre__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.badge:hover {
  background-color: var(--accent-glow);
  border-color: var(--accent);
}

.badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
  stroke: currentColor;
}

/* Placeholder de imagem elegante */
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(160deg, var(--bg-secondary), var(--bg-card));
  color: var(--text-muted);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--border-subtle);
}

.image-placeholder--vertical {
  width: 100%;
  aspect-ratio: 2 / 3;
  max-width: 450px;
  margin: 0 auto;
}

.image-placeholder--gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  font-size: 0.65rem;
}


/* =============================================================
   3. REPERTÓRIO
   ============================================================= */
.repertorio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.repertorio__card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: default;
}

.repertorio__card:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  background-color: var(--bg-card-hover);
}

.repertorio__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 0.65rem;
  border-radius: var(--radius-sm);
  background-color: var(--accent-glow);
  color: var(--accent);
  overflow: hidden;
}

.repertorio__icon svg {
  display: block;
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.repertorio__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.repertorio__desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}


/* =============================================================
   4. DEPOIMENTOS
   ============================================================= */
.depoimentos__grid {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.depoimentos__grid::-webkit-scrollbar {
  display: none;
}

.depoimentos__card {
  min-width: 82%;
  scroll-snap-align: center;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  transition: border-color var(--transition-fast);
}

.depoimentos__card:hover {
  border-color: var(--border-accent);
}

.depoimentos__avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  border: 2px solid var(--accent-glow-strong);
}

.depoimentos__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--bg-secondary), var(--bg-card));
  color: var(--text-muted);
}

.depoimentos__text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.depoimentos__text::before {
  content: '\201C';
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-style: normal;
  color: var(--accent);
  line-height: 0.8;
  margin-bottom: 0.4rem;
  opacity: 0.5;
}

.depoimentos__author {
  font-style: normal;
}

.depoimentos__author strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.depoimentos__author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Carousel dots */
.depoimentos__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.depoimentos__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-muted);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.depoimentos__dot.active {
  background-color: var(--accent);
  width: 24px;
  border-radius: 4px;
}


/* =============================================================
   5. CONTATO
   ============================================================= */
.contato {
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
  position: relative;
}

.contato::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.contato__channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contato__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-card);
  transition: all var(--transition-fast);
  color: var(--text-primary);
}

.contato__channel:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contato__channel--whatsapp:hover {
  border-color: #25D366;
}
.contato__channel--whatsapp:hover svg {
  color: #25D366;
}

.contato__channel--instagram:hover {
  border-color: #E1306C;
}
.contato__channel--instagram:hover svg {
  color: #E1306C;
}

.contato__channel--email:hover {
  border-color: var(--accent);
}
.contato__channel--email:hover svg {
  color: var(--accent);
}

.contato__channel svg {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  width: 28px;
  height: 28px;
}

.contato__channel-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contato__channel-label {
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.contato__channel-value {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Formulário */
.contato__form {
  max-width: 700px;
  margin: 0 auto;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__group--full {
  margin-bottom: 1.5rem;
}

.form__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form__input {
  padding: 0.85rem 1rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  outline: none;
}

.form__input::placeholder {
  color: var(--text-muted);
}

.form__input:focus {
  border-color: var(--accent);
  background-color: var(--bg-card-hover);
}

.form__select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23E8A87C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__select option {
  background-color: var(--bg-card);
  color: var(--text-primary);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__status {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  min-height: 1.5em;
}

.form__status--success {
  color: #4ADE80;
}

.form__status--error {
  color: #F87171;
}


/* =============================================================
   6. FOOTER
   ============================================================= */
.footer {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.footer__inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.footer__list a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__list a:hover {
  color: var(--accent);
}

.footer__social-icons {
  display: flex;
  gap: 0.75rem;
}

.footer__social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer__social-icons a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: var(--accent-glow);
}

.footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
}

.footer__copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.footer__credit {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer__credit a {
  color: var(--text-secondary);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-fast);
}

.footer__credit a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


/* =============================================================
   RESPONSIVO — Tablet (768px+)
   ============================================================= */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .hero__actions {
    flex-direction: row;
    gap: 1.25rem;
    max-width: none;
  }

  .hero__actions .btn {
    width: auto;
  }

  .sobre__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  .repertorio__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .depoimentos__card {
    min-width: 45%;
  }

  .contato__channels {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}


/* =============================================================
   RESPONSIVO — Desktop (1024px+)
   ============================================================= */
@media (min-width: 1024px) {
  .navbar__toggle {
    display: none;
  }

  .navbar__menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background-color: transparent;
    border-left: none;
  }

  .navbar__list {
    flex-direction: row;
    gap: 0;
  }

  .navbar__link {
    font-size: 0.88rem;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
  }

  .navbar__link:hover {
    color: var(--accent);
  }

  /* Underline hover effect */
  .navbar__link:not(.navbar__link--cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
  }

  .navbar__link:not(.navbar__link--cta):hover::after {
    width: 60%;
  }

  .navbar__link--cta {
    margin-left: 0.5rem;
  }

  .repertorio__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .repertorio__grid .repertorio__card:last-child {
    grid-column: auto;
  }

  .depoimentos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .depoimentos__card {
    min-width: unset;
  }

  .depoimentos__dots {
    display: none;
  }
}


/* =============================================================
   RESPONSIVO — Large Desktop (1440px+)
   ============================================================= */
@media (min-width: 1440px) {
  :root {
    --container-max: 1320px;
  }
}


/* =============================================================
   UTILIDADES
   ============================================================= */
.hidden {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background-color: var(--accent);
  color: var(--text-inverse);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
