@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Sora:wght@400;500;600;700&display=swap');

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #050505;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

#root {
    width: 100%;
}

html,
body,
.app {
    width: 100%;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.app {
    position: relative;
    isolation: isolate;
}

.app::before {
    content: '';
    position: fixed;
    inset: -20% 0 0 0;
    background: radial-gradient(circle at 20% 20%, rgba(223, 9, 25, 0.12), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(245, 175, 29, 0.10), transparent 40%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.9), rgba(5, 5, 5, 0.95));
    z-index: -2;
    pointer-events: none;
}

.app::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.88);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.nav-mobile {
    display: none;
}

.nav-links a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    position: relative;
    padding-bottom: 0.25rem;
    transition: color 0.3s, opacity 0.3s;
    opacity: 0.85;
}

.nav-links a:hover {
    color: #DF0919;
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.2rem;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, #DF0919, #F5AF1D);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    left: calc(50% - 11px);
}

.btn-primary {
    background: linear-gradient(135deg, #DF0919, #c00717);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    box-shadow: 0 0 20px rgba(223, 9, 25, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(223, 9, 25, 0.8), 0 0 15px rgba(223, 9, 25, 0.6);
    filter: brightness(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(223, 9, 25, 0.15), transparent);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    left: -20%;
    bottom: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 175, 29, 0.18), transparent 60%);
    filter: blur(120px);
    opacity: 0.7;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero-gradient-text {
    background: linear-gradient(135deg, #DF0919, #F5AF1D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    border-left: 4px solid #DF0919;
    padding-left: 1.5rem;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #DF0919;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(223, 9, 25, 0.6);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(223, 9, 25, 0.2));
    animation: floatHero 6s ease-in-out infinite;
}

/* Biography Section */
.biography {
    padding: 6rem 2rem;
    background: #050505;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: riseIn 0.9s ease both;
}

.section-label {
    color: #DF0919;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.section-header-desc {
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title span {
    color: #F5AF1D;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bio-image {
    position: relative;
}

.bio-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(900px) rotateY(-4deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bio-image img:hover {
    transform: perspective(900px) rotateY(0deg) translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.timeline-item {
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid transparent;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.timeline-item:hover {
    border-left-color: #DF0919;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.timeline-year {
    color: #DF0919;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Proposals Section */
.proposals {
    padding: 6rem 2rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.proposals::before {
    content: '';
    position: absolute;
    inset: 10% 0 auto 0;
    height: 60%;
    background: radial-gradient(circle at 30% 30%, rgba(223, 9, 25, 0.15), transparent 55%),
        radial-gradient(circle at 70% 40%, rgba(245, 175, 29, 0.12), transparent 50%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.proposals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.proposal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.proposal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DF0919, #F5AF1D);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.proposal-card:hover::before {
    transform: scaleX(1);
}

.proposal-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.proposal-icon {
    width: 88px;
    height: 88px;
    background: rgba(223, 9, 25, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    font-size: 2rem;
}

.proposal-card:hover .proposal-icon {
    background: #DF0919;
    transform: scale(1.1);
}

.proposal-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.proposal-desc {
    color: #b0b0b0;
    line-height: 1.6;
}

/* News Section */
.news {
    padding: 6rem 2rem;
    background: #050505;
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.75rem;
}

.news-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #F5AF1D;
    margin-bottom: 0.75rem;
}

.news-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.news-content p {
    color: #b0b0b0;
}

/* News Detail Page */
.news-detail {
    min-height: 100vh;
    padding: 5.5rem 0 5rem;
}

.news-detail-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.9rem;
    margin: 2rem 0 2.25rem;
}

.news-detail-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    background: linear-gradient(135deg, #f5af1d, #df0919);
    box-shadow: 0 18px 40px rgba(223, 9, 25, 0.4);
}

.news-detail-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.news-detail-float {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    animation: floatNews 6s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-detail-float::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(5, 5, 5, 0.35));
    pointer-events: none;
}

.news-detail-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

.news-detail-float:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 175, 29, 0.6);
    box-shadow: 0 28px 60px rgba(223, 9, 25, 0.35), 0 0 35px rgba(245, 175, 29, 0.35);
}

.news-detail-titleblock {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    animation: floatNews 7s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-detail-titleblock::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(245, 175, 29, 0.2), transparent 65%);
    pointer-events: none;
}

.news-detail-titleblock:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 175, 29, 0.65);
    box-shadow: 0 28px 60px rgba(223, 9, 25, 0.3), 0 0 32px rgba(245, 175, 29, 0.35);
}

.news-detail-title {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin: 0 0 1.25rem;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.news-detail .section-container {
    max-width: 1100px;
}

.news-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0f0f0f;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 1.05rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.news-detail-back:hover {
    transform: translateY(-1px);
    color: #0f0f0f;
    background: linear-gradient(135deg, #f5af1d, #df0919);
    box-shadow: 0 20px 40px rgba(223, 9, 25, 0.35);
}

.news-detail-header {
    margin-bottom: 2.5rem;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.news-detail-body {
    padding: 0 2rem;
}

.news-detail-lead {
    font-size: 1.1rem;
    color: #e2e2e2;
    max-width: 640px;
    margin: 0.5rem 0 0;
}

.news-detail-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 0 0 2.5rem;
}

.news-detail-highlight {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-detail-highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(245, 175, 29, 0.2), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.news-detail-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom left, rgba(223, 9, 25, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.news-detail-highlight:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 175, 29, 0.5);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.3);
}

.news-detail-highlight:hover::before {
    opacity: 1;
}

.news-detail-highlight strong {
    font-size: 1.15rem;
}

.news-detail-highlight span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.news-detail-highlight strong {
    font-size: 1.1rem;
    color: #ffffff;
}

.news-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-detail-photo {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding-bottom: 1rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-detail-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.news-detail-grid-2026 .news-detail-photo:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 175, 29, 0.45);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.45);
}

