:root {
    --wood-dark: #5D4037;
    --wood-medium: #8D6E63;
    --amber: #FF8C00;
    --amber-light: #FFA726;
    --gold: #FFB74D;
    --gold-bright: #DAA520;
    --orange: #FF6F00;
    --black-modern: #1A1A1A;
    --black-soft: #2D2D2D;
    --white-warm: #FFF8E1;
    --cream: #FFECB3;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--white-warm);
    color: var(--black-modern);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVEGAÇÃO FIXA */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--wood-medium), var(--wood-dark));
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    border-bottom: 2px solid var(--amber);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-brand h1 {
    color: var(--white-warm);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-brand p {
    color: var(--gold);
    font-size: 0.85rem;
}

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

.nav-links a {
    color: var(--white-warm);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* DROPDOWN MENU */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: var(--white-warm);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--amber);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--wood-dark);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--amber);
    color: white;
}

/* MENU MOBILE */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* CARROSSEL DESTAQUE */
.carrossel-destaque-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.carrossel-destaque-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0;
}

.carrossel-destaque-container {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    position: relative;
}

.carrossel-destaque-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.carrossel-destaque-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrossel-destaque-slide {
    background: #000;
}

.carrossel-destaque-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    object-position: center bottom;
    transform: translateY(30px);
}

/* SLIDE EVENTO */
.slide-evento {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.slide-evento-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
}

.slide-evento-imagem {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.slide-evento-imagem img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 30px 80px rgba(255,140,0,0.3);
    transform: none;
    object-position: center center;
}

.slide-evento-texto {
    padding: 3rem 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.slide-evento-texto h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.3rem;
    line-height: 1.2;
    font-style: italic;
}

.destaque-subtitulo {
    font-size: 1.5rem;
    color: var(--amber);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 2rem;
}

.revelacao {
    font-size: 1.2rem;
    color: #d0d0d0;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-style: italic;
}

.escritura-simples {
    font-size: 1.3rem;
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.verdades-simples {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.convite-data {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.convite-nome {
    color: white;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.convite-final {
    color: var(--amber);
    font-size: 1.15rem;
    font-style: italic;
    margin: 0;
}

/* NAVEGAÇÃO */
.carrossel-destaque-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,140,0,0.2);
    border: 2px solid var(--amber);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--amber);
    cursor: pointer;
    box-shadow: 0 5px 30px rgba(255,140,0,0.3);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carrossel-destaque-nav:hover {
    background: var(--amber);
    color: #000;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 50px rgba(255,140,0,0.6);
}

.carrossel-destaque-nav.prev {
    left: 30px;
}

.carrossel-destaque-nav.next {
    right: 30px;
}

/* INDICADORES */
.carrossel-destaque-indicadores {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.indicador {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,140,0,0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

.indicador:hover {
    background: rgba(255,140,0,0.6);
}

.indicador.ativo {
    background: var(--amber);
    width: 40px;
    border-radius: 7px;
    border-color: var(--gold);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    animation: float 3s ease-in-out infinite;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255,140,0,0.4);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,140,0,0.6);
}

/* SEÇÕES */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--amber), var(--gold));
    margin: 1rem auto;
    border-radius: 2px;
}

/* SOBRE - CARDS NARRATIVA */
.underline-section {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--amber), var(--gold));
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.cards-narrativa {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.card-historia {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.card-historia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--amber), var(--gold));
}

.card-historia h3 {
    color: var(--amber);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.card-historia p {
    color: var(--wood-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    font-size: 1.05rem;
}

.card-historia p:last-child {
    margin-bottom: 0;
}

.card-historia.destaque-card {
    background: linear-gradient(135deg, var(--amber), var(--orange));
    border: none;
}

.card-historia.destaque-card::before {
    display: none;
}

.card-historia.destaque-card h3 {
    color: white;
    text-align: center;
    padding-left: 0;
    font-size: 1.8rem;
    margin-bottom: 0;
}

/* CARDS DE CULTOS */
.cultos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.culto-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--amber);
    transition: all 0.3s ease;
}

.culto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.culto-card.destaque {
    background: linear-gradient(135deg, var(--amber-light), var(--orange));
    color: white;
    border-left: 5px solid var(--gold-bright);
}

.culto-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--wood-dark);
}

.culto-card.destaque h3,
.culto-card.destaque p {
    color: white;
}

.culto-horario {
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber);
    margin: 1rem 0;
}

.culto-card.destaque .culto-horario {
    color: var(--white-warm);
}

/* SOBRE */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.sobre-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.sobre-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* MINISTÉRIOS */
/* MINISTÉRIOS - OPÇÃO 2: OVERLAY */
.ministerios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ministerio-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.ministerio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ministerio-card:hover .ministerio-img {
    transform: scale(1.1);
}

.ministerio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.ministerio-card:hover .ministerio-content {
    background: linear-gradient(to top, rgba(93,64,55,0.95) 0%, rgba(93,64,55,0.7) 100%);
}

.ministerio-icone {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.ministerio-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: white;
}

.ministerio-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    color: white;
}

/* LOCALIZAÇÃO */
.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mapa {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mapa iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.endereco-box {
    background: linear-gradient(135deg, var(--wood-medium), var(--wood-dark));
    padding: 2rem;
    border-radius: 15px;
    color: white;
}

.endereco-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.endereco-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.endereco-box a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.endereco-box a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,140,0,0.4);
}

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

