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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8fbff;
    color: #1f2937;
}


.logo-text h1 {
    font-size: 30px;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.logo-text span {
    color: #6b7280;
    font-size: 13px;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

nav a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;

    padding: 12px 18px;
    border-radius: 14px;

    transition: 0.3s ease;
}

nav a:hover {
    background: rgba(30,58,138,0.08);
    color: #1e3a8a;
}



.nav-highlight:hover {
    background: #2746a6;
    transform: translateY(-2px);
}



.logout-form button:hover {
    background: rgba(255,0,0,0.08);
    color: #dc2626;
}
.features {
    padding: 90px 7%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;

    background:
        linear-gradient(180deg, #f8fbff, #eef5ff);
}

.feature-card {
    position: relative;
    overflow: hidden;

    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px);

    padding: 34px;
    border-radius: 30px;

    border: 1px solid rgba(30,58,138,0.08);

    box-shadow:
        0 18px 50px rgba(30,58,138,0.10);

    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 70px rgba(30,58,138,0.16);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    background:
        radial-gradient(circle, rgba(30,58,138,0.10), transparent 70%);
}

.feature-card h3 {
    color: #1e3a8a;
    font-size: 26px;
    margin-bottom: 16px;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 16px;
}

.home-dynamic {
    padding: 90px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

    background:
        linear-gradient(180deg, #eef5ff, #ffffff);
}

.home-column {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px);

    border-radius: 32px;
    padding: 34px;

    border: 1px solid rgba(30,58,138,0.08);

    box-shadow:
        0 18px 50px rgba(30,58,138,0.10);
}

.home-column h2 {
    color: #1e3a8a;
    font-size: 34px;
    margin-bottom: 28px;
}

.highlight-column {
    position: relative;
    overflow: hidden;
}

.highlight-column::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;

    width: 260px;
    height: 260px;

    background:
        radial-gradient(circle, rgba(212,175,55,0.14), transparent 70%);
}

.mini-card {
    position: relative;

    background: #ffffff;

    padding: 24px;
    border-radius: 22px;

    border: 1px solid rgba(30,58,138,0.08);

    margin-bottom: 18px;

    transition: 0.25s ease;
}

.mini-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 34px rgba(30,58,138,0.10);
}

