/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais */
    --royal-purple: #6B3FA0;
    --prophetic-gold: #FFD700;
    --holy-spirit-blue: #4A90E2;
    --faith-white: #FFFFFF;
    --grace-gray: #F8F9FA;
    --testimony-black: #1A1A2E;
    --light-gray: #E8E9EB;
    --medium-gray: #6C757D;
    
    /* Gradientes */
    --prophetic-gradient: linear-gradient(135deg, #6B3FA0 0%, #4A90E2 100%);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFAA00 100%);
    --purple-gradient: linear-gradient(135deg, #6B3FA0 0%, #8B5FBF 100%);
    
    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-special: 'Montserrat', sans-serif;
    
    /* Espaçamentos */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Sombras */
    --shadow-light: 0 5px 15px rgba(107, 63, 160, 0.1);
    --shadow-medium: 0 10px 30px rgba(107, 63, 160, 0.2);
    --shadow-heavy: 0 20px 50px rgba(107, 63, 160, 0.3);
    --shadow-gold: 0 10px 30px rgba(255, 215, 0, 0.3);
    
    /* Transições */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Bordas */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --border-radius-full: 50px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--testimony-black);
    background-color: var(--faith-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--testimony-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    padding: 20px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--prophetic-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

.loading-text {
    color: var(--faith-white);
    max-width: 400px;
}

.loading-verse {
    font-style: italic;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.loading-reference {
    color: var(--prophetic-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 26, 46, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-special);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--prophetic-gold);
    text-transform: uppercase;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--faith-white);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--faith-white);
    transition: all var(--transition-fast);
    position: absolute;
    left: 0;
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
    bottom: 0;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--faith-white);
    text-decoration: none;
    font-family: var(--font-special);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--prophetic-gold);
}

.nav-link.active {
    color: var(--prophetic-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--prophetic-gold);
    border-radius: 2px;
}

.nav-link.prayer-btn {
    background: var(--gold-gradient);
    color: var(--testimony-black);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.nav-link.prayer-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--testimony-black);
}

.nav-social {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1rem;
}

.social-icon {
    color: var(--faith-white);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    color: var(--prophetic-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B69 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(107, 63, 160, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
    color: var(--faith-white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: var(--font-special);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--prophetic-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.title-line:nth-child(1) {
    color: var(--faith-white);
    opacity: 0;
    animation: fadeInLeft 1s ease 0.5s forwards;
}

.title-line:nth-child(2) {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: fadeInRight 1s ease 0.7s forwards;
}

.hero-verse {
    max-width: 600px;
    margin: 2rem auto 3rem;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.hero-verse i {
    color: var(--prophetic-gold);
    margin: 0 0.5rem;
    font-size: 1.2rem;
}

.verse-ref {
    font-size: 1rem;
    font-weight: 600;
    color: var(--prophetic-gold);
    margin-top: 0.5rem;
    font-style: normal;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--testimony-black);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--faith-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--faith-white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: var(--royal-purple);
    border: 2px solid var(--royal-purple);
}

.btn-outline:hover {
    background: var(--royal-purple);
    color: var(--faith-white);
}

.btn-accent {
    background: var(--prophetic-gradient);
    color: var(--faith-white);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-icon {
    font-size: 1.5rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--grace-gray);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.profile-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease;
}

.image-frame:hover .profile-img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--gold-gradient);
    color: var(--testimony-black);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.image-badge span {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
}

.image-badge small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-content {
    padding-left: 2rem;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--testimony-black);
}

.about-title .highlight {
    background: var(--prophetic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--faith-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-family: var(--font-special);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--royal-purple);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== SERMONS SECTION ===== */
.sermons-section {
    padding: var(--section-padding);
    background: var(--faith-white);
}

.sermons-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: var(--grace-gray);
    border: 2px solid transparent;
    border-radius: var(--border-radius-full);
    font-family: var(--font-special);
    font-weight: 600;
    color: var(--medium-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    color: var(--royal-purple);
    border-color: var(--royal-purple);
    background: var(--faith-white);
}

.filter-btn.active {
    background: var(--prophetic-gradient);
    color: var(--faith-white);
    border-color: transparent;
}

.sermons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sermon-card {
    background: var(--faith-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
}

.sermon-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.sermon-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sermon-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sermon-card:hover .sermon-thumbnail img {
    transform: scale(1.1);
}

.sermon-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--prophetic-gold);
    color: var(--testimony-black);
    padding: 0.25rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.sermon-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    color: var(--faith-white);
    font-size: 3rem;
    background: var(--prophetic-gold);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.play-overlay i:hover {
    transform: scale(1.1);
}

.sermon-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--faith-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 500;
}

.sermon-content {
    padding: 1.5rem;
}

.sermon-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--testimony-black);
    line-height: 1.3;
}

