/* ========================================
   Associação Venezuela Amiga — Styles
   2bcard-inspired digital card aesthetic
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #003DA5;
    --blue-dark: #002d7a;
    --blue-light: #e8f0fe;
    --yellow: #FFD100;
    --yellow-light: #fff8dc;
    --red: #CF0A2C;
    --red-light: #ffe0e6;
    --white: #ffffff;
    --bg: #F5F5F5;
    --gray-50: #f8f9fb;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6b7280;
    --gray-700: #374151;
    --gray-800: #2d2d2d;
    --gray-900: #1f2937;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Helvetica, Arial, sans-serif;
    color: var(--gray-800);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Scroll Animations
   ======================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-up {
        opacity: 1;
        transform: none;
        animation: none;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   Header (Floating)
   ======================================== */
.header {
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header .container {
    max-width: 720px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--blue);
    cursor: pointer;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    letter-spacing: -0.01em;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--gray-100);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-link {
    display: block;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    cursor: pointer;
}

.nav-link:hover {
    color: var(--blue);
    background: var(--blue-light);
}

.nav-link.active {
    color: var(--white);
    background: var(--blue);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid var(--gray-200);
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
    background: var(--red);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.portal-btn:hover {
    background: #a80823;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(207,10,44,0.25);
}

.lang-switcher {
    display: flex;
    gap: 2px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    padding: 2px;
}

.lang-btn {
    padding: 5px 10px;
    border: none;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-500);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lang-btn:hover {
    color: var(--gray-800);
}

.lang-btn.active {
    background: var(--white);
    color: var(--blue);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
}

.cookie-consent-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 560px;
    width: 100%;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-icon {
    color: var(--blue);
    flex-shrink: 0;
}

.cookie-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--blue);
    text-decoration: underline;
    cursor: pointer;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-btn--reject {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.cookie-btn--reject:hover {
    background: var(--gray-200);
}

.cookie-btn--accept {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(0,61,165,0.2);
}

.cookie-btn--accept:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

/* ========================================
   Privacy Policy Modal
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.modal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-right: 40px;
}

.modal-body {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.modal-body p {
    margin-bottom: 12px;
}

.modal-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 20px 0 8px;
}

.modal-body ul {
    margin: 8px 0 12px 20px;
}

.modal-body li {
    margin-bottom: 4px;
}

.modal-body strong {
    color: var(--gray-800);
}

/* Footer privacy links */
.footer-copy a {
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-copy a:hover {
    color: var(--white);
}

/* ========================================
   Hero — 2bcard Style
   ======================================== */
.hero {
    padding: 90px 0 40px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(135deg, var(--blue) 0%, #001a4d 60%, var(--red) 100%);
    border-radius: 0 0 30px 30px;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    margin-top: 20px;
}

.hero-avatar {
    width: 110px;
    height: 110px;
    margin: -70px auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    background: var(--white);
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.hero-region {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    line-height: 1;
}

.action-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.action-btn--whatsapp {
    background: #25D366;
    box-shadow: 0 3px 12px rgba(37,211,102,0.3);
}

.action-btn--email {
    background: var(--red);
    box-shadow: 0 3px 12px rgba(207,10,44,0.25);
}

.action-btn--call {
    background: var(--blue);
    box-shadow: 0 3px 12px rgba(0,61,165,0.25);
}

/* Card Links */
.hero-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.card-link:hover {
    background: var(--blue-light);
    border-color: rgba(0,61,165,0.15);
    transform: translateX(3px);
}

.card-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 10px;
    flex-shrink: 0;
}

.card-link span {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}

.card-link-arrow {
    color: var(--gray-400);
    transition: var(--transition);
}

.card-link:hover .card-link-arrow {
    color: var(--blue);
    transform: translateX(3px);
}

/* CTA Banner */
.hero-cta {
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--blue) 0%, #001a4d 100%);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.hero-cta p {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

/* Social Icons */
.hero-social {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon--facebook {
    background: #1877F2;
}

.social-icon--instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.social-icon--whatsapp {
    background: #25D366;
}

/* ========================================
   Sections (Card-based)
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 0.88rem;
    color: var(--gray-500);
    max-width: 360px;
    margin: 0 auto;
}

/* Section wrapper — white card */
.events,
.activities,
.about,
.contact {
    padding: 36px 0;
}

.events .container,
.activities .container,
.about .container,
.contact .container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    box-shadow: var(--shadow-sm);
}

/* ========================================
   Events Section
   ======================================== */
.events {
    padding-top: 20px;
}

/* Filters */
.filters {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.filter-group {
    width: 100%;
}

.filter-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}

.filter-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0,61,165,0.2);
}

.filter-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23374151' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,61,165,0.1);
}

/* Events Grid */
.events-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Event Card */
.event-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0,61,165,0.12);
}

.event-card-header {
    padding: 18px 18px 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,61,165,0.2);
}

.event-date-badge .day {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.event-date-badge .month {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
    opacity: 0.85;
}

.event-card-info {
    flex: 1;
}

.event-category {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.event-category.cultural { background: #ede9fe; color: #6d28d9; }
.event-category.desportivo { background: #d1fae5; color: #047857; }
.event-category.social { background: #fee2e2; color: #dc2626; }
.event-category.educativo { background: var(--yellow-light); color: #a16207; }
.event-category.comunitario { background: #dbeafe; color: #1d4ed8; }

.event-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.event-card-body {
    padding: 0 18px 16px;
    flex: 1;
}

.event-description {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.55;
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--gray-600);
}

.event-meta-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--gray-400);
}

.event-card-footer {
    padding: 12px 18px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
}

.event-status.open {
    color: #059669;
}

.event-status.open::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #059669;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(5,150,105,0.12);
}

.event-status.confirmed {
    color: var(--blue);
}

.event-status.confirmed::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(0,61,165,0.1);
}

.event-status.soon {
    color: var(--red);
    animation: blinkSoon 1.2s ease-in-out infinite;
}

.event-status.soon::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(207,10,44,0.15);
    animation: blinkSoon 1.2s ease-in-out infinite;
}

@keyframes blinkSoon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.event-status.soldout {
    color: var(--red);
}

.event-status.soldout::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
}

