/* ===== Base ===== */
:root{
  --nav-gap: 85vh;          /* ajuste aqui o espaço entre logo e hambúrguer */
  --nav-height: 90px;       /* altura da faixa do menu quando aberto (desktop) */
  --blur: 5px;              /* intensidade do blur do fundo */

  --header-height: 56px;    /* altura mínima da barra */
  --z-header: 2000;
  --z-menu: 1500;
  /*--z-hamburger: 2100;*/
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: #000;
  color: #fff;
}

/* ===== Header + barra fixa com blur ===== */
header.nav { position: sticky; top: 55px; z-index: 1000; }

.nav-inner{
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: var(--z-header);
  display: flex; align-items: center; justify-content: center; /* centraliza logo + hambúrguer */
  gap: var(--nav-gap); 
  padding: 19px 20px; min-height: var(--header-height);

    background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}
.logo{ 
  color: #fff; 
  text-decoration: none;
  
  text-transform: uppercase; 
  letter-spacing: .04em;
  white-space: nowrap; 
  padding: 8px 2px;
  display:flex;
}

/* Adicione esta nova regra para o link dentro de .logo */
.logo a {
  color: #fff;
  text-decoration: none;

  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  padding: 8px 2px;
}

.logo a:hover {
  opacity: .85;
}

/* ===== Botão Hambúrguer (participa do layout centralizado) ===== */
/*.hamburger{
  appearance: none; background: transparent; border: 0;
  padding: 10px; border-radius: 10px;
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  cursor: pointer; outline-offset: 2px;

  position: relative;                 
  z-index: var(--z-hamburger);        
  right: auto; top: auto;
}
.hamburger span{
  width: 26px; height: 2px; background: #fff; display: block;
  transition: transform .25s, opacity .25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }*/

/* ===== MENU: oculto por padrão; aparece com .open ===== */
/* Desktop: faixa no topo com blur e links em linha */
.nav-menu{
  position: fixed; 
  top: 0; 
  left: 30vh; 
  width: 100%;
  height: var(--nav-height);
  display: flex; 
  align-items: center; 
  justify-content: center;

  /* Menu sempre visível - estas são as mudanças principais */
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  
  transition: transform .28s ease, opacity .28s ease;
  z-index: var(--z-menu);
  
  /* Fundo mais sólido para melhor visibilidade */

  
  padding: 0 129px;
}
.nav-menu.open{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-menu ul{
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 16px; align-items: center;
}
.nav-menu a{
  color: #fff; text-decoration: none;
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap; padding: 8px 2px;
}
.nav-menu a:hover{ opacity: .85; }

/* ===== MOBILE: painel em coluna ocupando a tela ===== */
/*@media (max-width: 979px){
  .nav-inner{ gap: 125px;  width: 80%;}

  .nav-menu{
    height: 100vh; left: 0; right: 0; width: 100%;
    justify-content: flex-start; align-items: flex-start;
    padding: 88px 24px 24px;       /* espaço p/ a barra fixa e conteúdos */
   /* background: rgba(0,0,0,.40);
    border-bottom: none;
    overflow-y: auto;
  }
  .nav-menu ul{ flex-direction: column; gap: 18px; }
  .nav-menu a{ font-size: 22px; padding: 6px 0; }
}*/

/* ===== HERO (se usar vídeo de fundo) ===== */
#hero{
  position: relative; isolation: isolate;
  min-height: 80vh;
  display: flex; align-items: flex-end; justify-content: center;
   margin-top: 90px;
}
#hero iframe{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
#hero .overlay{ position: absolute; inset: 0; background: rgba(0,0,0,.6); z-index: -1; }
#hero .content {
   padding: 20px;
  display: flex; gap: 150px; align-items: flex-end;
}
@media (max-width: 760px){
  #hero .content { width: 100%; padding: 20px; gap: 50px;flex-direction: column;align-items: center; }
  .conheca { position: relative; left: -67px;}
  #hero{min-height: 82vh;}
}

/* ===== Elementos auxiliares (ex.: seção com CTA) ===== */
.conheca-text { width: 80px; white-space: nowrap; font-size: 1.5vh; text-overflow: ellipsis; }
.conheca { display: flex; align-items: center; gap: 10px; }