.news-detail-caption {
    color: #c7c7c7;
    font-size: 0.95rem;
    line-height: 1.65;
    padding: 1rem 1.25rem 0;
}

@keyframes floatNews {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Events Section */
.events {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(223, 9, 25, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.event-thumb {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    position: relative;
}

.event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(5, 5, 5, 0.85);
    color: #F5AF1D;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 175, 29, 0.4);
}

.event-date {
    min-width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(223, 9, 25, 0.9), rgba(245, 175, 29, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(223, 9, 25, 0.35);
}

.event-date span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

.event-date strong {
    font-size: 1.5rem;
}

.event-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.event-info p {
    color: #b0b0b0;
}

.event-meta {
    margin-top: 0.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.event-meta span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e5e5e5;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 2rem;
    background: #050505;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.gallery-button {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.gallery-button:focus-visible {
    outline: 2px solid rgba(245, 175, 29, 0.8);
    outline-offset: 3px;
}

.gallery-button img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 175, 29, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.gallery-item:hover .gallery-button img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1200;
    padding: 1.5rem;
}

.lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: min(92vw, 900px);
    background: rgba(15, 15, 15, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.5rem 1.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.lightbox-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.lightbox-toolbar button,
.lightbox-download {
    height: 38px;
    padding: 0 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.lightbox-toolbar button:hover,
.lightbox-download:hover {
    background: rgba(245, 175, 29, 0.2);
    border-color: rgba(245, 175, 29, 0.5);
    transform: translateY(-1px);
}

.lightbox-download {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.lightbox-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.lightbox-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 16px;
    display: block;
    transition: transform 0.2s ease;
}

.lightbox-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-nav:hover {
    background: rgba(245, 175, 29, 0.3);
    transform: translateY(-1px);
}

.lightbox-caption {
    margin-top: 1rem;
    color: #d9d9d9;
    font-size: 1rem;
}

.lightbox-close {
    font-size: 1.2rem;
    width: 38px;
    padding: 0;
}

.no-scroll {
    overflow: hidden;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 1.25rem;
}

.contact-details span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #DF0919;
    margin-bottom: 0.35rem;
}

.contact-details strong {
    font-size: 1rem;
    color: #f2f2f2;
    font-weight: 600;
}

.contact-form {
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: #ffffff;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    z-index: 1200;
    transition: transform 0.3s ease;
}

.fab {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.fab-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.fab-chat {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366, #1FA855);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.fab:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: #DF0919;
    box-shadow: 0 0 30px rgba(223, 9, 25, 0.8);
}

/* Chatbot */
.chatbot-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 2rem 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1150;
}

.chatbot-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.chatbot-panel {
    width: min(380px, 92vw);
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(8, 8, 8, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    margin-bottom: 5.5rem;
}

.chatbot-overlay.show .chatbot-panel {
    transform: translateY(0);
}

.chatbot-header {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(223, 9, 25, 0.95), rgba(245, 175, 29, 0.9));
    color: #ffffff;
}

.chatbot-header span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.chatbot-status {
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #39d98a;
    box-shadow: 0 0 10px rgba(57, 217, 138, 0.8);
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.chatbot-close:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 240px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.02);
}

.chatbot-message {
    padding: 0.75rem 1rem;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 90%;
}

.chatbot-message.bot {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f3f3f3;
    align-self: flex-start;
}

.chatbot-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.9);
}