.mini-card strong {
    color: #d4af37;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

.mini-card h3 {
    color: #1f2937;
    font-size: 24px;
    margin-bottom: 10px;
}

.mini-card p {
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 950px) {

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

    .home-dynamic {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 950px) {

    .navbar-wrapper {
        flex-direction: column;
        gap: 22px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-logo {
        height: 58px;
    }

    .logo-text h1 {
        font-size: 24px;
    }
}





.logo-area span {
    font-size: 12px;
    color: #d8b25c;
}

nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

nav a {
    color: #1e3a8a;
    text-decoration: none;
    font-size: 15px;
}


.hero {
    min-height: 78vh;
    padding: 80px 7%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(216,178,92,0.22), transparent 35%),
        linear-gradient(135deg, #07111f, #0e2747);
}

.tag {
    display: inline-block;
    color: #d4af37;
    border: 1px solid rgba(212,175,55,0.5);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    background: rgba(212,175,55,0.08);
}

.hero h2 {
    font-size: 56px;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #1e3a8a;
}

.hero p {
    max-width: 620px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 34px;
    display: flex;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
    box-shadow: 0 10px 24px rgba(30,58,138,0.18);
}

.btn-primary:hover {
    background: #2746a6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    border: 2px solid #1e3a8a;
    color: #1e3a8a;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

.hero-card {
    min-height: 340px;
    border-radius: 28px;
    padding: 32px;
    background:
    radial-gradient(circle at top left, rgba(30,58,138,0.08), transparent 35%),
    linear-gradient(135deg, #ffffff, #edf4ff);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}


.live-badge {
    color: #ff5c5c;
    font-weight: bold;
    margin-bottom: 14px;
}

.hero-card h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: gray;
}


.feature-card h3 {
    color: #d8b25c;
    margin-bottom: 12px;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.5;
}

.mission {
    padding: 70px 7%;
    text-align: center;
    background: #ffffff;
    color: #1f2937;
}

.mission h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.mission p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
}

footer {
    padding: 26px 7%;
    text-align: center;
    color: #aab6c8;
    background: #050b14;
}

@media (max-width: 850px) {
    .site-header {
        flex-direction: column;
        gap: 20px;
    }

    .peace-user {
    width: 100%;
    text-align: center;
    display: block;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 7%;
    }

    .hero h2 {
        font-size: 38px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}
.page-hero {
    padding: 80px 7% 50px;
    background:
        radial-gradient(circle at top right, rgba(216,178,92,0.18), transparent 35%),
        linear-gradient(135deg, #07111f, #102b4d);
}

.small-hero {
    min-height: 320px;
}

.page-hero h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    color: #4b5563;
    max-width: 650px;
    font-size: 18px;
    line-height: 1.6;
}

.events-section {
    padding: 50px 7% 80px;
    display: grid;
    gap: 20px;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(30,58,138,0.08);
    box-shadow: 0 18px 50px rgba(30,58,138,0.10);
}

.event-date {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    background: #1e3a8a;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;

    box-shadow: 0 10px 24px rgba(30,58,138,0.18);
}

.event-date strong {
    font-size: 30px;
}

.event-date span {
    font-size: 13px;
    font-weight: bold;
}

.event-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.event-card p {
    color: #4b5563;
}

.live-section {
    padding: 60px 7% 90px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.video-box {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.video-placeholder {
    min-height: 420px;
    background:
        linear-gradient(rgba(7,17,31,0.45), rgba(7,17,31,0.9)),
        url("https://images.unsplash.com/photo-1522441815192-d9f04eb0615c?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-placeholder span {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ffffff;
    color: #07111f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 18px;
}

.video-placeholder p {
    color: #ffffff;
    font-size: 18px;
}

.live-info {
    background: rgba(255,255,255,0.06);
    padding: 34px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.08);
}

.live-status {
    color: #ff5c5c;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 16px;
}

.live-info h3 {
    font-size: 34px;
    margin-bottom: 16px;
}

.live-info p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 28px;
}

@media (max-width: 850px) {
    .page-hero h2 {
        font-size: 36px;
    }

    .live-section {
        grid-template-columns: 1fr;
    }

    .video-box,
    .video-placeholder {
        min-height: 280px;
    }
}


.section-title {
    text-align: center;
    margin-bottom: 38px;
}

.section-title h2 {
    font-size: 38px;
    margin: 16px 0 10px;
}

.section-title p {
    color: #4b5563;;
}

.home-dynamic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.home-column h2 {
    margin-bottom: 22px;
    color: #d8b25c;
}

.highlight-column {
    background:
        radial-gradient(circle at top right, rgba(216,178,92,0.18), transparent 35%),
        rgba(255,255,255,0.06);
}



.mini-card strong {
    color: #d8b25c;
    display: block;
    margin-bottom: 8px;
}

.mini-card h3 {
    margin-bottom: 8px;
}

.mini-card p {
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 18px;
}

@media (max-width: 850px) {
    .home-dynamic-grid {
        grid-template-columns: 1fr;
    }
}
.about-grid-section {
    padding: 70px 7%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.about-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    padding: 34px;
    min-height: 300px;
}

.about-card span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #d8b25c;
    color: #07111f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.about-card h3 {
    color: #d8b25c;
    font-size: 24px;
    margin-bottom: 14px;
}

.about-card p {
    color: #4b5563;
    line-height: 1.7;
}

.about-banner {
    padding: 80px 7%;
    background:
        linear-gradient(rgba(7,17,31,0.35), rgba(7,17,31,0.9)),
        url("https://images.unsplash.com/photo-1548625149-fc4a29cf7092?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
}

.about-banner div {
    max-width: 760px;
}

.about-banner h2 {
    font-size: 42px;
    margin: 18px 0;
}

.about-banner p {
    color: #4b5563;;
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 850px) {
    .about-grid-section {
        grid-template-columns: 1fr;
    }

    .about-banner h2 {
        font-size: 32px;
    }
}

/* ===============================
   EVENT DETAIL PAGE - UPDATED
   =============================== */

.event-detail-page {
    min-height: 85vh;
    padding: 80px 7%;
    background:
        radial-gradient(circle at top left, rgba(30,58,138,0.08), transparent 35%),
        linear-gradient(135deg, #f8fbff, #eef5ff);
}

.event-detail-card {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.event-detail-image {
    min-height: 520px;
    border-radius: 34px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 70px rgba(30,58,138,0.16);
}

.event-detail-info {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(30,58,138,0.08);
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 24px 70px rgba(30,58,138,0.12);
}

.event-detail-info h1 {
    color: #1e3a8a;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    margin: 18px 0;
}

.event-detail-meta {
    color: #d4af37;
    font-weight: 900;
    margin-bottom: 22px;
}

.event-detail-info p {
    color: #374151;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Legacy support for old evento_detalhe.html classes */
.evento-hero {
    min-height: auto;
    padding: 80px 7%;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(30,58,138,0.08), transparent 35%),
        linear-gradient(135deg, #f8fbff, #eef5ff) !important;
}

.evento-overlay {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(30,58,138,0.08);
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 24px 70px rgba(30,58,138,0.12);
}

.evento-overlay h1 {
    color: #1e3a8a;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    margin: 18px 0;
}

.evento-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    color: #d4af37;
    font-weight: 900;
}

.evento-overlay p {
    color: #374151;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.event-card a {
    color: #1f2937;
    text-decoration: none;
}

.event-card a:hover {
    color: #1e3a8a;
}

@media (max-width: 950px) {
    .event-detail-card {
        grid-template-columns: 1fr;
    }

    .event-detail-image {
        min-height: 320px;
    }

    .event-detail-info,
    .evento-overlay {
        padding: 30px;
    }

    .event-detail-info h1,
    .evento-overlay h1 {
        font-size: 38px;
    }

    .evento-meta {
        flex-direction: column;
        gap: 10px;
    }
}

.site-logo:hover {
    transform: scale(1.03);
}
.login-section {
    min-height: 75vh;
    padding: 80px 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(30,58,138,0.08), transparent 35%),
        linear-gradient(135deg, #ffffff, #edf4ff);
}

.login-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 24px 60px rgba(30,58,138,0.12);
}

.login-card h2 {
    color: #1e3a8a;
    margin-bottom: 12px;
    font-size: 32px;
}

.login-card p {
    color: #4b5563;
    margin-bottom: 28px;
}

.login-card form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-card label {
    color: #1f2937;
    font-weight: bold;
    margin-top: 8px;
}

.login-card input {
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    font-size: 16px;
}

.login-card input:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30,58,138,0.12);
}

.login-btn {
    border: none;
    cursor: pointer;
    margin-top: 16px;
}
.user-menu {
    color: #1e3a8a;
    font-weight: bold;
}

.logout-form {
    margin: 0;
}

.logout-form button {
    background: transparent;
    border: none;
    color: #1e3a8a;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
}
.form-link {
    margin-top: 20px;
    text-align: center;
}

.form-link a {
    color: #1e3a8a;
    font-weight: bold;
    text-decoration: none;
}

.cadastro-card {
    max-width: 620px;
}

.login-card select,
.login-card input[type="file"] {
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    font-size: 16px;
    background: white;
}
.cadastro-section {
    min-height: 85vh;
    padding: 80px 7%;
    background:
        radial-gradient(circle at top left, rgba(30,58,138,0.08), transparent 35%),
        linear-gradient(135deg, #ffffff, #edf4ff);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cadastro-box {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 30px;
    padding: 44px;
    box-shadow: 0 24px 70px rgba(30,58,138,0.14);
    border: 1px solid rgba(0,0,0,0.06);
}

.cadastro-header {
    text-align: center;
    margin-bottom: 34px;
}

.cadastro-header h2 {
    font-size: 38px;
    color: #1e3a8a;
    margin: 12px 0;
}

.cadastro-header p {
    color: #4b5563;
}

.cadastro-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full,
.form-actions.full {
    grid-column: span 2;
}

.form-group label {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.12);
    font-size: 16px;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30,58,138,0.12);
}

.form-actions {
    text-align: center;
    margin-top: 10px;
}

.form-actions button {
    border: none;
    cursor: pointer;
    min-width: 180px;
}

.form-link {
    margin-top: 18px;
    color: #4b5563;
}

.form-link a {
    color: #1e3a8a;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 850px) {
    .cadastro-form {
        grid-template-columns: 1fr;
    }

    .form-group.full,
    .form-actions.full {
        grid-column: span 1;
    }

    .cadastro-box {
        padding: 28px;
    }

    .cadastro-header h2 {
        font-size: 30px;
    }
}

.dashboard-section {
    min-height: 85vh;
    padding: 80px 7%;
    background:
        radial-gradient(circle at top left, rgba(30,58,138,0.08), transparent 35%),
        linear-gradient(135deg, #ffffff, #edf4ff);
}

.dashboard-header {
    background: #ffffff;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(30,58,138,0.12);
    border: 1px solid rgba(0,0,0,0.06);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 34px;
}

.profile-area {
    display: flex;
    align-items: center;
    gap: 24px;
}

.profile-area img,
.profile-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4af37;
}

.profile-placeholder {
    background: #1e3a8a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: bold;
}

.dashboard-header h2 {
    color: #1e3a8a;
    font-size: 34px;
    margin: 10px 0;
}

.dashboard-header p {
    color: #4b5563;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 26px;
}

.dashboard-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(30,58,138,0.10);
    border: 1px solid rgba(0,0,0,0.06);
}

.dashboard-card h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-bottom: 20px;
}

.dashboard-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 10px;
}

.dashboard-card strong {
    color: #1f2937;
}

.dashboard-list-item {
    padding: 16px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 14px;
}

.dashboard-list-item strong {
    color: #d4af37;
    display: block;
    margin-bottom: 6px;
}

.dashboard-list-item span {
    color: #1f2937;
    font-weight: bold;
}

@media (max-width: 950px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .profile-area {
        flex-direction: column;
        align-items: flex-start;
    }
}

.community-section {
    padding: 80px 7%;
    background:
        radial-gradient(circle at top left, rgba(30,58,138,0.08), transparent 35%),
        linear-gradient(135deg, #ffffff, #edf4ff);
    min-height: 85vh;
}

.community-header {
    text-align: center;
    margin-bottom: 42px;
}

.community-header h2 {
    color: #1e3a8a;
    font-size: 42px;
    margin: 14px 0;
}

.community-header p {
    color: #4b5563;
}

.community-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.community-box,
.feed-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(30,58,138,0.10);
    border: 1px solid rgba(0,0,0,0.06);
}

.community-box {
    margin-bottom: 24px;
}

.community-box h3,
.community-feed h3 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 24px;
}

