<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Moon styling */
.moon-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0; /* Behind content */
    overflow: hidden;
}

.moon {
    position: absolute;
    top: -50px; /* Ajustado para compensar o tamanho menor */
    right: -40%; /* Ajustado para compensar o tamanho menor */
    width: 500px; /* 50% do tamanho original */
    height: 500px; /* 50% do tamanho original */
    border-radius: 50%;
    background-image: url('../images/moon.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 
        0 0 50px rgba(255, 255, 255, 0.15),
        0 0 100px rgba(255, 255, 255, 0.1);
    z-index: 0;
}

/* Moon illumination effect */
.moon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 40%,
        transparent 70%
    );
    border-radius: 50%;
}

/* Light glow from the moon */
.moon-light {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 5%,
        rgba(255, 255, 255, 0.05) 10%,
        rgba(255, 255, 255, 0.02) 20%,
        transparent 40%
    );
    pointer-events: none;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .moon {
        width: 450px;
        height: 450px;
        right: -39%;
    }
}

@media (max-width: 1200px) {
    .moon {
        width: 400px;
        height: 400px;
        right: -38%;
    }
}

@media (max-width: 992px) {
    .moon {
        width: 350px;
        height: 350px;
        right: -37%;
    }
}

@media (max-width: 768px) {
    .moon {
        width: 300px;
        height: 300px;
        right: -36%;
    }
}

@media (max-width: 576px) {
    .moon {
        width: 250px;
        height: 250px;
        right: -35%;
    }
}

/* Ensure the moon doesn't interfere with content */
#hero {
    position: relative;
    z-index: 2;
}

/* Stars background */
.stars-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -1;
}

.star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 4s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.8; 
    }
    50% { 
        opacity: 0.4;
    }
}</pre></body></html>