:root {
    --primary-blue: #1a2a4a;
    --secondary-blue: #2c3e6b;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-dark: #a08030;
    --white: #ffffff;
    --cream: #f5f0e8;
    --light-bg: #faf8f5;
    --text-dark: #2c2c2c;
    --text-muted: #666666;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-top {
    border-bottom: 1px solid rgba(201,168,76,0.3);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .line1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-text .line2 {
    font-size: 0.75rem;
    color: var(--gold-light);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 2px;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 25px 15px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    font-family: 'Segoe UI', sans-serif;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,42,74,0.3), rgba(26,42,74,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content .subtitle {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.hero-content .tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.hero-divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 20px auto;
}

/* ===== SECTIONS ===== */
section {
    padding: 60px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-header .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.section-header .divider::before,
.section-header .divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.section-header .divider-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 15px;
    position: relative;
    z-index: 2;
    border: 3px solid var(--white);
}

.card-icon-wrapper i {
    color: var(--gold);
    font-size: 1.5rem;
}

.card-body {
    padding: 0 25px 25px;
}

.card-body h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Segoe UI', sans-serif;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-dark);
}

.btn-blue {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--secondary-blue);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

/* ===== PRAYER SECTION ===== */
.prayer-section {
    background: linear-gradient(rgba(26,42,74,0.85), rgba(26,42,74,0.85)), 
                url('https://images.unsplash.com/photo-1507692049790-de58290a4334?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.prayer-section h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 400;
}

.prayer-section p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    margin-bottom: 15px;
}

.footer-brand .logo-text .line1 {
    font-size: 1.1rem;
}

.footer-brand .logo-text .line2 {
    font-size: 0.65rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary-blue);
}

.footer-section h4 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-section p i {
    color: var(--gold);
    margin-right: 8px;
    width: 16px;
}

.footer-quote {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.footer-quote p {
    color: rgba(255,255,255,0.8);
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-quote .verse {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-quote .cross {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cards-grid-2 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .mobile-menu-btn {
        display: block;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    .hero-content .subtitle {
        font-size: 1.2rem;
        letter-spacing: 6px;
    }
}


/* ===== PÁGINAS INTERNAS - HERO PEQUENO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 80px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== VELAS PAGE ===== */
.velas-hero {
    background: linear-gradient(rgba(26,42,74,0.85), rgba(26,42,74,0.9)), 
                url('https://images.unsplash.com/photo-1515600419330-998319688461?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.velas-container {
    max-width: 900px;
    margin: 0 auto;
}

.vela-form-box {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.vela-color-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
}

.vela-option {
    cursor: pointer;
    text-align: center;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: var(--transition);
    background: var(--light-bg);
}

.vela-option:hover {
    border-color: var(--gold);
}

.vela-option.active {
    border-color: var(--gold);
    background: rgba(201,168,76,0.1);
}

.vela-option .vela-preview {
    width: 40px;
    height: 60px;
    margin: 0 auto 8px;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.vela-option .vela-preview::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 18px;
    background: radial-gradient(ellipse at bottom, #ffdf00, #ff8c00);
    border-radius: 50% 50% 20% 20%;
    box-shadow: 0 0 10px #ffdf00;
    animation: flicker 2s infinite alternate;
}

.vela-option span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mural-section {
    background: linear-gradient(rgba(26,42,74,0.95), rgba(26,42,74,0.95)),
                url('https://images.unsplash.com/photo-1515600419330-998319688461?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 40px;
    color: var(--white);
}

.mural-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mural-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 20px;
}

.vela-item {
    text-align: center;
    animation: flicker 3s infinite alternate;
}

.vela-flame {
    width: 15px;
    height: 22px;
    background: radial-gradient(ellipse at bottom, #ffdf00 0%, #ff8c00 50%, #ff4500 100%);
    border-radius: 50% 50% 20% 20%;
    margin: 0 auto 5px;
    box-shadow: 0 0 12px #ffdf00;
}

.vela-body {
    width: 35px;
    height: 70px;
    margin: 0 auto;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.vela-info {
    margin-top: 8px;
}

.vela-info strong {
    display: block;
    font-size: 0.75rem;
    color: var(--gold-light);
}

.vela-info span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
}

@keyframes flicker {
    0% { transform: scale(1) rotate(-1deg); opacity: 0.8; }
    25% { transform: scale(1.1) rotate(1deg); opacity: 1; }
    50% { transform: scale(0.9) rotate(-1deg); opacity: 0.9; }
    75% { transform: scale(1.05) rotate(1deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
}

/* ===== PEDIDOS PAGE ===== */
.pedidos-hero {
    background: linear-gradient(rgba(26,42,74,0.85), rgba(26,42,74,0.9)), 
                url('https://images.unsplash.com/photo-1507692049790-de58290a4334?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.radio-group {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-item input {
    width: auto;
}

.info-box {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
}

.info-box i {
    color: var(--gold);
    margin-right: 8px;
}

/* ===== COMUNIDADE PAGE ===== */
.comunidade-hero {
    background: linear-gradient(rgba(26,42,74,0.85), rgba(26,42,74,0.9)), 
                url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.community-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.live-box {
    background: #000;
    border-radius: 15px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e74c3c;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.video-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-thumb i {
    font-size: 2.5rem;
    color: var(--white);
    opacity: 0.8;
}

.video-info {
    padding: 15px;
}

.video-info h4 {
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.video-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sidebar-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h3 i {
    color: var(--gold);
}

.agenda-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-time {
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 55px;
    text-align: center;
    height: fit-content;
}

.agenda-item div strong {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.agenda-item div p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== LOJA PAGE ===== */
.loja-hero {
    background: linear-gradient(rgba(26,42,74,0.85), rgba(26,42,74,0.9)), 
                url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 25px;
    border-radius: 25px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: inherit;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-blue);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: bold;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.4rem;
    color: var(--gold-dark);
    font-weight: bold;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* ===== MEMBROS PAGE ===== */
.membros-hero {
    background: linear-gradient(rgba(26,42,74,0.9), rgba(26,42,74,0.95)), 
                url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.membership-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.membership-info {
    padding: 50px;
}

.membership-info h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.membership-info > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.benefits-list li i {
    color: var(--gold);
    font-size: 1.1rem;
}

.membership-cta {
    background: linear-gradient(135deg, var(--cream), #f0ebe0);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.membership-cta h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.price-tag {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 10px 0;
}

.price-tag span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.membership-cta > p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.membership-cta .small {
    font-size: 0.75rem;
    color: #999;
    margin-top: 15px;
}

/* ===== SOBRE PAGE ===== */
.sobre-hero {
    background: linear-gradient(rgba(26,42,74,0.85), rgba(26,42,74,0.9)), 
                url('https://images.unsplash.com/photo-1544427920-c49ccfb85579?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.mvv-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}

.mvv-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.mvv-card h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mvv-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CONTATO PAGE ===== */
.contato-hero {
    background: linear-gradient(rgba(26,42,74,0.85), rgba(26,42,74,0.9)), 
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-method i {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-method div strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 3px;
}

.contact-method div p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.social-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-btn-large:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.social-youtube { background: #ff0000; }
.social-tiktok { background: #000000; }
.social-facebook { background: #1877f2; }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 992px) {
    .community-grid,
    .contact-grid,
    .membership-card {
        grid-template-columns: 1fr;
    }
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .vela-form-box,
    .form-container,
    .membership-info,
    .membership-cta {
        padding: 25px;
    }
}