.community-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.community-box label {
    font-weight: bold;
    color: #1f2937;
}

.community-box input,
.community-box textarea,
.community-box select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.12);
    font-size: 16px;
    background: white;
}

.community-box textarea {
    min-height: 130px;
    resize: vertical;
}

.checkbox-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal !important;
}

.checkbox-line input {
    width: auto;
}

.feed-card {
    margin-bottom: 18px;
}

.prayer-card {
    border-left: 5px solid #d4af37;
}

.feed-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.feed-meta strong {
    color: #1e3a8a;
    font-size: 20px;
}

.feed-meta span {
    color: #6b7280;
    font-size: 14px;
}

.feed-card p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 12px;
}

.feed-card small {
    color: #6b7280;
}

.feed-image {
    width: 100%;
    margin-top: 14px;
    border-radius: 18px;
    max-height: 420px;
    object-fit: cover;
}

.feed-title-space {
    margin-top: 40px;
}

@media (max-width: 950px) {
    .community-layout {
        grid-template-columns: 1fr;
    }

    .community-header h2 {
        font-size: 32px;
    }
}

/* ===============================
   CLEAN RESPONSIVE NAVBAR
   =============================== */

.mobile-clean-header {
    position: sticky;
    top: 0;
    z-index: 3000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(30,58,138,0.08);
    padding: 12px 5%;
}