.reg-info {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-600);
    margin-top: 6px;
    line-height: 1.4;
}

.events-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Register Button */
.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-register:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0,61,165,0.2);
}

.btn-register::after {
    content: '\2192';
    transition: var(--transition);
}

.btn-register:hover::after {
    transform: translateX(3px);
}

/* ========================================
   Activities (Recurring)
   ======================================== */
.activities-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
    opacity: 0;
    transition: var(--transition);
}

.activity-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.activity-card:hover::before {
    opacity: 1;
}

.activity-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.activity-frequency {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.activity-frequency::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.activity-frequency.semanal { background: #d1fae5; color: #047857; }
.activity-frequency.quinzenal { background: #dbeafe; color: #1d4ed8; }
.activity-frequency.mensal { background: #ede9fe; color: #6d28d9; }
.activity-frequency.bimensal { background: #fee2e2; color: #dc2626; }

.activity-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}

.activity-subtitle {
    font-size: 0.8rem;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 10px;
}

.activity-description {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.55;
    margin-bottom: 14px;
}

.activity-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.activity-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--gray-600);
    font-weight: 500;
}

.activity-meta-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--blue);
    opacity: 0.6;
}

.activity-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

/* ========================================
   About
   ======================================== */
.about-content p {
    margin-bottom: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9rem;
}

.about-content strong {
    color: var(--gray-900);
    font-weight: 600;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.about-logo-wrapper {
    display: flex;
    justify-content: center;
    padding: 28px;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--gray-50) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.about-logo-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat {
    text-align: center;
    padding: 18px 10px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    cursor: default;
}

.stat:hover {
    background: var(--blue-light);
    border-color: rgba(0,61,165,0.1);
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 3px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ========================================
   Contact
   ======================================== */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
    display: block;
    color: inherit;
    text-decoration: none;
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateY(-2px);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(0,61,165,0.2);
}

.contact-icon--facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5ecf 100%);
    box-shadow: 0 3px 10px rgba(24,119,242,0.2);
}

.contact-icon--instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    box-shadow: 0 3px 10px rgba(228,64,95,0.2);
}

.contact-icon--whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 3px 10px rgba(37,211,102,0.2);
}

.contact-item h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 28px 0 20px;
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-size: 0.8rem;
    color: var(--gray-500);
    transition: var(--transition);
    cursor: pointer;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ========================================
   Responsive
   ======================================== */

/* Mobile small (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 12px;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
        border-top: none;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-actions {
        margin-left: 0;
        padding-left: 0;
        padding-top: 10px;
        margin-top: 6px;
        border-left: none;
        border-top: 1px solid var(--gray-200);
        justify-content: center;
    }

    .hero-card {
        padding: 24px 16px;
    }

    .hero-avatar {
        width: 90px;
        height: 90px;
        margin-top: -55px;
    }

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

    .action-btn {
        padding: 10px 16px;
        font-size: 0.82rem;
    }

    .card-link {
        padding: 12px 14px;
    }

    .card-link-icon {
        width: 34px;
        height: 34px;
    }

    .card-link span {
        font-size: 0.85rem;
    }

    .event-card-header {
        padding: 14px 14px 10px;
    }

    .event-card-body {
        padding: 0 14px 12px;
    }

    .event-card-footer {
        padding: 10px 14px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .cookie-consent-inner {
        padding: 20px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .header .container {
        max-width: 720px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-banner {
        height: 200px;
    }

    .hero-card {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        padding: 36px 32px;
    }

    .hero-avatar {
        width: 120px;
        height: 120px;
        margin-top: -75px;
    }

    .hero-actions {
        gap: 10px;
    }

    .action-btn {
        padding: 13px 26px;
    }

    .events .container,
    .activities .container,
    .about .container,
    .contact .container {
        padding: 32px 28px;
    }

    /* Events: 2 columns */
    .events-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* Activities: 2 columns */
    .activities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* Filters: side by side */
    .filters {
        flex-direction: row;
        align-items: flex-end;
    }

    .filter-group:first-child {
        flex: 2;
    }

    .filter-group:last-child {
        flex: 1;
    }

    /* Contact: 3 columns */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    /* About: two columns */
    .about .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .about .section-header {
        grid-column: 1 / -1;
    }

    .about-content {
        grid-column: 1;
    }

    .about-visual {
        grid-column: 2;
        margin-top: 0;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .header .container {
        max-width: 960px;
    }

    .hero-card {
        max-width: 560px;
    }

    /* Events: 3 columns */
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    /* Activities: 3 columns */
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .event-title {
        font-size: 1rem;
    }

    .activity-title {
        font-size: 1.1rem;
    }
}

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1120px;
    }

    .header .container {
        max-width: 1120px;
    }

    .hero-card {
        max-width: 600px;
        padding: 40px 36px;
    }

    .hero-avatar {
        width: 130px;
        height: 130px;
        margin-top: -80px;
    }

    .hero-name {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .events .container,
    .activities .container,
    .about .container,
    .contact .container {
        padding: 36px 32px;
    }
}
