/* ==================== VARIÁVEIS DE COR ==================== */
:root {
  --cor-roxo: #6a0dad; /* Cor base do BGHOME4.png (aproximada) */
  --cor-roxoclaro: #b287fd; /* Cor base do BGHOME4.png (aproximada) */
  --cor-chumbo: #1a1a1a; /* Cor de fundo da pagina2.png (chumbo escuro) */
  --cor-branco: #ffffff;
  --cor-preto: #000000;
  --cor-cinza-claro: #f0f0f0; /* Cor de fundo da pagina4.png */
  --cor-cinza-medium: #f0f0f0; /* Cor de fundo da pagina4.png */

  --texto-primario: var(--cor-preto);
  --texto-secundario: var(--cor-branco);

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1rem;
  --spacing-lg: 1rem;
  --spacing-xl: 1rem;
  --spacing-xxl: 10rem;

  /*--font-family-display: 'Darker Grotesque', sans-serif;
  --font-family-body: 'Darker Grotesque', sans-serif;*/
  --font-family-display: 'ObviouslyCond Black', sans-serif;
  --font-family-body: 'ObviouslyCond Black', sans-serif;
  --font-size-display: 6rem;
  --font-size-title: 2.5rem;
  --font-size-body: 1.1rem;
  --font-size-small: 0.9rem;

  --transition-smooth: 0.3s ease-in-out;
}