.chatbot-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.65rem 1rem;
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-input input:focus {
    border-color: rgba(245, 175, 29, 0.6);
    box-shadow: 0 0 0 3px rgba(245, 175, 29, 0.15);
}

.chatbot-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.chatbot-input button {
    background: linear-gradient(135deg, #DF0919, #c00717);
    border: none;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.chatbot-input button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 175, 29, 0.6);
    background: rgba(245, 175, 29, 0.12);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    display: block;
}

.footer p {
    color: #666;
}

@keyframes floatHero {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive */
@media (max-width: 1024px) {

    .proposals-grid,
    .news-grid,
    .news-detail-grid,
    .news-detail-highlights,
    .events-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-detail-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5.5rem 1rem 2rem;
    }

    .biography,
    .proposals,
    .news,
    .events,
    .gallery {
        padding: 4rem 1rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 1.05rem;
        gap: 0.5rem;
    }

    .nav-logo span {
        max-width: 160px;
        line-height: 1.1;
        letter-spacing: 0.04em;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-toggle:hover {
        border-color: rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-mobile {
        display: block;
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        background: rgba(5, 5, 5, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }

    .nav-mobile.show {
        max-height: 480px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-mobile .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.9rem;
        padding: 1.25rem 1.5rem 1.75rem;
    }

    .nav-mobile .nav-links a {
        font-size: 0.85rem;
        letter-spacing: 0.08em;
    }

    .hero-container,
    .bio-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .proposals-grid,
    .news-grid,
    .news-detail-grid,
    .news-detail-highlights,
    .events-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .news-detail-titleblock {
        padding: 1.5rem;
    }

    .news-detail-body {
        padding: 0 1rem;
    }

    .news-detail-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .events-grid {
        gap: 1.25rem;
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .event-thumb {
        width: 100%;
        height: 180px;
        border-radius: 16px;
    }

    .event-date {
        align-self: flex-start;
    }

    .floating-actions {
        right: 0.9rem;
        bottom: 0.9rem;
    }

    .chatbot-panel {
        margin-bottom: 6.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0.9rem 1.75rem;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content p {
        font-size: 1.05rem;
        padding-left: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-label {
        letter-spacing: 0.2em;
    }

    .proposal-card,
    .news-card,
    .event-card {
        padding: 1.25rem;
    }

    .news-image img,
    .gallery-button img,
    .gallery-item img {
        height: 200px;
    }

    .event-thumb {
        height: 160px;
    }

    .nav-logo {
        font-size: 0.95rem;
    }

    .nav-logo img {
        width: 34px;
        height: 34px;
    }
}