/* Estilo específico para MIPES - Ministério Pessoal */
:root {
    --mipes-primary: #1e88e5;
    --mipes-secondary: #0d47a1;
    --mipes-accent: #ffa726;
    --mipes-success: #43a047;
    --mipes-light: #e3f2fd;
    --mipes-dark: #0d47a1;
    --mipes-gradient: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
}

/* Header Customizado */
.mipes-header {
    background: var(--mipes-gradient);
    color: white;
    text-align: center;
    padding: 50px 20px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.3);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.mipes-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.mipes-header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.mipes-header h1 i {
    margin-right: 15px;
    animation: bounce 2s ease-in-out infinite;
}

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

.mipes-header .subtitle {
    font-size: 1.3em;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.mipes-header .mission-verse {
    font-size: 1.1em;
    font-style: italic;
    opacity: 0.9;
    max-width: 700px;
    margin: 15px auto 0;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

/* Navegação Horizontal Moderna */
.mipes-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px auto;
    flex-wrap: wrap;
    max-width: 900px;
    padding: 0 20px;
}

.mipes-nav .nav-item {
    background: white;
    color: var(--mipes-primary);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.mipes-nav .nav-item:hover {
    background: var(--mipes-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
    border-color: var(--mipes-accent);
}

.mipes-nav .nav-item i {
    font-size: 1.2em;
}

/* Container Principal */
.mipes-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Cards de Destaque */
.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.highlight-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--mipes-gradient);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.3);
    border-color: var(--mipes-primary);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--mipes-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2em;
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
    transition: all 0.3s ease;
}

.highlight-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-card h3 {
    color: var(--mipes-primary);
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}

.highlight-card p {
    color: #555;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
}

.card-badge {
    display: inline-block;
    background: var(--mipes-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
}

/* Seções de Conteúdo */
.evangelismo-section,
.pg-section,
.duplas-section,
.classe-section {
    background: white;
    border-radius: 25px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

/* Seção Genérica MIPES (usada em todas as abas) */
.mipes-section {
    /* Estilo genérico para seções de conteúdo */
    margin: 20px 0; /* Espaçamento básico entre seções */
}

.evangelismo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: var(--mipes-gradient);
}

.pg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
}

.duplas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(135deg, #ffa726 0%, #f57c00 100%);
}

.classe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(135deg, #ab47bc 0%, #7b1fa2 100%);
}

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