/* ===== Indicador (seta/scroll) – opcional ===== */
.scroll-indicator{
  transform: translateX(-50%);
  font-size: 2.5vh;
  color: #fff; text-decoration: none;
  animation: bounce 1.5s infinite;
  display: flex; justify-content: center; align-items: center; gap: 6px;
}
@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

.about {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  background: url("../img/logo-bg-black.png") no-repeat center top;
  background-size: 100% auto;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05); /* leve véu claro */
  z-index: 0;
}

.about > * {
  position: relative;
  z-index: 1; /* garante que o conteúdo fica acima do overlay */
}
.about-title{
  font-size:3vh;
  line-height:1.7;
  margin:0 0 10px;
  color:white;
}

.about-div{
    width: 450px;
    padding: 20px;
    left: 40vh;
}
@media (max-width: 760px){
  .about-div{
    width: 100%;
  }
}

.about-text
{
  
  max-width:800px;
  margin:8px 0 0;
  line-height:1.9;
  color: black;
}

.about-text-02
{
  max-width:450px;
  margin:8px 0 0;
  line-height:1.9;
  margin-top:11vh;
  text-align: center;
}


/* ====== SPEAKERS SECTION ====== */
/* troque a URL abaixo para sua imagem da faixa superior */
:root { --speakers-hero-h: 260px;  }

.speakers {
  background: #000000; color: #eaecef; font-family: "Manrope", sans-serif;
  border-top: 1px solid #222;
}