.clean-navbar {
    max-width: 1500px;
    margin: 0 auto;
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255,255,255,0.72);
    border-radius: 30px;
    padding: 10px 26px;

    box-shadow: 0 14px 45px rgba(30,58,138,0.08);
}

.clean-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.clean-brand img {
    height: 120px;
    width: auto;
    max-width: 310px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(30,58,138,0.22));
}

.peace-user {
    color: #1e3a8a;
    font-weight: 800;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.35);
    padding: 10px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.clean-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.clean-menu a,
.clean-menu button {
    text-decoration: none;
    border: none;
    background: transparent;
    color: #1f2937;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.25s ease;
}

.clean-menu a:hover,
.clean-menu button:hover {
    background: #eef5ff;
    color: #1e3a8a;
}

.clean-highlight {
    background: #1e3a8a !important;
    color: white !important;
    padding: 11px 18px !important;
    box-shadow: 0 10px 24px rgba(30,58,138,0.20);
}

.clean-highlight:hover {
    background: #2746a6 !important;
    color: white !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    font-size: 30px;
    color: #1e3a8a;
    cursor: pointer;
    line-height: 1;
    user-select: none;
}

@media (max-width: 850px) {
    .mobile-clean-header {
        padding: 10px 4%;
    }

    .clean-navbar {
        min-height: 68px;
        border-radius: 18px;
        padding: 10px 14px;
        position: relative;
    }

    .clean-brand img {
        height: 86px;
        max-width: 230px;
    }

    .menu-button {
        display: block;
    }

    .clean-menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        background: #ffffff;
        border-radius: 22px;
        padding: 18px;
        box-shadow: 0 20px 60px rgba(30,58,138,0.18);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .menu-toggle:checked ~ .clean-menu {
        display: flex;
    }

    .clean-menu a,
    .clean-menu button {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 16px;
    }

    .logout-form {
        width: 100%;
    }
}

.cinema-hero {
    position: relative;
    min-height: 82vh;
    padding: 90px 7%;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(90deg, rgba(4,12,24,0.92), rgba(4,12,24,0.68), rgba(4,12,24,0.38)),
        url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1600&q=80");

    background-size: cover;
    background-position: center;
}

