/* Estilos para as páginas internas */

/* Importar fonte 29LT Zarid Sans Regular */
@font-face {
  font-family: "29LT Zarid Sans Regular";
  src: url("../fonts/29LT Zarid Sans Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --header-height: 80px;
}

/* Aplicar Glacial Indifference a todos os títulos */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
}

.page-container {
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.page-festival {
  background-color: var(--black);
  color: var(--white);
}

.page-cadastro {
  background-color: var(--white);
  color: var(--black);
}

.page-cadastro .festival-header {
  background-color: transparent;
}

.page-salao .festival-header {
  background-color: transparent;
}

.container .festival-header {
  background-color: transparent;
}

.page-cadastro .header-left,
.page-cadastro .header-center,
.page-cadastro .header-right {
  color: var(--white);
}

.page-cadastro .header-link {
  color: var(--white);
}

/* Header do Festival */
.festival-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 999;
  min-height: var(--header-height);
  max-height: var(--header-height);
  box-sizing: border-box;
  overflow: hidden;
  transform-origin: top;
  transition: max-height 0.4s ease-out, background-color 0.2s ease-out 0.4s, opacity 0.2s ease-out 0.4s;
}

.festival-header.menu-active {
  max-height: 100vh;
  height: 100vh;
  transition: max-height 0.4s ease-out 0.2s, height 0.4s ease-out 0.2s, background-color 0.2s ease-out, opacity 0.2s ease-out;
}

/* Container fixo para os botões do topo */
.festival-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background-color: transparent;
}

.festival-header-top .header-left,
.festival-header-top .header-center,
.festival-header-top .header-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.header-logo-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.header-logo-link:hover {
  opacity: 0.7;
}

.header-logo {
  width: 75px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
  height: 100%;
}

.festival-header.header-dark .festival-header-top .header-left,
.festival-header.header-dark .festival-header-top .header-center,
.festival-header.header-dark .festival-header-top .header-right {
  color: var(--black);
}

.festival-header.header-dark .festival-header-top .header-link {
  color: var(--black);
}

/* Quando o menu está ativo, forçar texto branco sempre */
.festival-header.menu-active .festival-header-top .header-left,
.festival-header.menu-active .festival-header-top .header-center,
.festival-header.menu-active .festival-header-top .header-right {
  color: var(--white) !important;
  transition: color 0.3s ease;
}

.festival-header.menu-active .festival-header-top .header-link {
  color: var(--white) !important;
  transition: color 0.3s ease;
}

.festival-header-top .header-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-link {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
  background: none;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.header-link:hover {
  opacity: 0.7;
}

.header-date-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.header-date-link:hover {
  opacity: 0.7;
}

/* Conteúdo principal do Festival */
.festival-main {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 80px;
  box-sizing: border-box;
  overflow: hidden;
}

.festival-background-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: overlay;
  z-index: 3;
  pointer-events: none;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  filter: grayscale(100%);
}

.slider-track-main {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-slide-main {
  position: absolute;
  top: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, left 0.3s ease;
  overflow: hidden;
  z-index: 1;
  width: 33.333%;
  /* Desktop: 3 imagens por vez */
}

.slider-slide-main.active {
  opacity: 1;
  z-index: 2;
}

/* Tablet: 2 imagens por vez (50% cada) */
@media (max-width: 1024px) and (min-width: 769px) {
  .slider-slide-main {
    width: 50%;
  }
}

/* Mobile: 1 imagem por vez (100%) */
@media (max-width: 768px) {
  .slider-slide-main {
    width: 100%;
    left: 0 !important;
  }
}

.slider-slide-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.festival-content-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.festival-fcm-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  pointer-events: auto;
}

