body {
    background-color: #121212; /* Fallback color */
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    text-align: left; /* Alinhamento geral para a esquerda */
    overflow-x: hidden;
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/background.jpg') no-repeat center center/cover;
    z-index: -2;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Overlay escuro */
    z-index: -1;
}

.content {
    position: relative; 
    z-index: 1;
    padding-top: 120px; /* Ajuste para o novo header */
}

section {
    min-height: 100vh; /* Cada seção ocupa a altura da tela */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    border-bottom: none; /* Remover bordas */
    background-color: transparent; /* Remover fundo das seções */
    backdrop-filter: none; /* Remover desfoque */
    z-index: 1;
}

.hero {
    text-align: center;
}

.details {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    width: 100%;
}

.text-block {
    margin: 0 auto;
    max-width: 600px;
}

.text-block p,
.text-block ul {
    text-align: center;
}

h1 {
    font-size: 6rem; /* Título bem maior */
    font-weight: 700;
    letter-spacing: 0.5rem; /* Mais espaçamento entre letras */
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-top: 1rem;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    text-align: left;
    max-width: none;
    margin: 0 0 1rem 0;
}

.benefits ul, .details ul {
    list-style-position: outside;
    padding-left: 20px; /* Adicionar padding para a lista */
    text-align: left;
}

.details ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
}

.details ul li {
    text-align: center;
}

.cta-button {
    display: block;
    margin: 4rem auto 0 auto;
    background: linear-gradient(90deg, #3a5a78 0%, #4f7ca6 100%);
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(58,90,120,0.10);
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(90deg, #4f7ca6 0%, #3a5a78 100%);
    transform: translateY(-2px) scale(1.04);
}

footer {
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    position: relative; /* Garante que o rodapé fique sobre o overlay */
    z-index: 1;
    margin-top: 4rem;
}

/* --- Estilos do Header e Navegação --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    z-index: 10;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo {
    width: auto;
    height: 52px;
    display: block;
    margin: 0;
}

.site-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 2px solid #3a5a78;
    padding-bottom: 0.2rem;
}

header nav, .nav-link, .logo, .site-title {
    display: initial;
}

header nav .nav-link {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem; /* Fonte ainda menor */
    font-weight: 700;
    color: #ffffff; /* Cor do texto principal branca */
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 0.4rem;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent; /* Para manter o alinhamento caso adicione mais links */
}

header nav .nav-link.active {
    color: #ffffff; /* Garante que a cor ativa também seja branca */
    border-bottom: 2px solid #3a5a78; /* Mantém o sublinhado azul */
}

.hero h1 {
    display: none;
}

/* --- Animação Fade-in --- */
.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

.exclusive-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    width: 100%;
    margin: 0 auto 1rem auto;
}

.exclusive-title {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.gallery-img {
    max-width: 220px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    background: #fff;
    transition: transform 0.3s;
}

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

.gallery-img.fade-in-element {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

.gallery-img.fade-in-element.visible {
    opacity: 1;
    transform: translateX(0);
}

.escalada-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    margin-top: 1.25vw;
    margin-bottom: 1vw;
}

.escalada-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    text-align: center;
    text-shadow: none;
    margin: 0;
}

.hero-title-block {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.comunidade-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1.75rem 0 1.25rem 0;
}

.comunidade-title {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
}

.comunidade-discord-img {
    width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.operacoes-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.operacao-img {
    max-width: 220px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    background: #fff;
    transition: transform 0.3s;
}

.operacao-img:hover {
    transform: scale(1.04);
}

.operacao-img.fade-in-element {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

.operacao-img.fade-in-element.visible {
    opacity: 1;
    transform: translateX(0);
}

.pool-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.pool-img {
    max-width: 1000px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    background: #fff;
    transition: transform 0.3s;
}

.pool-img:hover {
    transform: scale(1.04);
}

.pool-img.fade-in-element {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

.pool-img.fade-in-element.visible {
    opacity: 1;
    transform: translateX(0);
}

.details .text-block p,
.details .text-block ul,
.details .text-block li {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    text-align: center;
}

.details h2 {
    font-size: 2rem;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.mundo-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
}

.mundo-img {
    max-width: 1200px;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transition: transform 0.3s;
}

.mundo-img:hover {
    transform: scale(1.04);
}

.mundo-img.fade-in-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 2.2s cubic-bezier(0.4,0,0.2,1), transform 2.2s cubic-bezier(0.4,0,0.2,1);
}

.mundo-img.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
} 