.cinema-hero::before {
    content: "CATHOLIC BAY";
    position: absolute;
    left: 6%;
    bottom: 8%;
    font-size: clamp(70px, 13vw, 190px);
    font-weight: 900;
    letter-spacing: -8px;
    color: rgba(255,255,255,0.035);
    z-index: 1;
    pointer-events: none;
}

.cinema-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(212,175,55,0.18), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(30,58,138,0.22), transparent 28%);
    z-index: 1;
}

.cinema-content {
    position: relative;
    z-index: 2;
    width: 100%;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.cinema-text {
    max-width: 760px;
}

.cinema-text h2 {
    font-size: clamp(46px, 6vw, 86px);
    line-height: 0.95;
    color: #ffffff;
    margin: 22px 0;
    letter-spacing: -2px;
}

.cinema-text p {
    max-width: 650px;
    color: rgba(255,255,255,0.82);
    font-size: 20px;
    line-height: 1.7;
}

.cinema-live-card {
    justify-self: end;
    width: 100%;
    max-width: 460px;
    min-height: 330px;

    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.45);

    border-radius: 32px;
    padding: 36px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    box-shadow:
        0 30px 90px rgba(0,0,0,0.26),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.cinema-live-card h3 {
    color: #1f2937;
    font-size: 34px;
    margin: 12px 0;
}

.cinema-live-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.mini-live-button {
    display: inline-block;
    width: fit-content;
    text-decoration: none;
    background: #1e3a8a;
    color: white;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(30,58,138,0.22);
}

@media (max-width: 950px) {
    .cinema-hero {
        padding: 70px 7%;
    }

    .cinema-content {
        grid-template-columns: 1fr;
    }

    .cinema-live-card {
        justify-self: start;
    }

    .cinema-hero::before {
        letter-spacing: -3px;
    }
}

.stream-page {
    min-height: 100vh;
    padding: 80px 7%;
    background:
        radial-gradient(circle at top left, rgba(30,58,138,0.12), transparent 32%),
        linear-gradient(135deg, #f8fbff, #eef5ff);
}

.stream-header {
    text-align: center;
    margin-bottom: 44px;
}

.stream-header h2 {
    color: #1e3a8a;
    font-size: clamp(42px, 6vw, 72px);
    margin: 16px 0;
    letter-spacing: -2px;
}

.stream-header p {
    color: #4b5563;
    font-size: 18px;
}

.stream-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 30px;
    align-items: stretch;
}

.stream-player-card,
.stream-info-card,
.stream-card {
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(30,58,138,0.08);
    box-shadow: 0 24px 70px rgba(30,58,138,0.12);
}

.stream-player-card {
    border-radius: 34px;
    padding: 14px;
}

.stream-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;

    background:
        linear-gradient(rgba(4,12,24,0.35), rgba(4,12,24,0.82)),
        url("/static/img/sem-live.png");

    background-size: cover;
    background-position: center;

    border-radius: 26px;
    overflow: hidden;
}

.stream-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.stream-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 30px;
}