/* ==================== FONTES PERSONALIZADAS ==================== */
@font-face {
    font-family: 'Darker Grotesque1';
    src: url('../fonts/DarkerGrotesque-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Darker Grotesque2';
    src: url('../fonts/DarkerGrotesque-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Darker Grotesque3';
    src: url('../fonts/DarkerGrotesque-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Darker Grotesque4';
    src: url('../fonts/DarkerGrotesque-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Darker Grotesque5';
    src: url('../fonts/DarkerGrotesque-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* Range de pesos */
    font-style: normal;
}

/* Fonte ObviouslyCond Black */
@font-face {
  font-family: 'ObviouslyCond Black';
  src: url('../fonts/ObviouslyCond-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

/* Fonte ObviouslyCond Bold */
@font-face {
  font-family: 'ObviouslyCond Bold';
  src: url('../fonts/ObviouslyCond-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* Fonte ObviouslyCond Medium */
@font-face {
  font-family: 'ObviouslyCond Medium';
  src: url('../fonts/ObviouslyCond-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}


/* ==================== RESET & GLOBAIS ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family-body);
  background-color: var(--cor-branco);
  color: var(--texto-primario);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ==================== HEADER FIXO (Barra Superior) ==================== */
.main-header {
    position: fixed;
    top: 20px; /* Espaçamento do topo */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    height: 60px; /* Altura da barra */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-md);
    z-index: 1000; /* Aumentado para garantir sobreposição */
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 10px;
}

.header-logo {
    /* Contêiner da logomarca */
    height: 30px; /* Altura da logomarca */
    width: 120px; /* Largura da logomarca */
    position: relative;
}

.header-logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.header-logo .logo-preto {
    opacity: 0; /* Começa invisível */
}

.header-logo .logo-branco {
    opacity: 1; /* Começa visível (para o caso de um fundo escuro padrão) */
}

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: var(--font-size-small);
}

.header-cta-text {
    font-weight: 500;
	font-family: 'Darker Grotesque4';
}

.header-cta-button {
    background-color: var(--cor-roxo);
    color: var(--cor-branco);
    padding: 0px 8px;
    border-radius: 15px;
    font-family: 'Darker Grotesque2';
    transition: opacity var(--transition-smooth);
}

.header-cta-button:hover {
    opacity: 0.8;
}

/* Estilos do header por seção */
.header-on-home {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--cor-preto);
}
.header-on-home .header-logo .logo-preto {
    opacity: 1; /* Fundo claro -> Logo preta visível */
}
.header-on-home .header-logo .logo-branco {
    opacity: 0; /* Fundo claro -> Logo branca invisível */
}
.header-on-home .header-cta-button {
    background-color: var(--cor-roxo);
    color: var(--cor-branco);
}

.header-on-dark {
    background-color: var(--cor-chumbo);
    color: var(--cor-branco);
}
.header-on-dark .header-logo .logo-preto {
    opacity: 0; /* Fundo escuro -> Logo preta invisível */
}
.header-on-dark .header-logo .logo-branco {
    opacity: 1; /* Fundo escuro -> Logo branca visível */
}

.header-on-light {
    background-color: var(--cor-cinza-claro);
    color: var(--cor-preto);
}
.header-on-light .header-logo .logo-preto {
    opacity: 1; /* Fundo claro -> Logo preta visível */
}
.header-on-light .header-logo .logo-branco {
    opacity: 0; /* Fundo claro -> Logo branca invisível */
}
.header-on-light .header-cta-button {
    background-color: var(--cor-roxo);
    color: var(--cor-branco);
}

.header-on-services {
    background-color: var(--cor-roxoclaro);
    color: var(--cor-branco);
}
.header-on-services .header-logo .logo-preto {
    opacity: 0; /* Fundo escuro -> Logo preta invisível */
}
.header-on-services .header-logo .logo-branco {
    opacity: 1; /* Fundo escuro -> Logo branca visível */
}
.header-on-services .header-cta-button {
    background-color: var(--cor-branco);
    color: var(--cor-roxo);
}

/* ==================== CONTAINER ==================== */
.website-container {
  width: 100%;
}

/* ==================== SEÇÃO + INNER (sticky) ==================== */
.section {
  width: 100%;
  min-height: 100vh; /* Permite que a seção cresça se necessário */
  position: relative;
  overflow: visible;
}

.section-inner {
  position: sticky;
  top: 0; /* O header flutuante está fora do fluxo, então o sticky deve ser 0 */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-lg);
  transition: transform 0.55s cubic-bezier(.22,.9,.32,1), box-shadow 0.35s ease;
  will-change: transform;
  z-index: 1; /* Mantido baixo, mas o header tem 1000 */
  background-clip: padding-box;
  overflow: hidden;
}

.section-inner.is-pinned {
  transform: translateY(0);
  box-shadow: 0 -14px 40px rgba(0,0,0,0.12);
}

.section-inner.next-up {
  transform: translateY(-100%);
  box-shadow: 0 -18px 44px rgba(0,0,0,0.16);
}

/* ==================== SEÇÃO 1: HOME ==================== */
.home-section .section-inner {
    background-color: var(--cor-roxo);
    color: var(--cor-branco);
    background-image: url('../img/BGHOME4.png');
    background-size: cover;
    background-position: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px; /* Mais espaço */
    padding-bottom: 120px;
}

.home-section-2 .section-inner {
    background-color: var(--cor-roxo);
    color: var(--cor-branco);
    background-image: url('../img/sobrenos.png');
    background-size: cover;
    background-position: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px; /* Mais espaço */
    padding-bottom: 120px;
}

.home-section-3 .section-inner {
    background-color: var(--cor-cinza-medium);
    color: var(--cor-chumbo);
    justify-content: center;
    text-align: center;
    padding-top: 120px; /* Mais espaço */
    padding-bottom: 120px;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: var(--spacing-md);*/
    max-width: 900px;
}

.home-content-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: var(--spacing-md);*/
    max-width: 1100px;
}

.home-icon {
    width: 60px;
    height: 60px;
}

.home-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-title {
    font-size: 6.2rem; /* Reduzido */
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.home-title span {
    color: var(--cor-preto);
}


.tipo-servico-title {
  /* Layout Flexbox para alinhar verticalmente */
  display: flex;
  align-items: center; /* Alinha verticalmente ao centro */
  justify-content: center; /* Opcional: Alinha horizontalmente ao centro */
  gap: 0; /* Remove o espaço padrão entre os spans */
  flex-wrap: wrap;
  color: var(--cor-preto);
  font-family: 'ObviouslyCond Bold';
  
  /* Tipografia base */
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0;
  padding: 0;
  line-height: 1; /* Importante para o alinhamento */
}

.flow-brand {
  display: inline-flex;
  align-items: baseline;
  position: relative; /* Para posicionar o ® */
}

.flow-text {
  font-size: 5em;
  font-weight: 900;
  letter-spacing: -1px;
}

.registered-mark {
  /* Símbolo ® menor e alinhado ao topo */
  font-size: 1em; /* Tamanho menor */
  font-weight: 700;
  position: absolute;
  top: -8px; /* Ajuste a posição vertical conforme necessário */
  right: -28px; /* Ajuste a posição horizontal conforme necessário */
}

.registered-mark-2 {
  /* Símbolo ® menor e alinhado ao topo */
  font-size: 0.6em; /* Tamanho menor */
  font-weight: 500;
  position: absolute;
}

.service-text {
  font-size: 2em;
  font-weight: 900;
  letter-spacing: -1px;
  margin-left: 28px; /* Espaço entre FLOW e SOCIAL MEDIA */
  display: inline;
}

/* Adicione media queries para responsividade, se necessário */
/* ... (As media queries do arquivo anexo garantem que o layout se adapte) */



.home-subtitle {
    font-size: 1.6rem; /* Reduzido */
    font-weight: 500;
	color: #000000;
	font-family: 'Darker Grotesque4';
	text-align: justify;
    line-height: 1;
}

.home-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.home-button {
    padding: 1px 8px;
    border-radius: 15px;
    font-family: 'Darker Grotesque4';
	font-size: 15px;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

.home-button-primary {
    background-color: var(--cor-roxo);
    color: var(--cor-branco);
}

.home-button-secondary {
    background-color: transparent;
    border: 2px solid var(--cor-branco);
    color: var(--cor-branco);
}

/* ==================== SEÇÃO 2: SOBRE ==================== */
.about-section_1 .section-inner {
    background-color: var(--cor-branco);
    color: #262525;
    justify-content: center; /* Centraliza o conteúdo verticalmente */
    padding: var(--spacing-xl) var(--spacing-lg);
}

.about-section .section-inner {
    background-color: var(--cor-chumbo);
    color: var(--cor-branco);
    justify-content: center; /* Centraliza o conteúdo verticalmente */
    padding: var(--spacing-xl) var(--spacing-lg);
}

.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.linha {
    width: 100%;
	height: 3px;
	background-color: #b5b4b4;
    max-width: 1200px;
    margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 50px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: var(--spacing-lg);
}

.about-text-area {
    flex: 1.2;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cases-text-area {
    flex: 1.2;
    max-width: 50%;
    display: flex;
    flex-direction: column;
}

.cases-titutlo-area {
    flex: 1.2;
    max-width: 30%;
    display: flex;
    flex-direction: column;
}

.cases-texto-area {
    flex: 1.2;
    max-width: 70%;
    display: flex;
    flex-direction: column;
}

.cases-imagens-area {
    flex: 1.2;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.about-nav {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.about-nav-link {
    font-family: 'Darker Grotesque3';
    color: var(--cor-branco);
    padding: 0px 10px;
    border-radius: 15px;
	border: 1px solid #262525;
    transition: border-color var(--transition-smooth);
}

.about-nav-link.active {
    color: var(--cor-roxo);
	background-color: #ffffff;
}

.about-nav-link-1 {
    font-family: 'Darker Grotesque3';
    color: var(--cor-branco);
    padding: 0px 10px;
    border-radius: 15px;
    transition: border-color var(--transition-smooth);
	background-color: var(--cor-roxo);
}

.about-nav-link-1.active {
	background-color: #262525;
}

.about-title {
    font-size: 4rem; /* Reduzido */
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.about-title-1 {
    font-size: 6.3rem; /* Reduzido */
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
	font-family: 'ObviouslyCond Bold';
}

.cases-title {
    font-size: 6.3rem; /* Reduzido */
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
	font-family: 'ObviouslyCond Bold';
}

.cases-title-1 {
    font-size: 10rem; /* Reduzido */
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
	font-family: 'ObviouslyCond Bold';
	margin-top: 80px;
	margin-bottom: 80px;
	text-align: center;
}

.cases-titulo {
    font-size: 3.3rem; /* Reduzido */
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
	font-family: 'ObviouslyCond Bold';
}

.about-title-2 {
    font-size: 3.5rem; /* Reduzido */
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.about-description {
    font-size: 1.5rem;
    font-weight: 500;
	font-family: 'Darker Grotesque4';
	line-height: 1.2;
}

.cases-description {
    font-size: 1.2rem;
    font-weight: 500;
	font-family: 'Darker Grotesque4';
	line-height: 1;
}

.cases-descricao {
    font-size: 1.5rem;
    font-weight: 500;
	font-family: 'Darker Grotesque4';
	line-height: 1;
}

.about-cards-area {
    flex: 0.8;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.about-card {
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 1.9rem; /* Reduzido */
    font-weight: 800;
    color: var(--cor-preto);
    text-transform: uppercase;
    transition: transform 0.2s ease;
    white-space: nowrap; /* Garante uma linha */
    text-align: left;
	font-family: 'ObviouslyCond Medium';
}

.about-card:hover {
    transform: translateX(5px);
}

.card-roxo { background-color: #b287fd; color: var(--cor-branco); }
.card-branco { background-color: #f0f0f0; }
.card-verde { background-color: #c4f273; }
.card-azul { background-color: #5b00e7; color: var(--cor-branco); }

.about-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: var(--spacing-md);
    padding: 0; /* Reset padding */
	font-family: 'Darker Grotesque4';
}

.about-footer p{
    font-size: 2rem;
    font-weight: 500;
    color: color: var(--cor-branco);
    text-align: justify;
    line-height: 1;
}

.about-footer-left {
    font-size: var(--font-size-small);
    font-weight: 500;
    line-height: 0.8;
    text-transform: lowercase;
}

.about-footer-right {
    display: flex;
    align-items: center;
	font-size: var(--font-size-small);
	line-height: 0.8;
}

.about-footer-right a {
    font-size: var(--font-size-small);
    text-transform: lowercase;
    text-align: right;
}

.scroll-down-arrow {
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

/* ==================== SEÇÃO 3: GIFS ==================== */
.gifs-section .section-inner {
    background-color: var(--cor-cinza-claro);
    color: var(--cor-preto);
    justify-content: center;
    min-height: 120vh; /* Aumenta a altura */
}

.gifs-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 1200px; /* Aumentado */
}

.gif-box {
    width: 100%;
    height: 400px; /* Aumentado */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none; /* Remove sombra */
}

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


/* ==================== SEÇÃO 3: NOSSO TIME ==================== */
.nosso-time {
  width: 100%;
  padding: 80px 20px;
  background-color: #ffffff;
}

.nosso-time-container {
  max-width: 1400px;
  margin: 0 auto;
}

.nosso-time-title {
  font-size: 14em;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 60px;
  text-align: center;
  color: #000000;
  font-family: 'ObviouslyCond Medium';
  line-height: 1.2;
}

/* Layout principal - Flexbox para desktop */
.team-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: flex-start;
}

/* Coluna esquerda - 2 membros em coluna vertical */
.team-left {
  flex: 0 0 auto;
  display: flex;
  gap: 40px;
  width: auto;
}

/* Coluna direita - 6 membros em 2 linhas de 3 */
.team-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Estilos dos membros */
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.member-image-wrapper {
  width: 230px;
  height: 230px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.member-image-wrapper.gradient-bg {
  width: 200px;
  height: 200px;
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  display: flex;
  flex-direction: column;
}

.member-name {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  letter-spacing: 0.5px;
  font-family: 'Darker Grotesque2';
}


.member-role {
  font-size: 13px;
  color: #666666;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-family: 'Darker Grotesque4';
}

/* Responsivo para tablets */
@media (max-width: 1024px) {
  .nosso-time {
    padding: 60px 15px;
  }

  .nosso-time-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .team-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .team-left {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    width: 100%;
  }

  .team-right {
    width: 100%;
  }

  .team-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .member-image-wrapper {
    width: 230px;
    height: 230px;
    border-radius: 25px;
  }

  .member-name {
    font-size: 20px;
  }

  .member-role {
    font-size: 18px;
  }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .nosso-time {
    padding: 40px 15px;
  }

  .nosso-time-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .team-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .team-left {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .team-right {
    width: 100%;
    gap: 20px;
  }
  
  .cases-texto-area {
    max-width: 100%;
    text-align: justify;
    }

  .team-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .member-image-wrapper {
    width: 230px;
    height: 230px;
    border-radius: 20px;
    margin-bottom: 10px;
  }

  .member-name {
    font-size: 20px;
  }

  .member-role {
    font-size: 18px;
  }
}

/* Responsivo para mobile pequeno */
@media (max-width: 480px) {
  .nosso-time {
    padding: 30px 10px;
  }

  .nosso-time-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .team-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .member-image-wrapper {
    width: 230px;
    height: 230px;
    border-radius: 18px;
  }

  .member-name {
    font-size: 20px;
  }

  .member-role {
    font-size: 18px;
  }
}


/* ==================== SEÇÃO 4: SERVIÇOS (ACCORDION) ==================== */
.services-section .section-inner {
    background-color: var(--cor-roxo);
    color: var(--cor-branco);
    background-image: url('../img/BGHOME4.png');
    background-size: cover;
    background-position: center;
    justify-content: center; /* Centraliza o conteúdo */
    padding: var(--spacing-xl) var(--spacing-lg);
	font-family: 'ObviouslyCond Medium';
}

.services-section-2 .section-inner {
    background-color: var(--cor-chumbo);
    color: var(--cor-cinza-claro);
    justify-content: center; /* Centraliza o conteúdo */
    padding: var(--spacing-xl) var(--spacing-lg);
	font-family: 'ObviouslyCond Medium';
}

.services-container {
    width: 100%;
    max-width: 1200px;
}

.services-header {
    width: 100%;
    margin-bottom: var(--spacing-md);	
}

.services-title {
    font-size: 4.3rem; /* Reduzido */
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
	float: left;
	width: 70%;
	letter-spacing: 3px;
}

.services-title-2 {
    font-size: 6rem; /* Reduzido */
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
	float: left;
	width: 100%;
	letter-spacing: 3px;
	color: var(--cor-chumbo);
}

.services-description {
    font-size: 1rem; /* Reduzido */
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
	font-family: 'Darker Grotesque4';
	width: 30%;
	float: left;
}

.services-accordion {
    width: 100%;
	clear: both;
}

.accordion-item {
    border-bottom: 3px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-item:first-child {
    border-top: 3px solid rgba(255, 255, 255, 0.7);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 3rem; /* Reduzido */
    text-transform: uppercase;
	color: var(--cor-chumbo);
}

.accordion-header-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 3rem; /* Reduzido */
    text-transform: uppercase;
	color: var(--cor-cinza-claro);
}

.accordion-header-2 span{
    text-align: right;
	font-size: 1.5rem;
	color: var(--cor-roxoclaro);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    padding: 0;
}

.accordion-content.active {
    max-height: 500px; /* Valor alto para garantir que o conteúdo caiba */
    padding: 20px 0 40px 0;
}

.accordion-content-inner {
    display: flex;
    gap: var(--spacing-lg);
}

.accordion-text {
    flex: 2;
    font-size: var(--font-size-body);
    font-weight: 500;
	font-family: 'Darker Grotesque4';
	font-size: 1.5rem;
}

.accordion-image {
    flex: 1;
    max-width: 300px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1); /* Placeholder */
    border-radius: 10px;
}

/* ==================== SEÇÃO 5: CONTATO ==================== */
.contact-section .section-inner {
    background-color: var(--cor-cinza-claro);
    color: var(--cor-preto);
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-xl) var(--spacing-lg);
}

.contact-section-2 .section-inner {
    background-color: var(--cor-roxoclaro);
    color: var(--cor-preto);
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-xl) var(--spacing-lg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    width: 100%;
    max-width: 1200px;
}

.contact-form-area {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 4rem; /* Reduzido */
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
}

.contact-subtitle {
    font-size: var(--font-size-body);
    font-weight: 500;
	font-family: 'Darker Grotesque4';
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--cor-preto);
    background: transparent;
    font-family: 'Darker Grotesque4';
    font-size: 0.9rem; /* Reduzido */
    font-weight: 500;
    border-radius: 10px;
}

.form-textarea {
    grid-column: 1 / -1;
    resize: none;
    height: 80px;
}

.form-button {
    grid-column: 1 / 2;
    padding: 10px;
    border: 1px solid var(--cor-preto);
    background: transparent;
    font-family: 'Darker Grotesque4';
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-button:hover {
    background-color: var(--cor-preto);
    color: var(--cor-branco);
}

.contact-info-area {
    display: flex;
    flex-direction: column;
    text-align: right; /* Alinha à direita */
}

.contact-info-title {
    font-size: 3rem; /* Reduzido */
    font-weight: 500;
	font-family: 'ObviouslyCond Medium';
    text-transform: uppercase;
	line-height: 0.6;
}

.contact-social-links {
    font-family: 'Darker Grotesque4';
    font-weight: 600;
	font-size: 1.3rem; /* Reduzido */
}

.contact-support {
    display: flex;
    flex-direction: column;
	padding: var(--spacing-md) 0;
}

.contact-support-title {
    font-size: 3rem; /* Reduzido */
    font-weight: 500;
	font-family: 'ObviouslyCond Medium';
    text-transform: uppercase;
	line-height: 0.6;
}

.contact-support-email {
    font-family: 'Darker Grotesque4';
    font-weight: 600;
	font-size: 1.3rem; /* Reduzido */
}

/* Efeito de texto cortado "biestudio" */
.footer-cutout-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 18vw; /* Tamanho grande e responsivo */
    font-weight: 900;
    line-height: 0.8;
    text-transform: uppercase;
    color: var(--cor-preto);
    pointer-events: none;
    text-align: center;
    z-index: -1; /* Atrás do conteúdo */
    transform: translateY(20%); /* Ajuste para o corte */
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 1024px) {
    :root {
        --font-size-display: 4rem;
        --font-size-title: 2rem;
        /* --spacing-lg: 2rem; */
    }

    .main-header {
        padding: 0 var(--spacing-md);
        width: 90%;
    }

    .section-inner {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .about-content {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: center;
        text-align: left;
        display: block;
    }

    .about-text-area, .about-cards-area {
        max-width: 100%;
        /* align-items: center; */
        margin-bottom: 50px;
    }
    .about-description { max-width: 100%; }

    .about-title {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: left;
    }
    .contact-info-area { text-align: right; }

    .footer-cutout-text {
        font-size: 25vw;
    }
    
    .cases-title-1{
        text-align: left;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-display: 2.5rem;
        --font-size-title: 1.5rem;
        --font-size-body: 1rem;
        /* --spacing-md: 1.5rem; */
    }

    .main-header {
        height: 45px;
        top: 10px;
        width: 90%;
    }

    .header-cta-text {
        display: none;
    }

    .home-title {
        font-size: 2.8rem;
    }

    .home-subtitle {
        font-size: 1rem;
    }

    .home-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .about-title {
        font-size: 2rem;
    }
    
    .about-card{
        width: 100%;
        text-align: left;
    }

    .accordion-header {
        font-size: 1.2rem;
    }

    .accordion-content-inner {
        flex-direction: column;
    }

    .accordion-image {
        max-width: 100%;
        height: 150px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-button {
        grid-column: 1 / -1;
    }
	
	.services-title {
		font-size: 4.3rem; /* Reduzido */
		font-weight: 900;
		line-height: 1;
		text-transform: uppercase;
		margin-bottom: var(--spacing-md);
		width: 100%;
	}

	.services-description {
		font-size: 1rem; /* Reduzido */
		line-height: 1;
		text-transform: uppercase;
		margin-bottom: var(--spacing-md);
		font-family: 'Darker Grotesque4';
		width: 100%;
	}
	
}

/* Fallback para desativar sticky em telas pequenas (mantido do original) */
@media (max-width: 900px) {
  .section { height: auto; min-height: auto; }
  .section-inner {
    position: static;
    height: auto;
    min-height: auto;
    transform: none !important;
    box-shadow: none !important;
    padding: var(--spacing-xl) var(--spacing-md);
  }
  
  .home-section .section-inner {
    padding-top: 240px!important;
    padding-bottom: 240px!important;
  }
  
  .cases-title-1 {
    font-size: 6rem; /* Reduzido */
}
  
  .flow-text{
    font-size: 3.7em;
    font-weight: 900;
    letter-spacing: -1px;
  }
  
  .service-text{
      margin-left: 0px;
  }
  
  .cases-text-area {
	max-width: 100%;
  }
  
}

/* Estilos para o novo contêiner de vídeos */
.videos-container {
    display: flex;
    gap: var(--spacing-sm); /* Espaçamento entre os vídeos */
    width: 100%;
    max-width: 1200px;
    margin-top: var(--spacing-sm); /* Espaçamento entre GIFs e Vídeos */
}

.video-box {
    flex: 1; /* Faz com que cada vídeo ocupe metade do espaço */
    height: 600px; /* Altura definida para vídeos na vertical */
    border-radius: 20px;
    overflow: hidden;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo preencha o box sem distorcer */
}

/* Ajuste de responsividade para vídeos */
@media (max-width: 768px) {
    .videos-container {
        flex-direction: column; /* Empilha os vídeos em telas menores */
    }
    .video-box {
        height: 400px; /* Altura menor para mobile */
    }
}


/* ================================================= */
/* ESTILOS DA GALERIA DE CASES (Layout com CSS Columns - Masonry-like) */
/* ================================================= */

.cases-content {
    max-width: 1200px; /* Largura máxima da galeria */
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* Estilo para itens de largura total */
.gallery-item.item-full-width {
    margin-bottom: 20px; /* Espaçamento após o item de largura total */
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item.item-full-width img {
    width: 100%;
    height: auto;
    display: block;
}

/* Estilo para o bloco de 2 colunas (Masonry-like) */
.gallery-block {
    /* Usamos CSS Columns para o efeito Masonry */
    column-count: 2;
    column-gap: 20px;
    margin-bottom: 20px;
}

.gallery-item {
    /* Estilo base para cada item da galeria dentro do bloco */
    break-inside: avoid; /* Evita que o item seja quebrado entre colunas */
    margin-bottom: 20px; /* Espaçamento entre os itens */
    overflow: hidden;
    border-radius: 15px; /* Borda arredondada como no PDF */
    transition: transform 0.3s ease;
    display: block; /* Importante para o break-inside: avoid funcionar */
}

.gallery-item:hover {
    transform: translateY(-5px); /* Efeito de leve levantamento ao passar o mouse */
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Classes de proporção (opcional, para garantir que as imagens se pareçam com o layout) */
/* Você pode ajustar a altura mínima ou a proporção se necessário */
.item-vertical img {
    /* Exemplo: forçar uma proporção vertical se a imagem não for naturalmente alta */
    /* min-height: 400px; */
}

.item-horizontal img {
    /* Exemplo: forçar uma proporção horizontal se a imagem não for naturalmente larga */
    /* max-height: 200px; */
}


/* ================================================= */
/* RESPONSIVIDADE */
/* ================================================= */

@media (max-width: 768px) {
    .gallery-block {
        column-count: 1; /* Uma única coluna em telas menores */
        column-gap: 0;
    }
}