/* style.css */
@import url("https://fonts.cdnfonts.com/css/aeonik-pro");
@import url("https://use.typekit.net/sho6jhs.css");

body {
    margin: 0;
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
    /*font-family: "Aeonik Pro", "Arial", sans-serif;*/
    overflow-x: hidden; 
    background-color: #ffffff; 
}

p {
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.5rem;
}

.main-content-wrapper {
    width: 100%;
    position: relative; /* Needed for fixed positioning of logo within this pinned container */
}



/* --- Menu Trigger e Overlay --- */

.menu-trigger {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999;
    background: rgba(0,0,0,0.5);  /* Círculo preto 50% opaco */
    border: none;
    cursor: pointer;
    padding: 12px;
    color: #fff;
    border-radius: 50%;           /* Deixa circular */
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);  /* Sombra sutil */
    display: flex;                /* Centraliza o ícone no botão */
    align-items: center;
    justify-content: center;
    width: 68px;                  /* Largura/altura iguais = círculo perfeito */
    height: 68px;
    transition: background 0.2s, box-shadow 0.2s;
}

.menu-trigger svg {
    width: 32px;
    height: 32px;
    color: #fff;                  /* Ícone branco */
}

.menu-trigger:hover {
    background: rgba(0,0,0,0.75);
    box-shadow: 0 3px 7px rgba(0,0,0,0.5);
    /* border: 2px solid rgba(255,255,255,0.95); */
}

/* .panel-hero .menu-trigger { */
    /* color: #fff;  Now default is white, can adjust if needed when not over hero */
/* } */

.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; 
    height: 100vh;
    background: rgba(25, 135, 84, 0.5);  /* verde escuro + transparência */
    backdrop-filter: blur(12px);           /* O blur "real" */
    -webkit-backdrop-filter: blur(12px);   /* Safari */
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Para animação de escala */
    transform: scaleX(0);
    transform-origin: center;
    visibility: hidden;
    opacity: 0;
    transition: none; /* GSAP cuida da transição */
    /* transform: translateX(100%); 
    visibility: hidden; 
    box-shadow: -5px 0px 15px rgba(0,0,0,0.1);
    padding-top: 60px; 
    box-sizing: border-box; */
}

.menu-overlay.menu-open {
    /* Só pra garantir que o JS coloque esse class pra manter o foco/scroll */
    visibility: visible;
    opacity: 1;
}

.menu-close-trigger {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #ffffff; 
}

.menu-nav {
    width: 92%;      /* aumenta o espaço interno */
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%; 
}

.menu-nav ul li {
    margin: 0; 
    padding: 20px 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
    width: 80%; 
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(32px);
    transition: none;
}

.menu-nav ul li:last-child {
    border-bottom: none; 
}

.menu-nav ul li a {
    font-size: 2rem; 
    color: #ffffff; 
    text-decoration: none;
    font-weight: bold; 
    display: block; 
}

.menu-nav ul li a:hover {
    color: #f0f0f0; 
}


/* --- Transition --- */

/* .section-transition {
    position: absolute;
    will-change: transform;
} */

/* --- Seção de Scroll Horizontal --- */

.horizontal-scroll-section {
    display: flex;
    flex-direction: row;
    width: 250vw; 
    height: 100vh;
    will-change: transform; 
}

.panel {
    height: 100vh;
    display: flex;
    flex-shrink: 0;
    position: relative;
    overflow: hidden; 
    align-items: center; 
    justify-content: center; 
}

/* --- Painel 1: Hero --- */
.panel-hero {
    width: 100vw;
    color: #ffffff;
    display: flex;
    justify-content: flex-end; /* Alinhando à direita em vez de centro */
    align-items: flex-end;
}

.panel-hero-logo {
    position: fixed; /* Changed to fixed */
    bottom: 72px;
    left: 65px;
    width: 250px; 
    height: auto;
    z-index: 1000; /* Above hero content, below menu overlay and triggers */
    will-change: opacity;
}

.panel-hero-background-image-wrap {
    position: absolute; /* Restaurar esta propriedade */
    top: 0;            /* Restaurar esta propriedade */
    left: 0;           /* Restaurar esta propriedade */
    width: 100%;       /* Restaurar esta propriedade */
    height: 100%;      /* Restaurar esta propriedade */
    overflow: hidden;  /* Manter para o efeito parallax */
    z-index: 1;        /* Restaurar esta propriedade */
    background-color: #1b4118;
}