.play-circle {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.stream-placeholder h3 {
    font-size: 34px;
    margin-bottom: 10px;
}

.stream-placeholder p {
    color: rgba(255,255,255,0.82);
    font-size: 17px;
}

.stream-info-card {
    border-radius: 34px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stream-status {
    color: #d4af37;
    font-weight: 900;
    margin-bottom: 18px;
}

.live-now {
    color: #dc2626;
}

.stream-info-card h3 {
    color: #1e3a8a;
    font-size: 34px;
    margin-bottom: 16px;
}

.stream-info-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.stream-info-card small {
    color: #6b7280;
    margin-bottom: 26px;
}

.stream-upcoming {
    margin-top: 90px;
}

.stream-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.stream-card {
    border-radius: 28px;
    overflow: hidden;
    transition: 0.3s ease;
}

.stream-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(30,58,138,0.18);
}

.stream-card img,
.stream-thumb-fallback {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-thumb-fallback {
    background:
        linear-gradient(135deg, #1e3a8a, #2f5bd3);
    color: white;
    font-size: 60px;
}

.stream-card-content {
    padding: 24px;
}

.stream-card-content strong {
    color: #d4af37;
    display: block;
    margin-bottom: 10px;
}

.stream-card-content h3 {
    color: #1f2937;
    font-size: 23px;
    margin-bottom: 10px;
}

.stream-card-content p {
    color: #4b5563;
    line-height: 1.6;
}

.empty-card {
    grid-column: span 3;
}

@media (max-width: 1050px) {
    .stream-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 650px) {
    .stream-page {
        padding: 60px 5%;
    }

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

    .empty-card {
        grid-column: span 1;
    }

    .stream-info-card h3 {
        font-size: 28px;
    }
}

.video-library-page {
    min-height: 100vh;
    padding: 80px 7%;
    background:
        radial-gradient(circle at top left, rgba(30,58,138,0.12), transparent 32%),
        linear-gradient(135deg, #f8fbff, #eef5ff);
}

.video-library-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.video-card {
    text-decoration: none;
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(30,58,138,0.08);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(30,58,138,0.12);
    transition: 0.3s ease;
}

.video-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 34px 90px rgba(30,58,138,0.18);
}

.video-thumb {
    position: relative;
    height: 230px;
    background: #0f172a;
    overflow: hidden;
}

.video-thumb img,
.video-thumb-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #2f5bd3);
    color: white;
    font-size: 54px;
}

.video-play {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.video-info {
    padding: 24px;
}

.video-info span {
    color: #d4af37;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
}

.video-info h3 {
    color: #1f2937;
    font-size: 24px;
    margin-bottom: 10px;
}

.video-info p {
    color: #4b5563;
    line-height: 1.6;
}

.empty-library {
    grid-column: span 3;
    background: white;
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(30,58,138,0.12);
}

.empty-library h3 {
    color: #1e3a8a;
    font-size: 28px;
    margin-bottom: 10px;
}

.empty-library p {
    color: #4b5563;
}

@media (max-width: 1050px) {
    .video-library-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .video-library-page {
        padding: 60px 5%;
    }

    .video-library-grid {
        grid-template-columns: 1fr;
    }

    .empty-library {
        grid-column: span 1;
    }
}

.stream-home-section {
    padding: 70px 7%;
    background: linear-gradient(180deg, #f8fbff, #eef5ff);
}

.stream-home-section:nth-of-type(even) {
    background: #ffffff;
}

.left-title {
    text-align: left;
    margin-bottom: 28px;
}

.left-title h2 {
    color: #1e3a8a;
    font-size: 38px;
    margin: 14px 0 8px;
}

.left-title p {
    color: #4b5563;
}

.horizontal-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
}

.horizontal-row::-webkit-scrollbar {
    height: 10px;
}

.horizontal-row::-webkit-scrollbar-track {
    background: rgba(30,58,138,0.08);
    border-radius: 999px;
}

.horizontal-row::-webkit-scrollbar-thumb {
    background: rgba(30,58,138,0.35);
    border-radius: 999px;
}

.home-video-card {
    min-width: 320px;
    max-width: 320px;
    text-decoration: none;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(30,58,138,0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(30,58,138,0.10);
    transition: 0.3s ease;
    scroll-snap-align: start;
}

.home-video-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 30px 80px rgba(30,58,138,0.18);
}

.home-video-thumb {
    height: 190px;
    position: relative;
    background: #0f172a;
    overflow: hidden;
}

.home-video-thumb img,
.home-video-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-video-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #2f5bd3);
    color: white;
    font-size: 48px;
}

.home-video-thumb span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.home-video-info {
    padding: 22px;
}

.home-video-info strong {
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.home-video-info h3 {
    color: #1f2937;
    font-size: 21px;
    line-height: 1.25;
}

.home-empty-card {
    min-width: 320px;
    background: white;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 50px rgba(30,58,138,0.10);
}

.home-empty-card p {
    color: #4b5563;
}

@media (max-width: 650px) {
    .home-video-card {
        min-width: 260px;
        max-width: 260px;
    }

    .home-video-thumb {
        height: 160px;
    }

    .left-title h2 {
        font-size: 30px;
    }
}

/* ===============================
   MOBILE LAYOUT POLISH
=============================== */

@media (max-width: 850px) {

    body {
        overflow-x: hidden;
    }

    .cinema-hero {
        min-height: 72vh;
        padding: 56px 7%;
        align-items: flex-start;
    }

    .cinema-text h2 {
        font-size: clamp(42px, 13vw, 58px);
        letter-spacing: -1px;
    }

    .cinema-text p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .cinema-live-card {
        min-height: 240px;
        padding: 26px;
        max-width: 100%;
    }

    .features,
    .home-dynamic,
    .stream-home-section,
    .video-library-page,
    .stream-page,
    .community-section,
    .dashboard-section,
    .cadastro-section,
    .login-section,
    .event-detail-page {
        padding-left: 5%;
        padding-right: 5%;
    }

    .event-card {
        flex-direction: column;
        align-items: stretch;
    }
}

/* =========================================================
   EVENT CARDS — AGENDA PAGE
========================================================= */

.event-card {
    position: relative;
}

.event-info {
    flex: 1;
}

.events-section .event-card {
    display: grid !important;
    grid-template-columns: 90px 1fr 220px !important;
    align-items: center !important;
    gap: 26px !important;
}

.events-section .event-flyer-preview {
    width: 220px !important;
    height: 130px !important;
    max-width: 220px !important;

    border-radius: 18px !important;
    overflow: hidden !important;

    position: relative;
    flex-shrink: 0;
    cursor: pointer;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease !important;

    box-shadow: 0 10px 24px rgba(30,58,138,0.12) !important;
}

.events-section .event-flyer-preview img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.45s ease !important;
}

.events-section .event-flyer-preview:hover {
    transform: scale(1.12) !important;
    z-index: 20;
    box-shadow: 0 24px 70px rgba(30,58,138,0.28) !important;
}

.events-section .event-flyer-preview:hover img {
    transform: scale(1.05) !important;
}

@media (max-width: 850px) {
    .events-section .event-card {
        grid-template-columns: 1fr !important;
    }

    .events-section .event-flyer-preview {
        width: 100% !important;
        max-width: 100% !important;
        height: 220px !important;
        transform: none !important;
    }

    .events-section .event-flyer-preview:hover {
        transform: none !important;
    }
}

/* ===============================
   HOME SOFT ANIMATIONS
=============================== */

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

@keyframes softFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 18px 50px rgba(30,58,138,0.10);
    }
    50% {
        box-shadow: 0 24px 70px rgba(30,58,138,0.18);
    }
    100% {
        box-shadow: 0 18px 50px rgba(30,58,138,0.10);
    }
}