/* faixa superior */
.speakers-hero {
  height: var(--speakers-hero-h);
  background-image: url("../img/bg-speaker.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: .85;
}

/* container */
.speakers-wrap {
  max-width: 1200px; margin: 0 auto; padding: 48px 24px 72px;
  margin-top: -155px;position: relative;
}

/* card de cada pessoa – grid 3 colunas (foto | nome/resumo | bio longa) */
.speaker {
 
    display: grid;
    grid-template-columns: 280px 1fr 1.1fr;
    gap: 36px;
    align-items: end;
    background: transparent;
    padding: 24px 0;
    justify-items: end;

}

/* foto com borda clara sutil como no layout */
.speaker-photo {
  margin: 0;
  width: 23vh; height: auto;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.06);
}
.speaker-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* bloco central (nome grande + resumo curto) */
.speaker-main { padding-top: 10px; }
.speaker-name {
  font-weight: 800;
  font-size: clamp(28px, 4vw + 8px, 48px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: #fff;
}
.speaker-summary {
  margin: 0; color: #cfd3d8; max-width: 360px; line-height: 1.6;
  font-size: 15px;
}

/* bio longa à direita */
.speaker-bio {
      padding-top: 0px;
    color: #cfd3d8;
    line-height: 1.75;
    font-size: 15px;
    max-width: 380px;
    
    position: relative;
    top: 17px;
}
.speaker + .speaker { margin-top: 56px; } /* espaçamento entre blocos */

/* responsivo */
@media (max-width: 1100px) {
  .speaker { grid-template-columns: 240px 1fr 1fr; gap: 28px; }
  .speaker-photo { width: 23vh; height: auto; }
}
@media (max-width: 860px) {
  .speakers-hero { height: 200px; }
  .speaker {
    grid-template-columns: 160px 1fr;
    grid-template-areas:
      "photo main"
      "bio   bio";
    gap: 20px;
  }
  .speaker-photo { width: 23vh; height: auto; grid-area: photo; box-shadow: 0 0 0 4px rgba(255,255,255,0.06); }
  .speaker-main { grid-area: main; }
  .speaker-bio { grid-area: bio; }
}
@media (max-width: 520px) {
  .speaker {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "main"
      "bio";
      justify-items: flex-start;
  }
  .speaker-name {
    font-size: 5.5vh;
  }
  .speaker-summary {
    font-size: 2.3vh;
  }
  p{
    font-size: 2.3vh;
  }

   .speaker-main, .speaker-bio { width: 100%; }
  .speaker-photo { height: 280px; }
}
.diagram {
  padding: 72px 20px;
  
  background: url("../img/end-section-03.jpg") no-repeat center top ;
  background-size: 328px 61px;
  background-color: #0f0f0f;
   background-position: center -2px; 
}
.ecosistema {
   margin: 0 auto;
   transform: scale(1.5); 
  display: flex; flex-direction: column; align-items: center;margin-top: -25vh;
}
@media (max-width: 760px){
  .ecosistema {
    transform: scale(2.5);     /* aumenta em 130% */
    transform-origin: center;  /* centraliza o zoom */
    width: 100%;
    margin-top: -6vh;
  }
  .about-div{
    left: 0px;
  }
}
/***** Black *****/

:root { --black-hero-h: 260px; --bg-url: ; }

.black {
  background: white; color: black; font-family: "Manrope", sans-serif;
  border-top: 1px solid #222;
}

/* faixa superior */
.black-hero {
  background: url("../img/grupo-black.png") center/cover no-repeat !important;
  height: 260px !important;
  opacity: 1 !important;
  filter: none !important;
  outline: 1px dashed rgba(255,255,255,.25); /* só pra ver a área */
    position: relative;
  z-index: 0;   
}
.grupo-black-img{
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  filter: brightness(0.5);
}

/* faixa superior */
.black-hero-teste {
  opacity: 1 !important;
  filter: none !important;
  position: relative;
  z-index: 0;   
}

/* container */
.black-wrap {
  position: relative;
  z-index: 1;            /* conteúdo acima do hero */
  margin-top: -7vh;    /* seu offset, ok */
  background: transparent;
}
@media (max-width: 760px){
  .black-wrap-02 {
    flex-direction: column-reverse;
  }
}

/* container */
.black-wrap-02 {
  position: relative;
  z-index: 1;            /* conteúdo acima do hero */
  margin-top: -7vh;    /* seu offset, ok */
  background: transparent;
  display: flex;
  gap: 16vh;
}

/* card de cada pessoa – grid 3 colunas (foto | nome/resumo | bio longa) */
.black {
 
    display: flex;
    grid-template-columns: 280px 1fr 1.1fr;
    gap: 36px;
    align-items: end;
    
    justify-items: end;
    flex-direction: column;
    align-items: center;
}

/* foto com borda clara sutil como no layout */
.black-photo {
  margin: 0;
  width: 49vh; height: auto;
  
}
.black-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* bloco central (nome grande + resumo curto) */
.black-main { padding-top: 10px; }
.black-name {
  font-weight: 800;
  font-size: clamp(28px, 4vw + 8px, 48px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: #fff;
}
.black-summary {
  margin: 0; color: #cfd3d8; max-width: 360px; line-height: 1.6;
  font-size: 15px;
}

/* bio longa à direita */
.black-bio {
      padding-top: 0px;
    color: #cfd3d8;
    line-height: 1.75;
    font-size: 15px;
    max-width: 380px;
    position: relative;
    top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.black-bio img{
  width: 32vh;
}

 p{
  color:#B6B4B4;
}
.black + .black { margin-top: 56px; } /* espaçamento entre blocos */

/* responsivo */
@media (max-width: 1100px) {
  .black { grid-template-columns: 240px 1fr 1fr; gap: 28px; }
  .black-photo { width: 49vh; height: auto; }
}
@media (max-width: 860px) {
  .black-hero { height: 200px; }
  .black {
    grid-template-columns: 160px 1fr;
    grid-template-areas:
      "photo main"
      "bio   bio";
    gap: 20px;
  }
  .black-photo { width: 49vh; height: auto; grid-area: photo; box-shadow: 0 0 0 4px rgba(255,255,255,0.06); }
  .black-main { grid-area: main; }
  .black-bio { grid-area: bio; }
}
@media (max-width: 520px) {
  .black {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "main"
      "bio";
          gap:0px
  }
  .black-photo, .black-main, .black-bio { width: 100%; max-width:100%;flex-direction: row;}
  .black-photo {  }
}
.bloco-black{
  display:flex;
  gap: 6vh;
}
@media (max-width: 760px){
  .bloco-black{
    flex-direction: column;
    align-items: center;
  }
}
.black-grid{
  display:flex;
  flex-direction:column;
  gap: 2vh;
      justify-content: center;
}
.black-grid-down{
  display:flex;
  flex-direction:row;
  gap: 2vh;
}

@media (max-width: 760px){
  .black-grid{
    width: 80%;
  }
  .black-grid-down{
    width: 80%;
  }
}
.ment-black-img-01{
  width: 19vh;
}
.ment-black-img-02{
  width: 28vh;
}
@media (max-width: 760px){
  .ment-black-img-01{
  width: 45%;
}
.ment-black-img-02{
  width: 74%;
}
}
.black-link{
  color: #309EFF;
  font-size: 2vh;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  padding: 8px 2px;
  transition: color .3s;
}
.my-rotate {
  display: inline-block;
  transform: rotate(45deg); /* gira 45 graus */
}

.ment-blue-img-01{
  width: 23.5vh;
}
.ment-blue-img-02{
  width: 23.5vh;
}
@media (max-width: 760px){
  .ment-blue-img-01{
    width: 59%;
  }
  .ment-blue-img-02{
    width: 59%;
  }
}

.eco-text {
  position: absolute;
 
  left: 50%;
  transform: translateX(-50%); /* centralizar horizontalmente */
  font-size: 3.5vh;
  line-height: 1.7;
  text-align: center;
  font-weight: 400;
  color: white;
  margin-top: 20px;
}

/* ===== Section base (igual ao anterior) ===== */
.pillars{
  --bg:#e0e0e0; --card:#151515; --muted:#8c8f93;
  --curve-depth:86px; --curve-width:520px; --radius:18px;
  background-color:var(--bg) !important; position:relative; padding-bottom:56px;
  font-family:'Manrope',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
   padding: 72px 20px;
  
  background: url("../img/end-section-02.png") no-repeat center top ;
  background-size: 328px 61px;
  
   background-position: center -2px;
   padding-bottom: 0px;
}
.pillars-curve{ position:relative; height:var(--curve-depth); background:#000; }

.pillars-dot{ position:absolute; left:50%; top: calc(var(--curve-depth)*-0.25);
  transform:translateX(-50%); width:34px; height:34px; border-radius:999px;
  background:#efe9e6; display:grid; place-items:center; color:#815c3f; text-decoration:none; font-size:14px;
  box-shadow:0 2px 10px rgba(0,0,0,.35);
}
.pillars-container{ max-width:1240px; margin:0 auto; padding:28px 20px 0; }
.pillars-head{ text-align:center; margin:28px auto 36px; }
.pillars-head h2{ margin:0 0 10px; color:#0b0b0b; font-weight:400; letter-spacing:.01em;
  font-size:clamp(22px,2.4vw + 10px,40px); }
.pillars-head .pillars-sub{ color:var(--muted); margin:0; line-height:1.6; font-size:17px; }

/* ===== Grid desktop/tablet ===== */
.pillars-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:12px;
  align-items:stretch; margin-top:36px; padding:0 8px;
}
.pillar-card{
  background:var(--card); 
  padding:28px; color:#fff; position:relative; min-height:260px;
  display:flex; align-items:flex-start;
}
.pillar-card:hover{ 
  background: #fff;       /* fundo branco */
  color: #000;            /* texto preto para contraste */
  box-shadow: 0 2px 10px rgba(255,255,255,0.6); /* sombra suave opcional */
  transition: all 0.3s ease; /* transição suave */
}
.pillar-card h3{ margin:0; font-weight:400; line-height:1.3; font-size:clamp(18px,1.2vw + 10px,22px); }
.pillar-icon{ position:absolute; left:18px; bottom:16px; color:#8b8e93; font-size:22px; }

/* ===== Mobile: vira carrossel ===== */
@media (max-width: 620px){
  .pillars-curve::before{ width:360px; }

  /* viewport posiciona botões */
  .pillars-viewport{ position:relative; }

  /* track do carrossel */
  .pillars-grid{
    display:flex; gap:14px; margin: 28px 0 0;
    padding: 0 8px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .pillars-grid::-webkit-scrollbar{ display:none; }

  .pillar-card{
    flex: 0 0 80%;               /* cada slide ocupa ~80% da tela */
    scroll-snap-align: center;   /* trava no centro */
    min-height: 220px;
    max-width: 250px;
  }
  .pillars-viewport{
       display: grid;
  }

  /* botões de navegação */
  .pillars-nav{
    position:absolute; top:50%; transform:translateY(-50%);
    background: rgba(0,0,0,.55); border:0; color:#fff;
    width:34px; height:34px; border-radius:50%;
    display:grid; place-items:center; cursor:pointer;
  }
  .pillars-nav.prev{ left:6px; }
  .pillars-nav.next{ right:6px; }
}

/* ===== Footer ===== */
.site-footer{
  background:#000;           /* fundo preto do rodapé */
  border-top:1px solid #222; /* linha sutil como no print */
  color:#cfcfcf;
  font-family:'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.footer-inner{
  max-width:1240px;
  margin:0 auto;
  padding:36px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

/* Esquerda: marca + frase */
.footer-left{
  display:flex;
  align-items:center;
  gap:18px;
}
.footer-left .brand{
  font-family: inherit;      /* troque por sua fonte/asset se tiver logotipo */
  font-weight:800;
  font-size:32px;
  color:#bfbfbf;             /* cinza claro da marca */
  letter-spacing:.5px;
}
.logo-footer{
  width: 10vh;
}



.footer-left .tagline{
  color:#bdbdbd;
  font-size:14px;
  opacity:.85;
}

/* Direita: email + ícones */
.footer-right{
  display:flex;
  align-items:center;
  gap:20px;
}
.footer-email{
  color:#cfcfcf;
  text-decoration:none;
  font-size:14px;
}
.footer-email:hover{ text-decoration:underline; }

/* Ícones (você troca as imagens) */
.footer-icons{
  display:flex; align-items:center; gap:16px;
}
.footer-icons img{
  width:22px; height:22px; display:block;
  filter: grayscale(100%) brightness(1.8); /* igual ao tom do print */
  transition: opacity .2s ease;
}
.footer-icons a:hover img{ opacity:.8; }

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

/* Responsivo */
@media (max-width: 760px){
  .footer-inner{
    flex-direction:column;
    display: flex;
    align-items:flex-start;
    gap:14px;
    max-width: 330px;
  }
  .footer-right{
    width:100%;
    justify-content:space-between;
  }
    .eco-text {
    font-size: 3vh;
    line-height: 1.2;
    margin-top: -364px;
    width: 60%;

  }
  .conteudo{
    display:flex;
    align-items: center;
    justify-content: center;
    height: 56vh;
  }
}


.hero-video{
  display: none;
  display: block;
}
.hero-video-mobile
{
  display: none;
}
@media (max-width: 760px){
  .hero-video{
    display: none;
  }
  .hero-video-mobile
  {
    
    display: block;
  }
  .about-div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:10px
  }
}


/* 1) Nunca estoure por causa de padding */
*,
*::before,
*::after { box-sizing: border-box; }

/* 2) Proteção global contra “scroll” horizontal acidental */
html, body { overflow-x: hidden; }

/* 3) Hero sempre dentro da viewport */
#hero .content { max-width: 100%; }

/* 4) Mídia responsiva */
img, video, iframe { max-width: 100%; height: auto; display: block; }

/* 5) nav-menu: não ultrapassar 100% no mobile */
@media (max-width: 979px){
  .nav-inner{
    gap: 140px;              /* gap mais seguro */
    width: 100%;            /* não use 80% aqui */
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-menu{
    left: 90px; right: 0;
    width: 100%;
    padding: 88px 24px 24px;
    box-sizing: border-box; /* garante 100% incluindo padding */
    max-width: 100vw;       /* trava no viewport */
  }
}

/* 6) Versão desktop: evite que o padding some à largura */
.nav-menu{
  box-sizing: border-box;
  max-width: 100vw;
}

/* 7) Evita que qualquer container interno cause overflow por gap/position */
.container, .speakers-wrap, .black-wrap, .black-wrap-02, .pillars-container {
  max-width: 1117px;
}
.pillars-viewport
{
  max-width: 1000px;
 
}

 .bio-section {
      background: #f5f5f5;
      padding: 20px 20px;
    }

    .bio-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 380px 1fr 1.2fr;
      gap:15px;
      align-items: end;
    }

    /* Coluna 1 - Foto */
    .bio-photo {
      width: 80%;
      border-radius: 8px;
      overflow: hidden;
    }

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

    /* Coluna 2 - Nome e Subtítulo */
    .bio-header {
      text-align: left;
      padding-top: 20px;
    }

    .bio-name {
      font-size: 56px;
      font-weight: 700;
      line-height: 1.1;
      color: #000;
      margin-bottom: 20px;
    }

    .bio-subtitle {
      font-size: 17px;
      line-height: 1.6;
      color: #666;
      font-weight: 400;
    }

    /* Coluna 3 - Textos biográficos */    .bio-section 
    .bio-right {
      display: flex;
      flex-direction: column;
      gap: 0px;
      padding-top: 20px;
    }

    .bio-text {
      font-size: 16px;
      line-height: 1.5;
      color: #333;
    }

    .bio-text strong {
      font-weight: 700;
      color: #000;
    }

    /* Responsivo Mobile */
    @media (max-width: 768px) {
      .bio-section {
        padding: 15px 20px;
      }

      .bio-container {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .bio-photo {
        order: 2;
      }

      .bio-header {
        order: 1;
        padding-top: 0;
      }

      .bio-name {
        font-size: 42px;
        margin-bottom: 12px;
        white-space: nowrap;
      }

      .bio-subtitle {
        font-size: 16px;
      }

      .bio-right {
        padding-top: 0;
      
        order: 3;
      }

      .bio-text {
        font-size: 15px;
        line-height: 1.7;
      }
    }

    @media (max-width: 480px) {
      .bio-name {
        font-size: 36px;
        text-align: center;
      }

      .bio-subtitle {
        font-size: 15px;
        text-align: center;
      }
    }
.testimonials-section {
      background: #f2f0ef;
      padding: 80px 20px 100px;
      position: relative;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .testimonials-title {
      font-size: 42px;
      font-weight: 400;
      color: #333;
      line-height: 1.3;
    }

    .testimonials-title strong {
      font-weight: 700;
      color: #000;
    }

    .testimonials-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .testimonial-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .testimonial-thumbnail {
      position: relative;
      width: 100%;
      height: 280px;
      overflow: hidden;
      background: #e0e0e0;
    }

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

     .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;  
      justify-content: center;
      transition: all 0.3s ease;
    }

    .play-button i {
      font-size: 28px;
      color: #fff;
      margin-left: 4px;
    }


    .testimonial-card:hover .play-button {
      background: #696767;
      transform: translate(-50%, -50%) scale(1.1);
    }

    .testimonial-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .testimonial-quote {
      font-size: 15px;
      line-height: 1.7;
      color: #333;
      min-height: 120px;
    }

    .testimonial-author {
      font-size: 14px;
      font-weight: 700;
      color: #000;
      text-align: center;
      padding-top: 12px;
      border-top: 1px solid #e0e0e0;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 10000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.92);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      position: relative;
      width: 100%;
      max-width: 900px;
      background: #000;
      border-radius: 12px;
      overflow: hidden;
    }

    .modal-close {
      position: absolute;
      top: -50px;
      right: 0;
      background: transparent;
      border: none;
      color: #fff;
      font-size: 36px;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10001;
      transition: opacity 0.3s ease;
    }

    .modal-close:hover {
      opacity: 0.7;
    }

    .video-container {
      position: relative;
      padding-top: 56.25%;
      width: 100%;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Curva decorativa */
    .testimonials-curve {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: #000;
      overflow: visible;
    }

   /* .testimonials-curve::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 120px;
      background: #f5f5f5;
      border-radius: 0 0 50% 50%;
    }*/

    .curve-dot {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 44px;
      height: 44px;
      background: #e8e8e8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      z-index: 10;
    }

    .curve-dot i {
      font-size: 16px;
      color: #999;
    }

    /* Responsivo */
    @media (max-width: 900px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .testimonials-title {
        font-size: 32px;
      }
    }

    @media (max-width: 600px) {
      .testimonials-section {
        padding: 15px 20px 80px;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .testimonials-title {
        font-size: 28px;
      }

      .testimonial-thumbnail {
        height: 240px;
      }

      .testimonial-quote {
        font-size: 14px;
        min-height: auto;
      }

      .modal-close {
        top: -45px;
        font-size: 32px;
      }

      .testimonials-curve::before {
        width: 400px;
        height: 100px;
      }

      .curve-dot {
        width: 38px;
        height: 38px;
      }

      .curve-dot i {
        font-size: 14px;
      }
    }


     .craft-black-intro {
      
      
    }

    .intro-container {
      max-width: 720px;
      margin: 0 auto;
    }

    .intro-title {
      font-size: 29px;
      font-weight: 400;
      color: #1a1a1a;
      line-height: 1.3;
     
    }

    .intro-title strong {
      font-weight: 700;
    }

    .intro-text {
      font-size: 17px;
      line-height: 1.8;
      color: #4a4a4a;
      
    }

    .intro-highlight {
      font-size: 17px;
      line-height: 1.8;
      color: #1a1a1a;
      font-weight: 500;
      margin-bottom: 25px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #000;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 12px 30px;
      border-radius: 8px;
      transition: all 0.3s ease;
      border: 2px solid #000;
    }

    .cta-button:hover {
      background: #1a1a1a;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .cta-button i {
      font-size: 18px;
      transform: rotate(-45deg);
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .craft-black-intro {
        
      }

      .intro-title {
        font-size: 32px;
        
      }

      .intro-text,
      .intro-highlight {
        font-size: 16px;
        line-height: 1.7;
      }

      .cta-button {
        font-size: 15px;
        padding: 18px 32px;
      }
    }

    @media (max-width: 480px) {
      .intro-title {
        font-size: 28px;
      }

      .intro-text,
      .intro-highlight {
        font-size: 15px;
      }

      .cta-button {
        width: 50%;
        justify-content: center;
        padding: 18px 24px;
      }

      .about-text-02{
        margin-top: 85px;
      }
    }

    .craft-blue-intro {
      
    }

    .intro-container-blue {
      max-width: 720px;
      margin: 0 auto;
    }

    .intro-title-blue {
      font-size: 29px;
      font-weight: 400;
      color: #1a1a1a;
      line-height: 1.3;
      margin-bottom: 28px;
    }

    .intro-title-blue strong {
      font-weight: 700;
    }

    .intro-text-blue {
      font-size: 17px;
      line-height: 1.8;
      color: #4a4a4a;
      margin-bottom: 28px;
    }

    .intro-highlight-blue {
      font-size: 17px;
      line-height: 1.8;
      color: #1a1a1a;
      font-weight: 500;
      margin-bottom: 35px;
    }

    .cta-button-blue {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #6BA3D4;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 12px 30px;
      border-radius: 8px;
      transition: all 0.3s ease;
      border: 2px solid #6BA3D4;
    }

    .cta-button-blue:hover {
      background: #5A92C3;
      border-color: #5A92C3;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(107, 163, 212, 0.4);
    }

    .cta-button-blue svg {
      width: 16px;
      height: 16px;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .craft-blue-intro {
        
      }

      .intro-title-blue {
        font-size: 26px;
      }

      .intro-text-blue,
      .intro-highlight-blue {
        font-size: 16px;
        line-height: 1.7;
      }

      .cta-button-blue {
        font-size: 13px;
        padding: 12px 28px;
      }
    }

    @media (max-width: 480px) {
      .intro-title-blue {
        font-size: 24px;
      }

      .intro-text-blue,
      .intro-highlight-blue {
        font-size: 15px;
      }

      .cta-button-blue {
        width: 50%;
        justify-content: center;
        padding: 14px 24px;
      }
    }

    .craft-book-club-intro {
     
    }

    .intro-container-book {
      max-width: 720px;
      margin: 0 auto;
    }

    .intro-title-book {
      font-size: 29px;
      font-weight: 400;
      color: #1a1a1a;
      line-height: 1.3;
      
    }

    .intro-title-book strong {
      font-weight: 700;
    }

    .intro-text-book {
      font-size: 17px;
      line-height: 1.8;
      color: #4a4a4a;
      
    }

    .cta-button-book {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #E8DCC0;
      color: #1a3a4a;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 12px 30px;
      border-radius: 8px;
      transition: all 0.3s ease;
      border: 2px solid #E8DCC0;
    }

    .cta-button-book:hover {
      background: #DDD0B0;
      border-color: #DDD0B0;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(232, 220, 192, 0.5);
    }

    .cta-button-book svg {
      width: 16px;
      height: 16px;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .craft-book-club-intro {
        
      }

      .intro-title-book {
        font-size: 26px;
      }

      .intro-text-book {
        font-size: 16px;
        line-height: 1.7;
      }

      .cta-button-book {
        font-size: 13px;
        padding: 12px 28px;
      }
    }

    @media (max-width: 480px) {
      .intro-title-book {
        font-size: 24px;
      }

      .intro-text-book {
        font-size: 15px;
      }

      .cta-button-book {
        width: 50%;
        justify-content: center;
        padding: 14px 24px;
      }
    }


    .social-media-section {
      background: #f5f5f5;
      padding: 100px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .social-container {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .social-title {
      font-size: 32px;
      font-weight: 400;
      color: #1a1a1a;
      white-space: nowrap;
    }

    .social-icons {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background: #000;
      border-radius: 12px;
      color: #fff;
      text-decoration: none;
      font-size: 28px;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background: #1a1a1a;
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    .social-icon i {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .social-media-section {
        padding: 80px 20px;
      }

      .social-container {
        flex-direction: column;
        gap: 32px;
      }

      .social-title {
        font-size: 28px;
        text-align: center;
        white-space: normal;
      }

      .social-icons {
        gap: 20px;
      }

      .social-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
      }
    }

    @media (max-width: 480px) {
      .social-title {
        font-size: 24px;
      }

      .social-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
      }
    }

    .img-perfil {
  width: 46vh;
  border-radius: 2%;
}

@media (max-width: 768px) {
  .img-perfil {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top; /* Mostra a parte superior */
  }
}

@media (max-width: 480px) {
  .img-perfil {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 20%; /* Ajuste fino: mostra 20% do topo */
  }
}

@media (max-width: 768px) {
  .bio-container {
    display: flex;
    flex-direction: column;
  }
  
  /* Inverte só os 2 primeiros elementos */
  .bio-container > :nth-child(1) {
    order: 2; /* img-perfil desce */
  }
  
  .bio-container > :nth-child(2) {
    order: 1; /* bio-header sobe */
  }
  
  .bio-container > :nth-child(3) {
    order: 3; /* bio-right fica por último */
  }
}

/* Mobile: layout com logo + hambúrguer */
@media (max-width: 979px) {
  .nav-inner {
    justify-content: space-between; /* Espaça logo e hambúrguer */
    gap: 0;
    padding: 19px 20px;
  }

  .logo {
    order: 1;
  }

  .nav-menu {
    display: none; /* Esconde o menu por padrão */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px;
    z-index: var(--z-menu);
  }

  .nav-menu.open {
    display: flex; /* Mostra quando .open */
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .nav-menu a {
    font-size: 24px;
  }

  /* Botão Hambúrguer */
  .hamburger {
    display: flex;
    appearance: none;
    background: transparent;
    border: 0;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    order: 2;
    z-index: calc(var(--z-header) + 1);
  }

  .hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    display: block;
    transition: transform 0.25s, opacity 0.25s;
  }

  .hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Desktop - esconde logo mobile */
.product-logo {
  display: none;
}

/* Mobile */
@media (max-width: 760px) {
  .bloco-black {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  /* Logo mobile aparece e fica no topo */
  .product-logo {
    display: block;
    width: 200px;
    margin-bottom: 30px;
    order: 1;
  }
  
  /* Esconde a logo desktop (dentro do about-div) */
  .about-div > img {
    display: none;
  }
  
  /* Grid fica no meio */
  .black-grid {
    order: 2;
    width: 80%;
  }
  
  /* Textos ficam por último */
  .black-bio {
    order: 3;
    width: 100%;
  }
  .black-wrap{
    margin-top: 2vh;
  }
}

/* Mobile - Craft Blue */
@media (max-width: 760px) {
  .black-wrap-02 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Logo mobile do Blue fica no topo */
  .black-wrap-02 > .product-logo {
    display: block;
    width: 200px;
    margin-bottom: 30px;
    order: 1;
  }
  
  /* Grid do Blue fica no meio */
  .black-wrap-02 > .bloco-black {
    order: 2;
    width: 100%;
  }
  
  /* Textos do Blue ficam por último */
  .black-wrap-02 > .black-bio {
    order: 3;
    width: 100%;
  }
}

.produtos-cta {
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.produtos-text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.produtos-text i {
  font-size: 18px;
  color: #fff;
  animation: bounce-arrow 1.5s infinite ease-in-out;
}

/* Animação de bounce na setinha */
@keyframes bounce-arrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .produtos-cta {
    
  }
  
  .produtos-text {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .produtos-text i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .produtos-text {
    font-size: 12px;
    letter-spacing: 1px;
  }
}