.panel-hero-background-image {
    width: 130%;       /* Manter para o efeito parallax */
    height: 130%;      /* Manter para o efeito parallax */
    object-fit: cover;
    position: absolute;
    top: -20%;
    left: -10%;
}

.panel-hero-content-wrapper {
    position: relative;
    z-index: 2; /* Above background, below logo if it were absolute */
    padding: 40px;
    width: 100%;
    margin: 0 0 5vh auto; /* Margin auto à direita para posicionar mais à direita */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Right-align all flex children */
    overflow: visible; /* Allow content to overflow for parallax effect */
}

.hero-subtext-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
    position: relative;
    right: 0; /* Aumentado para 50% para posicionar mais à direita */
}

.panel-hero-secondary-text {
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
    /*font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-style: normal;*/
    font-size: 1.5rem;
    max-width: 37%;
    text-align: right;
    line-height: 1.25;
    margin: 0;
}

.hero-heading-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: 0; /* Aumentado para 30% para posicionar mais à direita */
}

.panel-hero-title {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 6rem;
    margin: 0;
    line-height: 1.0;
    opacity: 0.8;
    max-width: 80%;
    text-align: right;
    text-transform: uppercase; /* Transforma o texto em letras maiúsculas */
}

.split-animate {
    opacity: 0.8; /* Temporário para depuração */
    transform: translateY(40px); /* ou o valor que você preferir para o efeito de subida */
}

/* --- Painel 2: Conteúdo Branco --- */
.panel-content-white {
    width: 50vw;
    background-color: #ffffff;
    color: #333333;
    padding: 90px;
    text-align: center;
    height: 100vh; /* Garantir que ocupe toda a altura da viewport */
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.panel-content-white-text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.panel-content-white-text-container h2 {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1rem;
    letter-spacing: .1rem;
    margin-bottom: 100px;
    align-self: center;
    padding-top: 5vh;
    flex: 0 0 auto; /* Não crescer nem encolher, manter tamanho automático */
}

.panel-content-white-text-container p {
    font-size: 2rem;
    line-height: 1.2;
    font-family: "zahrah", serif;
    font-weight: 500;
    font-style: normal;
    align-self: center;
    max-width: 90%;
    margin: auto;
    flex: 1; /* Ocupar espaço disponível, empurrando os outros elementos */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inicialmente esconde o texto do parágrafo APENAS no painel branco */
.panel-content-white-paragraph {
    opacity: 0;
}
  

.panel-content-white-text {
    font-size: 2rem;
    line-height: 1.2;
    font-family: "zahrah", serif;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 50px;
}

.section-typing_text .cursor {
    animation: cursorBlink 0.5s alternate infinite;
}

@keyframes cursorBlink {
    from {opacity: 0;}
    to {opacity: 100%;}
}

.panel-02-logo {
    height: 240px;
    width: 380px; /* Definir uma largura específica para o contêiner Lottie */
    margin-left: auto;
    margin-right: auto;
    display: block;
    align-self: center;
    padding-bottom: 1vh;
    flex: 0 0 auto; /* Não crescer nem encolher, manter tamanho automático */
    position: relative; /* Necessário para o contêiner Lottie */
}

/* --- Painel 3: Imagem Central com Parallax --- */
.panel-image-parallax-container {
    width: 50vw;
    overflow: hidden; 
    position: relative;
}

.panel-image-parallax-image {
    position: absolute;
    top: 0;
    left: 0; 
    height: 100%;
    width: 150%; 
    object-fit: cover;
    will-change: transform;
}

/* --- Painel 4: Conteúdo Laranja --- */
.panel-content-orange {
    width: 50vw; 
    background-color: #FFA726; 
    color: #ffffff;
    padding: 2rem;
    height: 100vh; /* Garantir que ocupe toda a altura da viewport */
    box-sizing: border-box;
}

.panel-content-orange-text-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-content-orange-text-container h2 {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 6rem;
    line-height: 0.9;
    opacity: 0.8;
    text-transform: uppercase;
    color: #ffffff;
    text-align: right;
    align-self: flex-end;
    margin: 0;
    margin-top: auto; /* Empurra para o final do container */
    padding-bottom: 1rem;
    padding-right: 1rem;
    width: 100%; /* Ocupar toda a largura disponível */
}

.panel-content-orange-text-container p {
    font-size: 2rem;
    line-height: 1.2;
    font-family: "zahrah", serif;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    align-self: flex-start;
    margin: 0;
    padding-top: 0.5rem;
    padding-left: 0.5rem;
    max-width: 80%;
}


  