.section-header h1 {
    color: var(--mipes-primary);
    font-size: 2.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header h1 i {
    color: var(--mipes-accent);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--mipes-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

.intro-text {
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    margin: 25px 0;
    padding: 20px;
    background: var(--mipes-light);
    border-radius: 15px;
    border-left: 5px solid var(--mipes-primary);
}

.bible-verse {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    border-left: 5px solid var(--mipes-success);
    padding: 25px;
    margin: 25px 0;
    border-radius: 15px;
    font-style: italic;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.bible-verse p {
    font-size: 1.1em;
    color: #2e7d32;
    line-height: 1.8;
    margin-bottom: 10px;
}

.bible-verse cite {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--mipes-success);
    font-style: normal;
    margin-top: 15px;
}

.quote-section {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 5px solid var(--mipes-accent);
    padding: 30px;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.quote-section p {
    color: #4e342e;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.quote-section .author {
    display: block;
    font-weight: 600;
    color: var(--mipes-accent);
    font-style: italic;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 167, 38, 0.3);
    text-align: right;
}

/* Animações de Entrada */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .mipes-header h1 {
        font-size: 2em;
    }

    .mipes-nav {
        flex-direction: column;
        align-items: center;
    }

    .mipes-nav .nav-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .highlight-cards {
        grid-template-columns: 1fr;
    }

    .evangelismo-section,
    .pg-section,
    .duplas-section,
    .classe-section {
        padding: 25px 20px;
    }

    .section-header h1 {
        font-size: 1.8em;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .mipes-header {
        padding: 30px 15px;
    }

    .mipes-header h1 {
        font-size: 1.6em;
    }

    .mipes-header .mission-verse {
        font-size: 0.95em;
        padding: 12px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
}

/* Efeito de Scroll Suave */
html {
    scroll-behavior: smooth;
}

/* Destaque ao navegar com hash */
:target {
    animation: highlight 2s ease;
}

@keyframes highlight {
    0%, 100% { background-color: transparent; }
    50% { background-color: rgba(30, 136, 229, 0.1); }
}

/* ============================================ */
/* SISTEMA DE ABAS (TABS) */
/* ============================================ */

/* Navegação por Abas */
.mipes-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px auto;
    flex-wrap: wrap;
    max-width: 1000px;
    padding: 0 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 15px;
}

.tab-btn {
    background: transparent;
    color: #666;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.tab-btn i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    background: rgba(30, 136, 229, 0.1);
    color: var(--mipes-primary);
    transform: translateY(-2px);
}

.tab-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.tab-btn.active {
    background: var(--mipes-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
    transform: translateY(-2px);
}

.tab-btn.active i {
    animation: bounce 2s ease-in-out infinite;
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--mipes-accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.tab-btn.active::before {
    width: 80%;
}

/* Separador Visual entre Abas e Links Rápidos */
.tabs-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
    margin: 0 10px;
    align-self: center;
}

/* Links de Acesso Rápido - Mesmo estilo das abas */
.tab-btn.quick-link {
    /* Herda todos os estilos de .tab-btn */
    text-decoration: none;
}

/* Conteúdo das Abas */
.tab-content {
    display: none !important;
}

.tab-content.active {
    display: block !important;
    animation: fadeIn 0.5s ease;
}

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

/* Cabeçalho da Aba */
.tab-header {
    background: var(--mipes-gradient);
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    margin: 0 0 40px 0;
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.tab-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

.tab-header h1 {
    font-size: 2.3em;
    margin: 0 0 10px 0;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.tab-header h1 i {
    margin-right: 15px;
}

.tab-header p {
    font-size: 1.1em;
    margin: 10px 0 0 0;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* Responsividade das Abas */
@media (max-width: 768px) {
    .mipes-tabs {
        flex-direction: column;
        align-items: center;
        border-radius: 20px;
        padding: 10px;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 15px 20px;
    }

    .tab-header h1 {
        font-size: 1.8em;
    }

    .tab-header p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        font-size: 0.9em;
        padding: 12px 15px;
    }

    .tab-header h1 {
        font-size: 1.5em;
    }

    .tab-header p {
        font-size: 0.95em;
    }
}

/* ========================================
   ESTILOS ESPECÍFICOS PARA ABA REDE NOVO TEMPO
   ======================================== */

/* Header com gradiente azul */
.nt-header {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
}

.nt-header p.verse {
    font-style: italic;
    margin-top: 10px;
}

/* Seção destaque TV com fundo azul */
.nt-tv-highlight {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
}

.nt-tv-highlight h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

.nt-tv-highlight .channel-intro {
    font-size: 1.3em;
    margin-bottom: 20px;
}

.nt-tv-highlight .channel-number {
    font-size: 6em;
    font-weight: bold;
    color: #ff6b35;
    margin: 30px 0;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
}

.nt-tv-highlight .signal-badge {
    font-size: 1.2em;
    margin-top: 20px;
}

.nt-tv-highlight .signal-badge span {
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 25px;
    display: inline-block;
}

.nt-tv-highlight .description {
    font-size: 1.05em;
    margin-top: 25px;
    line-height: 1.8;
}

/* Grid de serviços */
.nt-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.nt-service-card {
    text-align: center;
}

.nt-service-card .icon {
    font-size: 4em;
    color: #0066cc;
    margin-bottom: 15px;
}

.nt-service-card h3 {
    color: #0066cc;
}

.nt-service-card .highlight-text {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ff6b35;
}

.nt-service-card .secondary-text {
    margin-top: 15px;
    font-size: 0.95em;
    opacity: 0.7;
}

/* Grid de apps e plataformas */
.nt-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.nt-app-link {
    text-align: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s;
}

.nt-app-link:hover {
    transform: translateY(-5px);
}

.nt-app-link .icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.nt-app-link.ntplay {
    background: linear-gradient(135deg, #0066cc, #004a99);
}

.nt-app-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.nt-app-link.radio {
    background: linear-gradient(135deg, #1db954, #1aa34a);
}

.nt-app-link.gravadora {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* Redes sociais */
.nt-social-section {
    margin-top: 50px;
    text-align: center;
}

.nt-social-section h2 {
    color: #0066cc;
}

.nt-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.nt-social-btn {
    padding: 15px 30px;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.nt-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.nt-social-btn.youtube {
    background: #ff0000;
}

.nt-social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.nt-social-btn.facebook {
    background: #1877f2;
}

.nt-social-btn.spotify {
    background: #1db954;
}

/* Seção de download de apps */
.nt-download-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.nt-download-section h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.nt-download-section p {
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.nt-download-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nt-store-btn {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: #333;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.nt-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Grid de programas */
.nt-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.nt-program-card {
    border-left-width: 5px;
    border-left-style: solid;
}

.nt-program-card.purple { border-left-color: #9b59b6; }
.nt-program-card.blue { border-left-color: #3498db; }
.nt-program-card.red { border-left-color: #e74c3c; }
.nt-program-card.orange { border-left-color: #f39c12; }
.nt-program-card.green { border-left-color: #27ae60; }
.nt-program-card.dark-orange { border-left-color: #e67e22; }

.nt-program-card h3 {
    margin-bottom: 10px;
}

.nt-program-card.purple h3 { color: #9b59b6; }
.nt-program-card.blue h3 { color: #3498db; }
.nt-program-card.red h3 { color: #e74c3c; }
.nt-program-card.orange h3 { color: #f39c12; }
.nt-program-card.green h3 { color: #27ae60; }
.nt-program-card.dark-orange h3 { color: #e67e22; }

/* Seção sobre a Rede Novo Tempo */
.nt-about-card {
    border-left-width: 5px;
    border-left-style: solid;
}

.nt-about-card.blue { border-left-color: #0066cc; }
.nt-about-card.green { border-left-color: #27ae60; }
.nt-about-card.orange { border-left-color: #ff6b35; }

.nt-about-card h3 {
    margin-bottom: 10px;
}

.nt-about-card p,
.nt-about-card ul {
    font-size: 1.05em;
    line-height: 1.8;
}

.nt-about-card ul li {
    margin: 8px 0;
}

/* Seção CTA final */
.nt-cta-section {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
    border-radius: 20px;
}

.nt-cta-section h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.nt-cta-section p {
    font-size: 1.15em;
    margin-bottom: 25px;
}

.nt-website-btn {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #0066cc;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.nt-website-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Seção convite final "Venha Conhecer" */
.nt-cta-invite {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
}

.nt-cta-invite h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.nt-cta-invite .invite-text {
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.nt-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.nt-info-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
}

.nt-info-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.nt-info-card p {
    font-size: 1.1em;
}

.nt-cta-invite .contact-info {
    font-size: 1.15em;
    margin-top: 35px;
    opacity: 0.9;
}

.channel-highlight {
    font-size: 1.5em;
    color: #ff6b35;
}

/* ========================================
   CLASSES UTILITÁRIAS GLOBAIS
   ======================================== */

/* Cores de texto */
.text-purple { color: #5e35b1; }
.text-purple-light { color: #7e57c2; }
.text-purple-lighter { color: #9575cd; }
.text-blue { color: #1976d2; }
.text-blue-dark { color: #0066cc; }
.text-green { color: #388e3c; }
.text-orange { color: #ff6f00; }
.text-orange-red { color: #ff6b35; }
.text-white { color: white; }

/* Alinhamento */
.text-center { text-align: center; }

/* Margens */
.m-0 { margin: 0; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.my-30 { margin: 30px 0; }

/* Tipografia */
.text-sm { font-size: 0.95em; }
.text-base { font-size: 1em; }
.text-md { font-size: 1.05em; }
.text-lg { font-size: 1.1em; }
.text-xl { font-size: 1.5em; }

/* Line height */
.lh-relaxed { line-height: 1.8; }
.lh-loose { line-height: 2; }

/* Opacidade */
.opacity-90 { opacity: 0.9; }

/* Grids */
.grid-250 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.gap-20 { gap: 20px; }

/* Cards e boxes */
.card-white {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.border-left-blue {
    border-left: 5px solid #1976d2;
    margin: 20px 0;
}

.border-left-green {
    border-left: 5px solid #388e3c;
    margin: 20px 0;
}

.badge-light {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Seções especiais */
.section-invite-transparent {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
}

.section-info-box {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #0066cc;
}

.section-purple-gradient {
    text-align: center;
    background: linear-gradient(135deg, #ede7f6 0%, #d1c4e9 100%);
    padding: 40px;
    border-radius: 15px;
}

.section-purple-cta {
    margin-top: 30px;
    text-align: center;
    font-size: 1.3em;
    padding: 25px;
    background: linear-gradient(135deg, #8e24aa 0%, #6a1b9a 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(142, 36, 170, 0.3);
}

.section-purple-box {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #ede7f6 0%, #d1c4e9 100%);
    border-radius: 15px;
    border-left: 6px solid #8e24aa;
}

.bg-white { background: white; }

.box-green {
    margin-top: 25px;
    padding: 20px;
    background: #e8f5e9;
    border-radius: 10px;
    border-left: 5px solid #43a047;
}

/* Textos especiais */
.text-center-green-lg {
    margin-top: 20px;
    text-align: center;
    font-size: 1.2em;
    color: #2e7d32;
}

.text-italic { font-style: italic; }

.text-italic-quote {
    font-style: italic;
    font-size: 1.2em;
    line-height: 1.8;
    margin: 20px 0;
}

.lh-extra-loose { line-height: 2.5; }

/* Notas e alertas */
.note-purple {
    margin-top: 20px;
    font-size: 0.9em;
    background: rgba(94, 53, 177, 0.1);
    padding: 15px;
    border-left: 4px solid #5e35b1;
}

.note-teal {
    margin-top: 20px;
    font-size: 0.9em;
    background: rgba(0, 137, 123, 0.1);
    padding: 15px;
    border-left: 4px solid #00897b;
}

/* Ícones grandes */
.icon-3xl { font-size: 3em; }

/* Cores adicionais */
.text-purple-medium { color: #9b59b6; }
.text-green-medium { color: #27ae60; }

/* Tamanhos de fonte adicionais */
.text-xl-sm { font-size: 1.2em; }
.text-xl-md { font-size: 1.3em; }

/* Font weight */
.fw-bold { font-weight: bold; }

/* Padding */
.p-30 { padding: 30px; }

/* ====================================
   ROUND 4: FINAL CLEANUP CLASSES
   ==================================== */

/* Borders: Additional Colors */
.border-left-pink { border-left: 5px solid #e91e63; }
.border-left-orange-deep { border-left: 5px solid #ff6f00; }
.border-left-orange-bright { border-left: 5px solid #ff9800; }

/* Boxes: Special Gradient Boxes */
.box-teal-gradient { 
    border-left: 6px solid #00897b; 
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%); 
    min-height: 400px; 
}
.box-purple-gradient { 
    border-left: 6px solid #5e35b1; 
    background: linear-gradient(135deg, #ede7f6 0%, #d1c4e9 100%); 
    min-height: 400px; 
}

/* Text Colors: Extended Palette */
.text-blue-dark { color: #0066cc; }
.text-green-medium { color: #43a047; }
.text-green-dark { color: #2e7d32; }
.text-purple-medium { color: #9b59b6; }
.text-purple-darker { color: #4527a0; }
.text-purple-darkest { color: #6a1b9a; }
.text-purple-lightest { color: #b39ddb; }
.text-indigo { color: #3f51b5; }
.text-indigo-dark { color: #303f9f; }
.text-pink { color: #e91e63; }
.text-pink-dark { color: #c2185b; }
.text-orange-red { color: #ff6b35; }
.text-orange-bright { color: #ff9800; }
.text-orange-deep { color: #f57c00; }
.text-teal-dark { color: #00695c; }
.text-white { color: white; }
.text-red-strong { color: #d32f2f; }

/* Margins: Additional Spacing */
.mb-15 { margin-bottom: 15px; }
.m-15 { margin: 15px 0; }
.my-25 { margin: 25px 0; }
.my-30 { margin: 30px 0; }
.mt-10 { margin-top: 10px; }

/* Typography: Font Sizes */
.text-xs { font-size: 0.8em; }
.text-md { font-size: 1.05em; }
.text-lg-plus { font-size: 1.15em; }
.text-2xl { font-size: 1.8em; }
.text-xl-lg { font-size: 1.4em; }

/* Typography: Line Height */
.lh-relaxed { line-height: 1.8; }
.lh-extra-relaxed { line-height: 2.2; }

/* Layout: Flexbox */
.flex-center { display: flex; align-items: center; }
.gap-10 { gap: 10px; }
.gap-25 { gap: 25px; }

/* Layout: Display */
.d-block { display: block; }

/* Layout: Opacity */
.opacity-95 { opacity: 0.95; }

/* Grid: Extended Grid Systems */
.grid-250 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-280 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-320 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* Buttons: Special CTA Button */
.btn-white-green {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #27ae60;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-white-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Margens adicionais */
.my-20 { margin: 20px 0; }

/* Backgrounds com gradientes */
.bg-gradient-purple {
    background: linear-gradient(135deg, #5e35b1 0%, #4527a0 100%);
}

.bg-gradient-purple-dark {
    background: linear-gradient(135deg, #8e24aa 0%, #6a1b9a 100%);
}

.bg-gradient-purple-medium {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
}

.bg-gradient-green {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.bg-gradient-green-box {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
}

.bg-gradient-green-box-lg {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.bg-gradient-green-dark {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
}

/* Backgrounds simples com caixas */
.bg-teal-box {
    background: #26a69a;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.bg-purple-light-box {
    background: #7e57c2;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

/* Cards com backgrounds coloridos claros */
.card-blue-light {
    background: #e3f2fd;
    border-left: 5px solid #1976d2;
}

.card-green-light {
    background: #e8f5e9;
    border-left: 5px solid #43a047;
}

.card-purple-light {
    background: #f3e5f5;
    border-left: 5px solid #5e35b1;
}

.card-orange-light {
    background: #fff3e0;
    border-left: 5px solid #ff6f00;
}

/* Cards brancos com bordas coloridas */
.card-white-blue {
    background: white;
    color: #333;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #0066cc;
}

.card-white-green {
    background: white;
    color: #333;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #27ae60;
}

.card-white-purple {
    background: white;
    color: #333;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #9b59b6;
}

.card-white-orange {
    background: white;
    color: #333;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #ff6b35;
}

.card-transparent-white {
    background: rgba(255,255,255,0.2);
    border-left-color: white;
    color: white;
}

/* Bordas laterais */
.border-left-blue-solid {
    border-left: 5px solid #1976d2;
}

.border-left-indigo {
    border-left: 5px solid #3f51b5;
}

.border-left-green-solid {
    border-left: 5px solid #388e3c;
}

.border-left-green-medium {
    border-left: 5px solid #43a047;
}

.border-left-purple-solid {
    border-left: 5px solid #5e35b1;
}

.border-left-purple-light-solid {
    border-left: 5px solid #7e57c2;
}

.border-left-purple-lighter-solid {
    border-left: 5px solid #9575cd;
}

.border-left-purple-lightest {
    border-left: 5px solid #b39ddb;
}