.cinema-text,
.cinema-live-card,
.features .feature-card,
.home-dynamic .home-column,
.stream-home-section,
.video-library-page {
    animation: fadeUp 0.8s ease both;
}

.cinema-text {
    animation-delay: 0.1s;
}

.cinema-live-card {
    animation-delay: 0.25s;
}

.features .feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.features .feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.features .feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.home-dynamic .home-column:nth-child(1) {
    animation-delay: 0.1s;
}

.home-dynamic .home-column:nth-child(2) {
    animation-delay: 0.2s;
}

.home-dynamic .home-column:nth-child(3) {
    animation-delay: 0.3s;
}

.cinema-live-card,
.hero-card {
    animation-name: fadeUp, softFloat;
    animation-duration: 0.8s, 5s;
    animation-delay: 0.2s, 1s;
    animation-timing-function: ease, ease-in-out;
    animation-fill-mode: both, none;
    animation-iteration-count: 1, infinite;
}

.feature-card:hover,
.home-column:hover,
.mini-card:hover,
.video-card:hover,
.home-video-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 80px rgba(30,58,138,0.18);
}

.btn-primary,
.btn-secondary,
.clean-highlight {
    transition: all 0.25s ease;
}

.btn-primary:hover,
.clean-highlight:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
}

.play-circle {
    animation: glowPulse 3s ease-in-out infinite;
}

/* respeita usuários que preferem menos animação */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.live-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(4,12,24,0.68);
    backdrop-filter: blur(8px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.live-popup-card {
    position: relative;
    width: 100%;
    max-width: 520px;

    background: #ffffff;
    border-radius: 34px;
    padding: 42px;

    box-shadow: 0 30px 100px rgba(0,0,0,0.35);
    animation: fadeUp 0.45s ease both;
}

.live-popup-card h2 {
    color: #1e3a8a;
    font-size: 38px;
    margin: 16px 0;
}

.live-popup-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 24px;
}

.live-popup-close {
    position: absolute;
    top: 18px;
    right: 22px;

    border: none;
    background: transparent;
    font-size: 34px;
    cursor: pointer;
    color: #1f2937;
}

.live-now {
    color: #dc2626;
    font-weight: 900;
}

.event-short-text {
    color: #4b5563;
    line-height: 1.55;
    margin-bottom: 10px;
}

.event-full-details {
    margin-top: 8px;
}

.event-full-details summary {
    color: #1e3a8a;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.event-full-details summary:hover {
    color: #d4af37;
}

.event-full-details p {
    margin-top: 12px;
    color: #4b5563;
    line-height: 1.6;
}

/* =========================================================
   FIX DEFINITIVO — HOME PROGRAMAÇÃO
   Mantém apresentação à esquerda, eventos e transmissão à direita.
   Corrige desktop e celular.
========================================================= */

