/* Variáveis e Reset */
:root {
    --color-bg: #050215;
    --color-primary: #6e00ff;
    --color-secondary: #00e5ff;
    --color-accent: #ff6b00;
    --color-text: #ffffff;
    --color-text-muted: #a0a0c0;
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Fundo de estrelas */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.stars {
    background: #000 url('https://i.imgur.com/YKY28eT.png') repeat top center;
}

.twinkling {
    background: transparent url('https://i.imgur.com/XYMF4ca.png') repeat top center;
    animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

/* Elementos de geometria sagrada */
.sacred-geometry {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
    margin-right: 15px;
    animation: rotate 10s linear infinite;
}

.sacred-geometry::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background-color: var(--color-bg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.sacred-geometry-small {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
    margin-right: 10px;
    animation: rotate 10s linear infinite;
}

.sacred-geometry-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background-color: var(--color-bg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 2, 21, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(110, 0, 255, 0.2);
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    color: var(--color-text);
    border: none;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 0, 255, 0.6);
}

/* Seção Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 100px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(110, 0, 255, 0.2) 0%, rgba(5, 2, 21, 0) 70%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--color-text-muted);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(110, 0, 255, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Seções Gerais */
section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 0 auto;
    border-radius: 2px;
}

/* Seção Sobre */
.sobre {
    background: linear-gradient(180deg, var(--color-bg), rgba(5, 2, 21, 0.9));
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.sobre-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sobre-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
}

/* Seção Sessões */
.sessoes {
    background: linear-gradient(180deg, rgba(5, 2, 21, 0.9), var(--color-bg));
}

.sessao-card {
    display: flex;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(110, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.sessao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(110, 0, 255, 0.3);
}

.sessao-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    color: var(--color-text);
}

.sessao-content {
    padding: 30px;
}

.sessao-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.sessao-content p {
    margin-bottom: 10px;
}

/* Seção Alien Divider */
.alien-divider {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-bg), rgba(5, 2, 21, 0.9));
}

.alien-divider img {
    max-width: 100%;
    height: auto;
    transform: scale(0.8);
    transition: transform 0.5s ease;
}

.alien-divider img:hover {
    transform: scale(0.85);
}

/* Seção Investimento */
.investimento {
    background: linear-gradient(180deg, rgba(5, 2, 21, 0.9), var(--color-bg));
}

.preco-card {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(110, 0, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.preco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(110, 0, 255, 0.4);
}

.preco-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.preco-header h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
}

.preco-valor {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preco-detalhes {
    list-style: none;
    margin-bottom: 30px;
}

.preco-detalhes li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preco-detalhes li:last-child {
    border-bottom: none;
}

/* Seção Fraternidade */
.fraternidade {
    background: linear-gradient(180deg, var(--color-bg), rgba(5, 2, 21, 0.9));
    text-align: center;
}

.fraternidade p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

/* Seção Contato */
.contato {
    background: linear-gradient(180deg, rgba(5, 2, 21, 0.9), var(--color-bg));
}

.contato-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(110, 0, 255, 0.2);
    border-radius: 5px;
    color: var(--color-text);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(110, 0, 255, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: rgba(5, 2, 21, 0.9);
    padding: 40px 5%;
    border-top: 1px solid rgba(110, 0, 255, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-footer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-footer h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 180px;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .sobre-content {
        flex-direction: column;
    }
    
    .sobre-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px 5%;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .sessao-card {
        flex-direction: column;
    }
    
    .sessao-number {
        width: 100%;
        padding: 15px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .preco-valor {
        font-size: 2.5rem;
    }
}



/* User Profile */
.user-profile {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.user-profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.6);
}




.contact-whatsapp {
    text-align: center;
    margin-top: 30px;
}

.contact-whatsapp p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.whatsapp-button {
    background: linear-gradient(45deg, #25D366, #128C7E);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}