.sermon-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.sermon-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.meta-date,
.meta-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-verse {
    background: var(--grace-gray);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--royal-purple);
}

.sermon-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
}

.action-btn {
    flex: 1;
    padding: 0.75rem;
    background: var(--grace-gray);
    border: none;
    border-radius: var(--border-radius);
    color: var(--medium-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: var(--royal-purple);
    color: var(--faith-white);
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B69 100%);
    color: var(--faith-white);
}

.events-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.event-highlight {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-countdown h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--faith-white);
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-family: var(--font-special);
    font-size: 3rem;
    font-weight: 800;
    color: var(--prophetic-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--prophetic-gold);
    margin-top: -1rem;
}

.event-name {
    text-align: center;
    font-size: 1.2rem;
    margin: 2rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.event-highlight .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: var(--prophetic-gold);
}

.event-date {
    background: var(--prophetic-gradient);
    color: var(--faith-white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 70px;
}

.event-day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.event-month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--faith-white);
}

.event-location,
.event-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.event-action .btn-small {
    background: var(--gold-gradient);
    color: var(--testimony-black);
    white-space: nowrap;
}

.event-action .btn-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--grace-gray);
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

.testimonial-content {
    background: var(--faith-white);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    font-family: var(--font-heading);
    color: var(--prophetic-gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--testimony-black);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--prophetic-gold);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--royal-purple);
    margin-bottom: 0.25rem;
}

.author-details {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--faith-white);
    border: none;
    border-radius: 50%;
    color: var(--royal-purple);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-fast);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--royal-purple);
    color: var(--faith-white);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--royal-purple);
    transform: scale(1.2);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 5rem 0;
    background: var(--prophetic-gradient);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--faith-white);
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-full);
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--faith-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--prophetic-gold);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-consent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--prophetic-gold);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--testimony-black);
    color: var(--faith-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    align-items: flex-start;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: color var(--transition-fast);
}

.footer-social .social-link:hover {
    color: var(--prophetic-gold);
}

.footer-title {
    font-family: var(--font-special);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--faith-white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--prophetic-gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--prophetic-gold);
    width: 20px;
}

.footer-app {
    margin-top: auto;
}

.footer-app p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--faith-white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.app-btn:hover {
    background: var(--royal-purple);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--prophetic-gold);
}

/* ===== FLOATING ELEMENTS ===== */
.floating-prayer {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold-gradient);
    color: var(--testimony-black);
    border: none;
    border-radius: var(--border-radius-full);
    padding: 1rem 1.5rem;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-gold);
    z-index: 900;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.floating-prayer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--royal-purple);
    color: var(--faith-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 900;
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--holy-spirit-blue);
    transform: translateY(-5px);
}

/* ===== UTILITY CLASSES ===== */
.highlight {
    color: var(--royal-purple);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.link-desabilitado {
    pointer-events: none; /* Impede clique */
    cursor: default;      /* Cursor normal */
    opacity: 0.5;         /* Aparência esmaecida */
    text-decoration: none;/* Remove sublinhado se desejado */
}