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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Logo no menu - MAIOR e sem texto */
.logo-img {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
}

.logo-text {
    display: none; /* Remove o texto "AD Serra Madureira" */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #00BFFF;
}

.btn-membros {
    background: #00BFFF;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.btn-membros:hover {
    background: #00A5E0 !important;
    color: #fff !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* LARGE LOGO IN CENTER - NO TEXT */
.hero-logo-large {
    width: 90%;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.3));
    animation: fadeInScale 1.5s ease-in-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.btn-primary {
    display: inline-block;
    background: #00BFFF;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.btn-primary:hover {
    background: #00A5E0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.6);
}

.btn-secondary {
    display: inline-block;
    background: #00BFFF;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #00A5E0;
}

/* Casais Fortes Section */
.casais-fortes {
    padding: 4rem 0;
    background: #fff;
}

.casais-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Cultos Section */
.cultos {
    padding: 4rem 0;
    background: #f4f4f4;
}

.cultos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.cultos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.culto-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.culto-card h3 {
    color: #00BFFF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.horario {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* Donation Section */
.donation {
    padding: 4rem 0;
    background: #fff;
}

.donation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.donation > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.donation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.method h3 {
    color: #00BFFF;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #00BFFF;
}

/* Logo no rodapé - MAIOR */
.footer-logo {
    width: 250px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* Page Header */
.page-header {
    background: #00BFFF;
    color: #fff;
    padding: 6rem 0 3rem;
    text-align: center;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 3rem;
}

/* Content Section */
.content {
    padding: 4rem 0;
}

.content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #00BFFF;
}

.content ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.content li {
    margin: 0.5rem 0;
}

/* Ministérios Grid */
.ministerios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ministerio-card {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.ministerio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,191,255,0.3);
}

.ministerio-card h3 {
    color: #00BFFF;
    margin-bottom: 1rem;
}

/* Eventos */
.eventos-list {
    max-width: 800px;
    margin: 0 auto;
}

.evento-card {
    display: flex;
    background: #f4f4f4;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.evento-date {
    background: #00BFFF;
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 80px;
}

.evento-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.evento-time {
    color: #666;
    font-weight: bold;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form button {
    width: 100%;
}

/* Members Area */
.login-container {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}

.login-box {
    background: #f4f4f4;
    padding: 3rem;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}

/* Logo na área de login - MAIOR */
.login-logo {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #00BFFF;
}

.login-box input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.login-box button {
    width: 100%;
}

.login-help {
    text-align: center;
    margin-top: 1rem;
}

.login-help a {
    color: #00BFFF;
    text-decoration: none;
}

.members-area {
    padding: 2rem 0;
}

.members-area h2 {
    text-align: center;
    color: #00BFFF;
    margin-bottom: 3rem;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.member-section {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
}

.member-section h3 {
    color: #00BFFF;
    margin-bottom: 1rem;
}

.member-section ul {
    list-style: none;
    margin-left: 0;
}

.member-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

#logoutBtn {
    display: block;
    margin: 2rem auto 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-logo-large {
        width: 95%;
        max-width: 500px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .logo-img {
        height: 50px;
    }

    .footer-logo {
        width: 180px;
    }

    .login-logo {
        width: 150px;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}