body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #0f172a;
    color: #f8fafc;
    font-size: 14px; /* Reduzido para texto base menor */
}

/* Efeito de gradiente para o fundo */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(91, 33, 182, 0.2) 0%, rgba(16, 185, 129, 0.1) 50%, rgba(59, 130, 246, 0.2) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Header moderno com gradiente */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #4338ca, #3b82f6);
    color: white;
    padding: 8px 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

#logo {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#logo:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

#openMenu, #closeMenu {
    font-size: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
}

#openMenu:hover, #closeMenu:hover {
    transform: scale(1.1);
}

/* Navegação moderna */
nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    display: block;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 13px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(79, 70, 229, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    width: max-content;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li a {
    padding: 6px 16px;
    border-radius: 0;
}

nav ul li ul li a:hover {
    background-color: rgba(99, 102, 241, 0.6);
    color: #ffffff;
}

.arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Layout principal */
.main-content {
    display: flex;
    flex: 1;
    margin: 20px 5%;
    gap: 20px;
}

main {
    flex: 3;
    padding: 30px;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.full-height {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

/* Aside moderno */
aside {
    flex: 1;    
    padding: 25px;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: justify;
    color: #f8fafc;
}

aside aside {
    flex: 1;
    padding: 20px;
    background: linear-gradient(135deg, rgba(67, 56, 202, 0.7), rgba(16, 185, 129, 0.7));
    text-align: center;  
    border-radius: 12px;
    margin-bottom: 20px;    
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Footer moderno */
footer {
    background: linear-gradient(135deg, #4338ca, #3b82f6);
    color: white;
    text-align: center;
    width: 100%; 
    padding: 5px 0;
    position: fixed;
    bottom: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

footer p {
    margin: 3px 0;
    line-height: 1.3;
    font-size: 11px;
}

footer a {
    color: #a5f3fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #f0abfc;
}

.site-title {
    font-size: 18px;
}

.site-subtitle {
    font-size: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 80%;
        max-width: 300px;
        background: rgba(67, 56, 202, 0.95);
        backdrop-filter: blur(10px);
        padding: 60px 20px 20px;
        z-index: 1000;
        overflow-y: auto;
        transition: transform 0.3s ease;
        transform: translateX(100%);
    }

    #logo {
        font-size: 18px;
    }

    nav.show {
        transform: translateX(0);
        display: flex;
    }

    #openMenu {
        display: block;
        font-size: 18px;
    }

    #closeMenu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 18px;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li ul {
        position: static;
        width: 100%;
        background: rgba(99, 102, 241, 0.5);
        margin-top: 5px;
        margin-bottom: 5px;
        border-radius: 8px;
    }

    nav ul li ul li a {
        padding-left: 30px;
    }

    nav ul li a .arrow {
        float: right;
    }

    #menu.show {
        display: flex;
    }

    .main-content {
        flex-direction: column;
    }

    aside {
        order: -1;
    }

    footer p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {


    header {
        padding: 6px 10px;
    }

    #logo {
        font-size: 16px;
    }

    #openMenu, #closeMenu {
        font-size: 20px;
    }

    .main-content {
        margin: 10px;
        gap: 10px;
    }

    main, aside {
        padding: 15px;
    }

    footer p {
        font-size: 9px;
    }
}

/* Efeito de animação para AliErMan */
@keyframes colorChange {
    0% { color: #8b5cf6; }
    25% { color: #3b82f6; }
    50% { color: #10b981; }
    75% { color: #6366f1; }
    100% { color: #8b5cf6; }
}

.center-message span {
    display: inline-block;
    animation: colorChange 8s infinite;
    text-shadow: 0 0 15px currentColor;
}

.center-message span:nth-child(1) { animation-delay: 0s; }
.center-message span:nth-child(2) { animation-delay: 0.3s; }
.center-message span:nth-child(3) { animation-delay: 0.6s; }
.center-message span:nth-child(4) { animation-delay: 0.9s; }
.center-message span:nth-child(5) { animation-delay: 1.2s; }
.center-message span:nth-child(6) { animation-delay: 1.5s; }
.center-message span:nth-child(7) { animation-delay: 1.8s; }
.center-message span:nth-child(8) { animation-delay: 2.1s; }
.center-message span:nth-child(9) { animation-delay: 2.4s; }
.center-message span:nth-child(10) { animation-delay: 2.7s; }
.center-message span:nth-child(11) { animation-delay: 3.0s; }
.center-message span:nth-child(12) { animation-delay: 3.3s; }

.center-message .large-text {
    font-size: 8vw;
    font-weight: bold;
}

.center-message .medium-text {
    font-size: 4vw;
    font-weight: 500;
}

/* Seções de conteúdo com visual moderno */
.sec, .seca {
    background: rgba(99, 102, 241, 0.3);
    color: #f8fafc;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: justify;   
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sec:hover, .seca:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.degr, .degra {
    background: linear-gradient(90deg, #6366f1, #10b981);
    padding: 12px 20px;
    border-radius: 30px;
    text-align: center;
    color: white;
    font-weight: 600;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.degra {
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    text-align: right;
}

/* Formulários e caixas de diálogo modernos */
#senha-form, #erro-acesso {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    max-width: 400px;
    width: 90%;
}

#senha-form h3, #erro-acesso h3 {
    font-size: 16px;
    color: #f0abfc;
    margin-top: 8px;
    margin-bottom: 10px;
}

#senha-form input[type="password"] {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#senha-form input[type="password"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.5);
}

#senha-form button[type="submit"], #erro-acesso button {
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s ease;
}

#senha-form button[type="submit"]:hover, #erro-acesso button:hover {
    background: linear-gradient(90deg, #4f46e5, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.5);
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #f8fafc;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #f87171;
    transform: scale(1.1);
}

/* Versículo bíblico */
#verse {
    font-size: 1rem;
    color: #e9d5ff;
    text-align: justify;
    font-style: italic;
    line-height: 1.6;
    font-weight: 400;
}

/* Lista expansível moderna */
.expandable-list {
    display: none; 
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.expandable-list li {
    margin: 8px 0;
    transition: all 0.3s ease;
}

.expandable-list li a {
    display: block;
    padding: 10px 15px;
    color: #f8fafc;
    text-decoration: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.expandable-list li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.header {
    cursor: pointer;
    padding: 15px;
    margin: 10px 0;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    font-weight: 600;
    color: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.header:hover {
    background: rgba(99, 102, 241, 0.5);
}

.header::after {
    content: "▼";
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.header.open::after {
    transform: rotate(180deg);
}

/* Componentes adicionais para player de música, etc. */
.floating-music-player {
    position: fixed;
    bottom: 80px;
    left: 30px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 900;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.music-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.controls {
    display: flex;
    gap: 10px;
}

.controls button {
    background: rgba(99, 102, 241, 0.3);
    color: #f8fafc;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.controls button:hover {
    background: rgba(99, 102, 241, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee span {
    display: inline-block;
    animation: marquee 12s linear infinite;
    color: #a5f3fc;
}