.contato-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contato-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contato-icone {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contato-card h3 {
    font-size: 1.5rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
}

.contato-card a {
    color: var(--amber);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contato-card a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, var(--wood-dark), var(--black-modern));
    color: white;
    padding: 3rem 2rem 1rem;
    text-align: center;
    border-top: 3px solid var(--amber);
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

footer p {
    color: var(--gold);
    margin: 0.5rem 0;
}

footer small {
    display: block;
    margin-top: 2rem;
    opacity: 0.7;
}

/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}

/* AGENDA - OPÇÃO 2: LISTA MINIMALISTA */
/* AGENDA - VERSÃO MADURA */
.agenda-madura {
    display: grid;
    gap: 1.2rem;
}

.evento-madura {
    background: white;
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--amber);
    border-radius: 12px;
    padding: 1.8rem 2rem;
    display: grid;
    grid-template-columns: 70px 70px 1fr;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.evento-madura:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(255,140,0,0.12);
    border-left-width: 6px;
    background: #f5f5f5;
}

.data-madura {
    text-align: center;
    padding: 0.5rem;
}

.data-madura .dia {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    letter-spacing: -1px;
}

.data-madura .mes {
    font-size: 0.7rem;
    color: var(--wood-medium);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
    font-weight: 500;
}

.emoji-madura {
    font-size: 3rem;
    text-align: center;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.evento-madura:hover .emoji-madura {
    opacity: 1;
    transform: scale(1.1);
}

.info-madura h3 {
    color: var(--wood-dark);
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.info-madura p {
    color: var(--wood-medium);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}

.evento-madura:nth-child(2n) {
    border-left-color: var(--gold);
}

.evento-madura:nth-child(3n) {
    border-left-color: var(--wood-medium);
}

/* LIDERANÇA */
.lideranca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.pastor-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--amber);
    transition: all 0.3s ease;
}

.pastor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* MESA CAFÉ - SPLIT LAYOUT */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split-content h3 {
    color: var(--amber);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.split-content p {
    color: var(--wood-medium);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.split-highlight {
    background: var(--white-warm);
    padding: 1.5rem;
    border-left: 4px solid var(--amber);
    border-radius: 10px;
    margin-top: 2rem;
}

.split-highlight p {
    color: var(--amber);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.split-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-item {
    background: var(--white-warm);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.visual-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255,140,0,0.15);
}

.visual-emoji {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
}

.visual-text h4 {
    color: var(--wood-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.visual-text p {
    color: var(--wood-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* CARROSSEL DE IMAGENS */
.carrossel-section {
    background: var(--white-warm);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
}

.carrossel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.carrossel-track {
    display: flex;
    gap: 2rem;
    animation: scroll-infinito 40s linear infinite;
    width: max-content;
}

.carrossel-track:hover {
    animation-play-state: paused;
}

.carrossel-slide {
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.carrossel-slide:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255,140,0,0.3);
}

.carrossel-slide img {
    height: 400px;
    width: auto;
    display: block;
}

@keyframes scroll-infinito {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* RESPONSIVO */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, var(--wood-medium), var(--wood-dark));
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        margin-top: 0.5rem;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    /* Carrossel Destaque Mobile */
    .carrossel-destaque-section {
        padding: 0;
        min-height: 100vh;
    }

    .carrossel-destaque-slide img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100vh;
        object-fit: contain;
    }

    .slide-evento-content {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
        height: 100vh;
    }

    .slide-evento-imagem {
        padding: 2rem;
        height: 50vh;
    }

    .slide-evento-imagem img {
        max-width: 100%;
    }

    .slide-evento-texto {
        padding: 2rem 1.5rem;
        height: 50vh;
    }

    .slide-evento-texto h2 {
        font-size: 1.6rem;
    }

    .destaque-subtitulo {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .revelacao {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .escritura-simples {
        font-size: 1.25rem;
    }

    .verdades-simples {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .convite-data {
        font-size: 1.1rem;
    }

    .convite-nome {
        font-size: 1.5rem;
    }

    .convite-final {
        font-size: 1.1rem;
    }

    .carrossel-destaque-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .carrossel-destaque-nav.prev {
        left: 15px;
    }

    .carrossel-destaque-nav.next {
        right: 15px;
    }

    .carrossel-destaque-indicadores {
        bottom: 20px;
    }

    .indicador {
        width: 12px;
        height: 12px;
    }

    .indicador.ativo {
        width: 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .sobre-content,
    .localizacao-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .evento-madura {
        grid-template-columns: 60px 60px 1fr;
        gap: 1.2rem;
        padding: 1.5rem;
    }

    .emoji-madura {
        font-size: 2.5rem;
    }

    .data-madura .dia {
        font-size: 1.8rem;
    }

    .info-madura h3 {
        font-size: 1.1rem;
    }

    .info-madura p {
        font-size: 0.9rem;
    }

    .lideranca-grid {
        grid-template-columns: 1fr;
    }

    .pastor-card {
        padding: 2rem;
    }

    .split-container {
        grid-template-columns: 1fr;
    }

    .ministerios-grid {
        grid-template-columns: 1fr;
    }

    .ministerio-card {
        height: 300px;
    }

    /* Carrossel mobile */
    .carrossel-section {
        padding: 2rem 0;
    }

    .carrossel-slide img {
        height: 250px;
        width: auto;
    }
}