.home-dynamic {
    display: grid !important;
    grid-template-columns: 0.9fr 2fr !important;
    gap: 48px !important;
    align-items: start !important;
    max-width: 1500px !important;
    margin: 0 auto !important;
    padding: 70px 6% !important;
    background:
        radial-gradient(circle at top left, rgba(30,58,138,0.08), transparent 35%),
        linear-gradient(135deg, #f8fbff, #eef5ff) !important;
}

.home-dynamic > .section-title {
    text-align: left !important;
    margin: 0 !important;
    max-width: 520px !important;
}

.home-dynamic > .section-title h2 {
    color: #1f2937 !important;
    font-size: clamp(38px, 4vw, 56px) !important;
    line-height: 1.05 !important;
    margin: 18px 0 14px !important;
    letter-spacing: -1px !important;
}

.home-dynamic > .section-title p {
    color: #4b5563 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
}

.home-dynamic-grid {
    display: grid !important;
    grid-template-columns: 1.7fr 0.9fr !important;
    gap: 34px !important;
    width: 100% !important;
    align-items: start !important;
}

.home-column {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: hidden !important;
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(14px) !important;
    border-radius: 32px !important;
    padding: 34px !important;
    border: 1px solid rgba(30,58,138,0.08) !important;
    box-shadow: 0 22px 70px rgba(30,58,138,0.12) !important;
}

.home-column h2 {
    color: #d4af37 !important;
    font-size: clamp(30px, 3vw, 44px) !important;
    line-height: 1.08 !important;
    margin-bottom: 26px !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.agenda-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
}

.agenda-card {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    border-radius: 26px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 55px rgba(30,58,138,0.12) !important;
    border: 1px solid rgba(30,58,138,0.08) !important;
    transition: all 0.3s ease !important;
}

.agenda-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 28px 80px rgba(30,58,138,0.18) !important;
}

.agenda-card img {
    width: 100% !important;
    max-width: 100% !important;
    height: 230px !important;
    object-fit: cover !important;
    display: block !important;
}

.agenda-card-content {
    padding: 20px !important;
}

.agenda-card-content strong {
    color: #d4af37 !important;
    display: block !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
}

.agenda-card-content h3 {
    color: #1f2937 !important;
    font-size: 1.35rem !important;
    line-height: 1.15 !important;
    margin: 0 0 12px !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
}

.event-short-text {
    color: #4b5563 !important;
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
    margin-bottom: 10px !important;
}

.event-full-details {
    margin-top: 10px !important;
}

.event-full-details summary {
    color: #1e3a8a !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    list-style: none !important;
}

.event-full-details summary:hover {
    color: #d4af37 !important;
}

.event-full-details p {
    margin-top: 12px !important;
    color: #4b5563 !important;
    line-height: 1.6 !important;
}

.home-column .mini-card {
    width: 100% !important;
    max-width: 100% !important;
    background: #ffffff !important;
    border-radius: 26px !important;
    padding: 28px !important;
    border: 1px solid rgba(30,58,138,0.08) !important;
    box-shadow: 0 12px 34px rgba(30,58,138,0.08) !important;
    overflow: hidden !important;
}

.home-column .mini-card strong {
    color: #d4af37 !important;
    display: block !important;
    margin-bottom: 12px !important;
}

.home-column .mini-card h3 {
    color: #1f2937 !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
    margin-bottom: 14px !important;
}

.home-column .mini-card p {
    color: #4b5563 !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
}

@media (max-width: 1200px) {
    .home-dynamic {
        grid-template-columns: 1fr !important;
    }

    .home-dynamic > .section-title {
        max-width: 760px !important;
        text-align: center !important;
        margin: 0 auto 10px !important;
    }

    .home-dynamic-grid {
        grid-template-columns: 1.4fr 0.9fr !important;
    }

    .agenda-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 900px) {
    .home-dynamic {
        grid-template-columns: 1fr !important;
        padding: 45px 18px !important;
        gap: 28px !important;
    }

    .home-dynamic-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .home-column {
        padding: 26px !important;
        border-radius: 28px !important;
    }

    .agenda-grid {
        grid-template-columns: 1fr !important;
    }

    .agenda-card img {
        height: 240px !important;
    }

    .home-column h2 {
        font-size: 32px !important;
    }

    .agenda-card-content h3 {
        font-size: 1.2rem !important;
    }
}

.event-full-details {
    margin-top: 14px;
    overflow: hidden;
}

.event-full-details summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #1e3a8a;
    background: linear-gradient(135deg, rgba(30,58,138,0.08), rgba(212,175,55,0.14));
    border: 1px solid rgba(30,58,138,0.12);

    padding: 10px 16px;
    border-radius: 999px;

    font-weight: 900;
    font-size: 14px;

    transition: all 0.25s ease;
}

.event-full-details summary::-webkit-details-marker {
    display: none;
}

.event-full-details summary::after {
    content: "↓";
    font-size: 14px;
    transition: transform 0.25s ease;
}

.event-full-details[open] summary::after {
    transform: rotate(180deg);
}

.event-full-details summary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #1e3a8a, #2746a6);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(30,58,138,0.18);
}

.event-more-text {
    margin-top: 14px;
    color: #4b5563;
    line-height: 1.65;
    font-size: 0.98rem;

    animation: eventReveal 0.35s ease both;
}

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