.festival-fcm-logo {
  width: clamp(120px, 20vw, 200px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
}

.festival-fcm-date {
  font-family: "Neue Montreal", "Arial", "Helvetica", sans-serif;
  font-size: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Desktop: Logo maior e data escondida */
@media (min-width: 769px) {
  .festival-fcm-logo {
    width: clamp(300px, 40vw, 600px);
  }

  .festival-fcm-date {
    display: none;
  }
}

.festival-mobile-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  pointer-events: auto;
  z-index: 3;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
}

.festival-mobile-logo {
  width: clamp(200px, 60vw, 400px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
  margin-bottom: 4rem;
}

.festival-scroll-button {
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: all 0.3s ease;
  padding: 0;
}
/* Esconder botão de scroll no desktop */
.festival-scroll-button {
  display: none;
}

.festival-scroll-button:hover {
  background-color: var(--white);
  color: var(--black);
  transform: scale(1.1);
}

.festival-scroll-button:active {
  transform: scale(0.95);
}

.festival-scroll-button svg {
  width: 24px;
  height: 24px;
}

.festival-fcm {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(8rem, 25vw, 20rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

/* Página de Marcas */
.marcas-main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 768px) {
  .marcas-main {
    min-height: auto;
  }
}

.marcas-top {
  background-color: var(--black);
  color: var(--white);
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 3rem;
  padding-top: calc(80px + 4rem);
  box-sizing: border-box;
}

.marcas-subtitle {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.marcas-title {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.marcas-bottom {
  background-color: var(--white);
  color: var(--black);
  width: 100%;
  flex: 1;
  padding: 4rem 3rem;
  box-sizing: border-box;
}

.marcas-list {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.marcas-coming-soon {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  padding: 4rem 0;
}

/* Página de Cadastro */
.cadastro-top {
  background-color: var(--black);
  color: var(--white);
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
  padding-top: calc(80px + 2rem);
  box-sizing: border-box;
}

.cadastro-top-title {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
  line-height: 1.2;
  margin: 0;
  max-width: 1200px;
  width: 100%;
}

.cadastro-main {
  width: 100%;
  min-height: 50vh;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  box-sizing: border-box;
}

.cadastro-wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.cadastro-subtitle {
  width: 100%;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.cadastro-content {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: flex-start;
}

.cadastro-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cadastro-title {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--black);
  line-height: 1.2;
  margin: 0;
}


.cadastro-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin-top: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #999;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--black);
  border-width: 2px;
}

.form-select {
  cursor: pointer;
  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='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--black);
}

.checkbox-label {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.6;
  cursor: pointer;
}

.terms-link {
  color: var(--black);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.terms-link:hover {
  opacity: 0.7;
}

.form-submit {
  width: 100%;
  padding: 1.25rem 2rem;
  background-color: var(--black);
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 1rem;
  font-family: inherit;
}

.form-submit:hover {
  opacity: 0.9;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-submit .submit-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit .spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mensagens de feedback */
.cadastro-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

.cadastro-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.cadastro-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.cadastro-message.warning {
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.cadastro-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  min-height: 400px;
}

.cadastro-right-title {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 1rem 0;
  text-align: center;
}

.cadastro-right-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  margin: 0 0 2.5rem 0;
  text-align: center;
  max-width: 400px;
}

.cadastro-login-button {
  padding: 1.25rem 3rem;
  background-color: var(--white);
  color: var(--black);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--black);
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.cadastro-login-button:hover {
  background-color: var(--black);
  color: var(--white);
}

/* Footer do Festival */
.festival-footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .festival-footer {
    min-height: auto;
  }
}

/* Seção de Patrocinadores e Parceiros */
.footer-sponsors {
  background-color: var(--white);
  color: var(--black);
  padding: 4rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.sponsors-section,
.partners-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.sponsors-title,
.partners-title {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
}

.sponsor-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.sponsor-logo-img {
  max-width: 200px;
  max-height: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}

.sponsor-logo-text {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--black);
}

.nuvemshop-logo {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
  text-transform: lowercase;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
}

.partner-logo {
  font-size: clamp(1rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-img {
  max-width: 150px;
  max-height: 80px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Seção de Informações */
.footer-info {
  background-color: var(--black);
  color: var(--white);
  padding: 4rem 2rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex: 1;
}

.footer-logo {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  width: 75px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-columns {
  display: flex;
  gap: 4rem;
  flex: 1;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
}

.footer-heading {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-heading-link {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.footer-heading-link:hover {
  opacity: 0.7;
}

.footer-text {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.6;
}

.footer-link {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.7;
}

/* Segunda Seção do Festival */
.festival-section-two {
  display: flex;
  width: 100%;
  background-image: url("../images/sessao2.png");
  background-size: 50%;
  background-position: right top;
  background-repeat: no-repeat;
  align-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}

.section-two-left {
  width: 80%;
  color: var(--white);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
}

.section-two-main-text,
.section-two-subtitle,
.section-two-pillars {
  position: relative;
  z-index: 1;
}

.section-two-main-text {
  margin-bottom: 3rem;
}

.main-text-line {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--white);
}

.section-two-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8rem;
  opacity: 0.9;
}

.section-two-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-item {
  font-size: clamp(1rem, 1.5vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}

.section-two-right {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.section-two-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.section-three-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 4rem;
  margin: 0 0 4rem 0;
  gap: 3rem;
  box-sizing: border-box;
}

.section-three-item:last-child {
  margin-bottom: 0;
}

.section-three-title {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--white);
  flex: 0 0 25%;
  text-align: left;
}

.section-three-content {
  font-size: clamp(1rem, 2.25vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  flex: 1;
  text-align: left;
  line-height: 1;
}

.section-three-content > div {
  margin-bottom: 0.5rem;
}

.section-three-content > div:last-child {
  margin-bottom: 0;
}

/* Quarta Seção do Festival */
.festival-section-four {
  background-color: var(--white);
  color: var(--black);
  padding: 6rem 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .festival-section-four {
    min-height: auto;
  }
}

.section-four-wrapper {
  width: 100%;
  padding: 0 4rem;
  margin: 0;
  box-sizing: border-box;
}

.section-four-headline {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 3rem;
}

.section-four-paragraph {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 4rem;
}

.section-four-paragraph:last-child {
  margin-bottom: 0;
}

/* Quinta Seção - Galeria (Grid Denso) */
.festival-section-gallery {
  background-color: var(--black);
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

@media (max-width: 768px) {
  .festival-section-gallery {
    min-height: auto;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 80px;
  grid-auto-flow: dense;
  gap: 0;
  width: 100%;
  box-sizing: border-box;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

/* Imagens verticais (ratio < 0.85) - proporção 3:4 */
.gallery-item.vertical {
  grid-column: span 1;
  grid-row: span 4;
}

/* Imagens horizontais (ratio > 1.2) - proporção 16:9 ou 3:2 */
.gallery-item.horizontal {
  grid-column: span 1;
  grid-row: span 2;
}

/* Imagens quadradas ou quase (ratio 0.85-1.2) */
.gallery-item.square {
  grid-column: span 1;
  grid-row: span 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.gallery-item.loaded img {
  opacity: 1;
}

.gallery-item:hover {
  z-index: 10;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Galeria responsiva para telas grandes */
@media (min-width: 1600px) {
  .gallery-grid {
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 90px;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 70px;
  }
}

/* Sexta Seção - Público */
.festival-section-public {
  background-color: var(--black);
  color: var(--white);
  width: 100%;
  min-height: 100vh;
  padding: 4rem 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .festival-section-public {
    min-height: auto;
  }
}

.festival-section-public .container-fluid {
  width: 100%;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  box-sizing: border-box;
}

.public-left {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  margin-right: 4rem;
}

.public-title {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.public-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.6;
  opacity: 0.9;
}

.public-center {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.public-gender {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gender-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gender-percentage {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
}

.gender-label {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}

.public-age {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.age-title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.age-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.age-range {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
}

.age-percentage {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white);
}

.public-right {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-right: 2rem;
}

.public-category {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
}

.category-label {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}

.category-type {
  font-size: clamp(0.75rem, 1vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* Sétima Seção - Marcas Icônicas */
.festival-section-brands {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .festival-section-brands {
    min-height: auto;
  }
}

.brands-header {
  background-color: var(--black);
  color: var(--white);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brands-header-left,
.brands-header-right {
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.brands-header-center {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  max-width: 80%;
}

.brands-grid {
  background-color: var(--white);
  color: var(--black);
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex: 1 1 calc(16.666% - 2rem);
  min-width: 150px;
  max-height: 150px;
}

.brand-item:hover {
  transform: scale(1.05);
  border-color: var(--black);
}

/* Quando brand-item é um link (imagem) */
.brand-item.brand-item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  padding: 0;
}

.brand-item.brand-item-link:hover {
  transform: scale(1.05);
  border: none;
}

.brand-item-link img {
  width: 100%;
  height: 100%;
  max-height: 150px;
  object-fit: contain;
  display: block;
}

/* Oitava Seção - MODA */
.festival-section-moda {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .festival-section-moda {
    min-height: auto;
  }
}

.moda-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.moda-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.festival-section-moda.reversed .moda-content {
  flex-direction: row-reverse;
}

.moda-left {
  width: 66.66%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  box-sizing: border-box;
}

.moda-title {
  font-family: "Glacial Indifference", "Arial", "Helvetica", sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.moda-description {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.8;
  max-width: 80%;
  opacity: 0.95;
}

.moda-right {
  width: 33.33%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.moda-image {
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

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

/* Imagem ocupando toda altura nas seções que não são a primeira */
.festival-section-moda.full-image .moda-image-full {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  max-width: 100%;
  padding: 0;
}

.festival-section-moda.full-image .moda-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moda-image:empty::before,
.moda-image img[src=""]::after {
  content: "Imagem";
  position: absolute;
  color: #999;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
}

/* Nona Seção - NA MÍDIA */
.festival-section-media {
  width: 100%;
  position: relative;
}

.media-slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 2rem;
}

.slider-prev,
.slider-next {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  flex-shrink: 0;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: var(--white);
  color: var(--black);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background-color: var(--white);
}

.dot:hover {
  transform: scale(1.2);
}

/* Menu Overlay */
.menu-overlay {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: calc(100vh - var(--header-height));
  background-color: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-out 0.4s, visibility 0s linear 0.6s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease-out, visibility 0s linear 0s;
}

.festival-header.menu-active {
  background-color: var(--black) !important;
  opacity: 1;
}

.page-salao .festival-header.menu-active {
  background-color: #a7a6a6 !important;
}

.menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  width: 100%;
}

.menu-logo-wrapper {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-logo-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.menu-logo-link:hover {
  opacity: 0.7;
}

.menu-logo {
  width: 75px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: invert(1);
  transition: filter 0.3s ease;
}

.menu-navigation {
  width: 100%;
  max-width: 1200px;
}

.menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  text-align: center;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  color: var(--white);
}

.menu-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.menu-item:hover::after {
  width: 100%;
}

.menu-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 100%;
}

.menu-footer-title {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.menu-footer-title:hover {
  opacity: 0.7;
}

.page-salao {
  background-color: var(--white);
  color: var(--black);
}

/* Títulos do Salão usam 29LT Zarid Sans Regular */
.page-salao .marcas-title {
  font-family: "29LT Zarid Sans Regular", "Neue Montreal", "Arial", "Helvetica", sans-serif;
}

.page-salao h1,
.page-salao h2,
.page-salao h3,
.page-salao h4,
.page-salao h5,
.page-salao h6 {
  font-family: "29LT Zarid Sans Regular", "Neue Montreal", "Arial", "Helvetica", sans-serif;
}

.page-header {
  width: 100%;
  margin: 0 0 4rem 0;
  padding: 0 2rem;
  text-align: center;
}

.back-button {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: 2px solid currentColor;
  transition: var(--transition);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-festival .back-button {
  color: var(--white);
  border-color: var(--white);
}

.page-salao .back-button {
  color: var(--black);
  border-color: var(--black);
}

.back-button:hover {
  background-color: currentColor;
  color: var(--black);
}

.page-festival .back-button:hover {
  color: var(--white);
  background-color: var(--white);
  color: var(--black);
}

.page-salao .back-button:hover {
  color: var(--white);
  background-color: var(--black);
}

.page-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-label {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.page-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  align-self: flex-end;
  margin-right: 10%;
}

.page-content {
  width: 100%;
  margin: 0;
  padding: 0 2rem;
  padding-top: calc(80px + 2rem);
  box-sizing: border-box;
}

.content-wrapper {
  padding: 2rem;
  text-align: center;
  width: 100%;
}

.page-description {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  width: 100%;
  margin: 0;
  opacity: 0.9;
}

/* Responsividade Festival */


@media (max-width: 768px) {
  .festival-section-two {
    min-height: auto;
  }
  .media-slide {
    height: 27vh;
  }
  .pillar-item {
    font-size: clamp(0.75rem, 1.2vw, 1rem);
  }
  .menu-title {
    margin-bottom: 1rem;
  }
  .marcas-title,
  .cadastro-top-title,
  .moda-title,
  .media-title,
  .page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .section-three-title {
    font-size: clamp(1.25rem, 2.2vw, 2rem);
  }

  .section-four-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  .public-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
  }
}

/* Monitores HD (1367px - 1440px) */
@media (min-width: 1367px) and (max-width: 1440px) {
  .main-text-line {
    font-size: clamp(5rem, 6.8vw, 7.5rem);
  }

  .section-two-subtitle {
    font-size: clamp(1rem, 1.9vw, 1.6rem);
  }

  .pillar-item {
    font-size: clamp(1rem, 1.4vw, 2rem);
  }

  .marcas-title,
  .cadastro-top-title,
  .moda-title,
  .media-title,
  .page-title {
    font-size: clamp(3.5rem, 5.5vw, 4.8rem);
  }

  .section-three-title {
    font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  }

  .section-four-headline {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
  }

  .public-title {
    font-size: clamp(3rem, 4.8vw, 4.2rem);
  }
}

/* Monitores Full HD (1441px - 1920px) */
@media (min-width: 1441px) and (max-width: 1920px) {
  .main-text-line {
    font-size: clamp(5.5rem, 7.4vw, 9rem);
  }

  .section-two-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.8rem);
  }

  .pillar-item {
    font-size: clamp(1.1rem, 1.5vw, 2.5rem);
  }

  .marcas-title,
  .cadastro-top-title,
  .moda-title,
  .media-title,
  .page-title {
    font-size: clamp(4rem, 6vw, 5.5rem);
  }

  .section-three-title {
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  }

  .section-four-headline {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
  }
  .section-four-paragraph {
    font-size: clamp(1.25rem, 2vw, 2.2rem);
    text-align: justify;
  }

  .public-title {
    font-size: clamp(3.2rem, 5vw, 4.5rem);
  }
}

/* Monitores grandes (acima de 1920px) */
@media (min-width: 1921px) {
  .main-text-line {
    font-size: clamp(6rem, 7vw, 8rem);
  }

  .section-two-subtitle {
    font-size: clamp(1.125rem, 2.2vw, 1.75rem);
  }

  .pillar-item {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
  }

  .marcas-title,
  .cadastro-top-title,
  .moda-title,
  .media-title,
  .page-title {
    font-size: clamp(4.5rem, 7vw, 7rem);
  }

  .section-three-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }

  .section-four-headline {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
  }

  .public-title {
    font-size: clamp(4rem, 6vw, 5.5rem);
  }
}

@media (max-width: 768px) {
  .festival-header {
    padding: 1rem 0;
    font-size: 1rem;
  }

  .festival-fcm-container {
    display: block;
  }

  .festival-mobile-scroll {
    display: flex;
    bottom: 3rem;
  }

  .festival-scroll-button {
    display: flex;
  }

  .slider-slide-main {
    width: 100%;
    left: 0 !important;
  }

  .festival-header-top .header-left,
  .festival-header-top .header-center,
  .festival-header-top .header-right {
    padding: 0 !important;
    position: static !important;
  }

  .header-left,
  .header-center,
  .header-right {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--white) !important;
    z-index: 2;
    padding: 0 !important;
    position: static !important;
  }

  .festival-header-top .header-center {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .header-link {
    color: var(--white) !important;
  }

  .header-left {
    gap: 0.5rem;
  }

  .header-logo {
    width: 50px;
  }

  .header-left span,
  .header-left .header-date-link {
    display: none;
  }

  .header-left .header-logo-link {
    display: none;
  }

  .header-left::after {
    content: "FCM";
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.1em;
    display: block;
  }

  .footer-sponsors {
    padding: 3rem 2rem;
    gap: 3rem;
  }

  .partners-logos {
    gap: 2rem;
  }

  .footer-info {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-columns {
    gap: 2rem;
  }

  .marcas-title {
    font-size: clamp(1.5rem, 6vw, 3rem) !important;
  }

  .marcas-subtitle {
    font-size: clamp(0.875rem, 2vw, 1.25rem) !important;
  }

  .marcas-coming-soon {
    font-size: clamp(1.25rem, 4vw, 2.5rem) !important;
  }

  .cadastro-top-title {
    font-size: clamp(1.5rem, 6vw, 3rem) !important;
  }

  .cadastro-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
  }

  .cadastro-right-title {
    font-size: clamp(1.25rem, 4vw, 2rem) !important;
  }

  .marcas-top {
    height: 40vh;
    padding: 3rem 2rem;
  }

  .marcas-bottom {
    padding: 3rem 2rem;
  }

  .cadastro-top {
    height: 40vh;
    padding: 2rem 1.5rem;
  }

  .cadastro-main {
    padding: 2rem 1.5rem;
  }

  .cadastro-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .cadastro-right {
    min-height: auto;
    padding: 2rem 0;
  }

  .cadastro-right-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .cadastro-login-button {
    width: 100%;
  }

  .festival-section-two {
    flex-direction: column;
  }

  .section-two-left {
    width: 100%;
    padding: 3rem 2rem;
    background-image: none;
  }

  .section-two-left::before {
    display: none;
  }

  .main-text-line {
    font-size: 2rem !important;
  }

  .main-text-line h2 {
    font-size: 2rem !important;
  }

  .section-two-subtitle {
    font-size: 1rem !important;
    margin-bottom: 3rem !important;
  }

  .pillar-item {
    font-size: 1rem !important;
  }

  .section-two-right {
    width: 100%;
    min-height: 500px;
    order: 2;
  }

  .section-two-left {
    order: 1;
  }

  .section-three-item {
    flex-direction: column;
    gap: 2rem;
  }

  .section-three-title {
    flex: none;
    font-size: 1.2rem !important;
  }

  .section-three-content {
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-align: left;
  }

  .festival-section-four {
    padding: 4rem 2rem;
  }

  .section-four-wrapper {
    padding: 0 2rem !important;
  }

  .section-four-headline {
    font-size: 1.5rem !important;
  }

  .section-four-paragraph {
    font-size: clamp(0.875rem, 1.5vw, 1rem) !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 60px;
  }

  .festival-section-public {
    padding: 3rem 0;
  }
  
  .festival-section-public .container-fluid {
    flex-direction: column;
    padding: 0 2rem;
    gap: 2.5rem;
  }

  .public-title {
    font-size: 3rem !important;
  }

  .public-description {
    font-size: 1rem !important;
  }

  .gender-percentage {
    font-size: clamp(1.25rem, 3vw, 2rem) !important;
  }

  .gender-label {
    font-size: clamp(0.75rem, 1.5vw, 1rem) !important;
  }

  .category-number {
    font-size: clamp(1.25rem, 3vw, 2rem) !important;
  }

  .category-label {
    font-size: clamp(0.7rem, 1.2vw, 0.875rem) !important;
  }

  .public-left {
    flex: 1;
    width: 100%;
    margin-right: 0 !important;
  }

  .public-center {
    flex: 1;
    width: 100%;
    flex-direction: row !important;
    gap: 2rem !important;
  }

  .public-gender,
  .public-age {
    flex: 1;
  }

  .public-right {
    flex: 1;
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
  }

  .brands-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }

  .brand-item {
    grid-column: span 1 !important;
  }

  .moda-content {
    flex-direction: column;
  }

  .moda-left {
    width: 100% !important;
    padding: 3rem 2rem;
  }

  .festival-section-moda:not(.negocios-layout):not(.educacao-layout):not(.entreterimento-layout) .moda-left {
    width: 100% !important;
  }

  .moda-title {
    font-size: 5rem !important;
  }

  .moda-description {
    font-size: 1rem !important;
  }

  .media-title {
    font-size: clamp(1.5rem, 6vw, 3rem) !important;
  }

  .brands-header-center {
    font-size: 1.5rem !important;
  }

  .moda-right {
    width: 100%;
    padding: 2rem;
  }

  .moda-image {
    max-width: 100%;
  }

  .page-title {
    font-size: clamp(1.5rem, 6vw, 3rem) !important;
  }

  .page-label {
    font-size: clamp(0.75rem, 2vw, 1rem) !important;
  }

  .page-subtitle {
    font-size: clamp(0.75rem, 2vw, 1rem) !important;
  }

  .menu-item {
    padding: 0 !important;
    position: static !important;
  }

  .menu-item::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-three-item {
    padding: 0 2rem;
  }
  .section-four-wrapper {
    padding: 0;
  }
  .festival-header {
    padding: 0.75rem 0;
    flex-wrap: nowrap;
    gap: 0;
  }

  .festival-header-top .header-left,
  .festival-header-top .header-center,
  .festival-header-top .header-right {
    padding: 0 !important;
    position: static !important;
  }

  .header-left,
  .header-center,
  .header-right {
    /* font-size: clamp(0.65rem, 2.5vw, 0.85rem); */
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--white) !important;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    position: static !important;
  }

  .header-center {
    width: auto;
    text-align: center;
    order: 0;
  }

  .festival-header-top .header-center {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .header-link {
    color: var(--white) !important;
  }

  .header-left {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .header-right {
    justify-content: flex-end;
  }

  .header-logo {
    width: 45px;
  }

  .header-left span,
  .header-left .header-date-link {
    display: none;
  }

  .header-left .header-logo-link {
    display: none;
  }

  .header-left::after {
    content: "FCM";
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.1em;
    display: block;
  }

  /* Link do logo no mobile para páginas de cadastro e marcas */
  .header-mobile-logo-link {
    display: none;
  }

  .header-left.header-left-mobile-link::after {
    display: none;
  }

  .header-left.header-left-mobile-link .header-mobile-logo-link {
    display: block;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.1em;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }

  .header-left.header-left-mobile-link .header-mobile-logo-link:hover {
    opacity: 0.7;
  }

  .festival-section-two {
    flex-direction: column;
  }

  .section-two-left {
    background-image: none;
  }

  .section-two-left::before {
    display: none;
  }

  .section-two-right {
    order: 2;
  }

  .section-two-left {
    order: 1;
  }

  .marcas-title {
    font-size: clamp(1.25rem, 5vw, 2.5rem) !important;
  }

  .marcas-subtitle {
    font-size: clamp(0.75rem, 1.8vw, 1rem) !important;
  }

  .marcas-coming-soon {
    font-size: clamp(1rem, 3.5vw, 2rem) !important;
  }

  .cadastro-top-title {
    font-size: clamp(1.25rem, 5vw, 2.5rem) !important;
  }

  .cadastro-title {
    font-size: clamp(1.25rem, 3.5vw, 2rem) !important;
  }

  .cadastro-right-title {
    font-size: clamp(1rem, 3.5vw, 1.75rem) !important;
  }

  .section-two-left {
    width: 100%;
    padding: 3rem 2rem;
  }

  .main-text-line {
    font-size: 2rem !important;
  }

  .main-text-line h2 {
    font-size: 2rem !important;
  }

  .section-two-subtitle {
    font-size: 1rem !important;
    margin-bottom: 3rem !important;
  }

  .pillar-item {
    font-size: 1rem !important;
  }

  .section-two-right {
    width: 100%;
    min-height: 400px;
  }

  .section-three-item {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-three-title {
    flex: none;
    font-size: 1.2rem !important;
  }

  .section-three-content {
    text-align: left;
    font-size: 1rem !important;
    font-weight: 700 !important;
  }

  .festival-section-four {
    padding: 4rem 1.5rem;
  }

  .section-four-wrapper {
    padding: 0 2rem !important;
  }

  .section-four-headline {
    font-size: 1.5rem !important;
  }

  .section-four-paragraph {
    font-size: clamp(0.75rem, 1.3vw, 0.875rem) !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 50px;
  }

  .festival-section-gallery {
    padding: 0;
  }

  .festival-section-public {
    padding: 3rem 0;
  }
  
  .festival-section-public .container-fluid {
    flex-direction: column;
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .public-left {
    flex: 1;
    width: 100%;
    margin-right: 0 !important;
  }

  .public-center {
    flex: 1;
    width: 100%;
    flex-direction: row !important;
    gap: 2rem !important;
  }

  .public-gender,
  .public-age {
    flex: 1;
  }

  .public-right {
    flex: 1;
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
  }

  .public-title {
    font-size: 3rem !important;
  }

  .public-description {
    font-size: 1rem !important;
  }

  .gender-percentage {
    font-size: clamp(1rem, 2.5vw, 1.75rem) !important;
  }

  .gender-label {
    font-size: clamp(0.65rem, 1.3vw, 0.875rem) !important;
  }

  .category-number {
    font-size: clamp(1rem, 2.5vw, 1.75rem) !important;
  }

  .category-label {
    font-size: clamp(0.65rem, 1.1vw, 0.75rem) !important;
  }

  .brands-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .brands-header-center {
    font-size: 1.5rem !important;
  }

  .brands-header-center {
    position: static;
    transform: none;
    max-width: 100%;
    order: 2;
  }

  .brands-header-left,
  .brands-header-right {
    order: 1;
  }

  .brands-header-center {
    font-size: 1.5rem !important;
  }

  .brands-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 2rem 1rem;
    gap: 1rem;
  }

  .brand-item {
    grid-column: span 1 !important;
  }

  .moda-content {
    flex-direction: column;
  }

  .moda-left {
    width: 100% !important;
    padding: 2rem 1.5rem;
  }

  .festival-section-moda:not(.negocios-layout):not(.educacao-layout):not(.entreterimento-layout) .moda-left {
    width: 100% !important;
  }

  .moda-title {
    margin-bottom: 2rem;
    font-size: 5rem !important;
  }

  .moda-description {
    max-width: 100%;
    font-size: 1rem !important;
  }

  .festival-section-moda.negocios-layout .moda-left .moda-title {
    margin-left: 0 !important;
    font-size: 3.5rem !important;
  }

  .festival-section-moda.entreterimento-layout .moda-left .moda-title {
    font-size: 3.5rem !important;
  }

  .festival-section-moda.negocios-layout .moda-image-lateral,
  .festival-section-moda.educacao-layout .moda-image-lateral,
  .festival-section-moda.entreterimento-layout .moda-image-lateral {
    height: 67vh !important;
  }

  .media-title {
    font-size: clamp(1.25rem, 5vw, 2.5rem) !important;
  }

  .moda-right {
    width: 100%;
    padding: 2rem;
  }

  .moda-image {
    max-width: 100%;
  }

  .page-title {
    font-size: clamp(1.25rem, 5vw, 2.5rem) !important;
  }

  .page-label {
    font-size: clamp(0.65rem, 1.8vw, 0.875rem) !important;
  }

  .page-subtitle {
    font-size: clamp(0.65rem, 1.8vw, 0.875rem) !important;
  }

  .cadastro-top {
    height: 35vh;
    padding: 1.5rem 1rem;
  }

  .cadastro-title {
    font-size: 2rem;
  }

  .cadastro-bottom {
    padding: 2rem 1rem;
  }

  .cadastro-content {
    gap: 2rem;
  }

  .cadastro-intro {
    max-width: 100%;
  }

  .cadastro-form {
    gap: 1.5rem;
  }

  .media-content {
    padding: 2rem 1rem;
  }

  .media-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }

  .media-slider {
    flex-direction: column;
    gap: 1rem;
  }

  .slider-prev,
  .slider-next {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    order: 2;
  }

  .slider-container {
    order: 1;
  }

  .cadastro-main {
    padding: 1.5rem 1rem;
  }

  .cadastro-content {
    gap: 3rem;
  }

  .cadastro-top {
    height: 35vh;
    padding: 2rem 1.5rem;
  }

  .cadastro-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .cadastro-right-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .form-submit,
  .cadastro-login-button {
    padding: 1rem 2rem;
    width: 100%;
  }

  .slider-dots {
    order: 3;
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .footer-sponsors {
    padding: 3rem 1.5rem;
    gap: 3rem;
  }

  .partners-logos {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-info {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 3rem;
  }

  .footer-logo {
    text-align: center;
    width: 100%;
  }

  .footer-columns {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .footer-column {
    min-width: 100%;
  }

  .marcas-content {
    flex-direction: column;
  }

  .marcas-top {
    height: 35vh;
    padding: 2rem 1.5rem;
  }

  .marcas-bottom {
    padding: 2rem 1.5rem;
  }

  .menu-item {
    padding: 0 !important;
    position: static !important;
  }

  .menu-item::after {
    display: none;
  }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  background-color: #333;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Botão WhatsApp sobre fundo branco */
.whatsapp-float.whatsapp-light {
  background-color: var(--white);
  color: var(--black);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float.whatsapp-light:hover {
  background-color: #f0f0f0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
