﻿@font-face {
    font-family: 'Nasalization';
    src: url('../fonts/nasalization/Nasalization Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Nasalization', sans-serif;
    margin: 0;
    background-color: #0c0f14;
    color: #e5e7eb;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.header-content {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 1rem;
    margin-left: auto;
    margin-right: 0;
    padding-right: 1.5rem;
}
.header-content h1 {
    margin: 0;
    align-self: flex-end;
    margin-top: 7.5rem;
}
header {
    width: 100%;
    min-height: 80px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(135deg, rgba(10, 15, 25, 0.85), rgba(9, 74, 121, 0.6)),
        url('../img/planet.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
    padding: 2.5rem 1.5rem;
}
header h1 {
    position: static;
    margin: 0;
}
.site-title {
    color: inherit;
    text-decoration: none;
}
.site-title:hover {
    color: inherit;
    text-decoration: none;
}
.language-picker {
    position: absolute;
    top: 0.8rem;
    right: 0.9rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    z-index: 20;
}
.language-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(6, 13, 23, 0.65);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.07em;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.language-trigger .chevron {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}
.language-trigger[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}
.language-dropdown[hidden] {
    display: none;
}
.lang-option {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.25rem 0.45rem;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #f7fafc;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.lang-option:hover {
    transform: translateY(-1px);
}
.lang-option.active {
    background: rgba(77, 171, 247, 0.25);
    color: #4dabf7;
}
.flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}
.flag-es {
    background: linear-gradient(180deg, #c60b1e 0 30%, #ffc400 30% 70%, #c60b1e 70% 100%);
}
.flag-es::after {
    content: '';
    position: absolute;
    width: 28%;
    height: 42%;
    background: #b40a1a;
    border: 2px solid #f7c948;
    border-radius: 30% 30% 35% 35%;
    top: 32%;
    left: 36%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.flag-en {
    background: linear-gradient(90deg, #169b62 0 33%, #ffffff 33% 66%, #ff883e 66% 100%);
}
.flag-pt {
    background: #006739;
}
.flag-pt::before {
    content: '';
    position: absolute;
    width: 78%;
    height: 78%;
    background: #ffdf3c;
    top: 11%;
    left: 11%;
    transform: rotate(45deg);
    border-radius: 6%;
}
.flag-pt::after {
    content: '';
    position: absolute;
    width: 42%;
    height: 42%;
    background:
        radial-gradient(circle at 50% 45%, #012169 58%, #f0f4ff 59% 64%, transparent 65%),
        linear-gradient(6deg, transparent 40%, #f0f4ff 42% 46%, transparent 48%);
    top: 29%;
    left: 29%;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1.5px #003087;
}
.menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: clamp(240px, 28vw, 320px);
    height: 100vh;
    background: rgba(7, 12, 20, 0.98);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.5);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(-110%);
    transition: transform 0.35s ease;
    z-index: 999;
}
.menu-drawer.open {
    transform: translateX(0);
}
.menu-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.menu-drawer__header h2 {
    margin: 0;
    letter-spacing: 0.1em;
    font-size: 1rem;
    text-transform: uppercase;
    color: #8ab4ff;
}
.menu-close {
    background: transparent;
    border: none;
    color: #f1f5f9;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}
.menu-drawer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.menu-drawer a {
    color: #f8fafc;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}
.menu-drawer a::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(134, 239, 172, 0.4);
    transition: transform 0.2s ease, background 0.2s ease;
}
.menu-drawer a:hover {
    color: #7cc4ff;
}
.menu-drawer a:hover::before {
    background: #7cc4ff;
    transform: scale(1.3);
}
.menu-meta {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.menu-meta p {
    margin: 0;
    color: #cbd5f5;
    line-height: 1.5;
}
.menu-cta {
    align-self: flex-start;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8a05, #ff4d4f);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgba(255, 77, 79, 0.35);
}
.menu-cta:hover {
    transform: translateY(-2px);
}
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
}
body.menu-open {
    overflow: hidden;
}
main {
    width: 100%;
    box-sizing: border-box;
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-panel {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 2rem auto;
    width: 100%;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 560px;
}

.hero-text .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    color: #7cc4ff;
    margin: 0;
}

.hero-text h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 0;
    color: #f5f7ff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
}

.hero-text p {
    margin: 0;
    color: #d5dbff;
    line-height: 1.7;
}

.hero-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-media img {
    width: clamp(320px, 42vw, 560px);
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    margin-top: 2rem;
}




.playlist-section {
    margin: 3rem auto;
    padding: 0 1rem 2rem;
}

.playlist-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #f5f7ff;
}

.playlist-section p {
    color: #d1d7ff;
    margin-bottom: 1.5rem;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.playlist-card {
    background: rgba(8, 13, 23, 0.75);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 320px;
}

.playlist-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #9cd3ff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.playlist-card a {
    color: #4dabf7;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    align-self: flex-start;
    margin-top: auto;
}

.playlist-card a:hover {
    color: #7cc4ff;
}

.playlist-card iframe {
    /*flex: 1;*/
    width: 100%;
    height: 420px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background-color: #05080f;
}

.construction-section {
    margin: 3rem auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.construction-card {
    max-width: 720px;
    width: 100%;
}

.construction-tag {
    width: fit-content;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(7, 12, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f5f7ff;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.construction-card h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #f4f7ff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.construction-note {
    margin: 0;
    color: #9cd3ff;
    font-weight: 600;
}

.construction-button {
    display: none;
    margin-top: 1.5rem;
    width: fit-content;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f6fe7, #57a5ff);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 20px rgba(47, 111, 231, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.construction-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(47, 111, 231, 0.45);
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1.5rem;
    display: grid;
    gap: 0.35rem;
}

.stats-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #cdd7f7;
}

.stats-label {
    color: #9fb6ff;
    font-weight: 600;
}

.stats-value {
    color: #f5f7ff;
    font-weight: 700;
}

.gallery-section {
    margin: 3rem auto;
    padding: 0 1rem 2rem;
}

.gallery-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #f5f7ff;
}

.gallery-section > p {
    color: #d1d7ff;
    margin-bottom: 1.5rem;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.gallery-mission {
    background: linear-gradient(160deg, rgba(14, 21, 35, 0.92), rgba(7, 12, 20, 0.96));
    border-radius: 24px;
    padding: 1.6rem 1.8rem;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-mission:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 196, 255, 0.35);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.55);
}

.gallery-mission__top {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(360px, 1.4fr);
    gap: 1.6rem;
    align-items: start;
}

.gallery-mission__intro {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.gallery-mission__copy {
    display: grid;
    gap: 0.65rem;
    max-width: 60ch;
}

.gallery-mission__tag {
    width: fit-content;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(7, 12, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f5f7ff;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-mission__title {
    margin: 0;
    font-size: 1.15rem;
    color: #9cd3ff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-mission__summary {
    margin: 0;
    color: #d1d7ff;
    line-height: 1.6;
    font-size: 0.98rem;
}

.gallery-mission__media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.gallery-mission__image {
    position: relative;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #05080f;
    min-height: 240px;
}

.gallery-mission__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 15, 0) 40%, rgba(5, 8, 15, 0.75));
    pointer-events: none;
}

.gallery-mission__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.gallery-mission--hubble .gallery-mission__top,
.gallery-mission--jwst .gallery-mission__top {
    align-items: stretch;
}

.gallery-mission--hubble .gallery-mission__media,
.gallery-mission--jwst .gallery-mission__media {
    height: 100%;
}

.gallery-mission--hubble .gallery-mission__image,
.gallery-mission--jwst .gallery-mission__image {
    height: 100%;
}

.gallery-mission:hover .gallery-mission__image img {
    transform: scale(1.04);
}

.gallery-mission__details {
    margin: 0;
    color: #d1d7ff;
    line-height: 1.65;
    font-size: 0.98rem;
}

.gallery-mission__cta {
    color: #4dabf7;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    align-self: flex-start;
    margin-top: 0.6rem;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.gallery-mission__cta:hover {
    color: #7cc4ff;
}

.gallery-modal .modal-content {
    background: rgba(7, 12, 20, 0.95);
    color: #e5e7eb;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.gallery-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-modal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.gallery-modal__meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.gallery-modal__title {
    margin: 0;
    font-size: 1.2rem;
    color: #9cd3ff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gallery-modal__tag {
    width: fit-content;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(7, 12, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f5f7ff;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-modal__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-modal__media {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
}

.gallery-modal__image {
    width: 100%;
    height: 260px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #05080f;
    object-fit: cover;
}

.gallery-modal__text {
    margin: 0;
    color: #d1d7ff;
    line-height: 1.6;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .hero-panel {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        align-items: center;
    }

    .hero-text h2 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    .hero-media img {
        transform: translateY(0);
        width: min(90%, 420px);
    }

    .innovation-essay {
        padding: 1.5rem;
    }

    .gallery-mission__top {
        grid-template-columns: 1fr;
    }

    .gallery-mission__media {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    footer {
        padding: 2rem 1.2rem;
    }

    .innovation-tabs__list {
        flex-direction: column;
        gap: 0.6rem;
    }
}

.innovation-tabs {
    margin-top: 1.8rem;
}
.innovation-tabs__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
}
.innovation-tabs__tab {
    border: 1px solid rgba(124, 196, 255, 0.25);
    background: rgba(8, 13, 23, 0.55);
    color: #cbd5f5;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}
.innovation-tabs__tab::first-letter {
    font-size: 1rem;
}
.innovation-tabs__tab:hover {
    color: #7cc4ff;
    border-color: rgba(124, 196, 255, 0.6);
}
.innovation-tabs__tab.is-active {
    color: #0b1220;
    background: #7cc4ff;
    border-color: #7cc4ff;
}
.innovation-tabs__panel {
    display: none;
    padding: 1.4rem 1.6rem;
    border-radius: 18px;
    background: rgba(8, 13, 23, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}
.innovation-tabs__panel.is-active {
    display: block;
}
.innovation-tabs__panel h3 {
    margin: 0 0 0.8rem;
    color: #8ab4ff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.95rem;
}
.innovation-tabs__panel h3::first-letter {
    font-size: 1.1rem;
}
.innovation-tabs__panel p {
    margin: 0 0 0.85rem;
    color: #d1d7ff;
    line-height: 1.6;
    font-size: 0.95rem;
}
.innovation-tabs__panel ul {
    margin: 0 0 0.85rem;
    padding-left: 2.1rem;
    color: #d1d7ff;
    line-height: 1.6;
    font-size: 0.95rem;
}
.innovation-tabs__panel li {
    margin-bottom: 0.45rem;
}
.innovation-tabs__panel p:last-child,
.innovation-tabs__panel ul:last-child {
    margin-bottom: 0;
}

.luxe-nav {
    background: rgba(8, 13, 23, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 0.8rem clamp(1rem, 4vw, 3rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin: 0;
    width: 100%;
    backdrop-filter: blur(10px);
}
.luxe-nav .navbar-brand {
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #7cc4ff;
}
.luxe-nav .nav-link {
    font-weight: 600;
    letter-spacing: 0.05em;
}
.luxe-nav .dropdown-menu {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.luxe-search .form-control {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(12, 20, 34, 0.6);
    color: #fff;
    width: 260px;
}
.luxe-search .btn {
    border-radius: 999px;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}
.card {
    background: radial-gradient(circle at top, rgba(77, 171, 247, 0.25), rgba(8, 15, 26, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(6px);
    min-height: 320px;
}
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 171, 247, 0.6);
    box-shadow: 0 20px 45px rgba(11, 17, 31, 0.9);
}
.card-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff8a05, #ff4d4f);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 77, 79, 0.35);
}
.card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.35);
}
.card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #a855f7, #6b21a8);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.35);
}
.card:nth-child(4) .card-icon {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    box-shadow: 0 10px 20px rgba(0, 176, 155, 0.35);
}
.card-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}
.card h3 {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
    color: #f4f7ff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.card p {
    margin: 0;
    line-height: 1.6;
    color: #cbd5f5;
}
.card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4dabf7;
    text-decoration: none;
    transition: color 0.2s ease;
}
.card-link::after {
    content: '->';
    font-size: 0.9rem;
}
.card-link:hover {
    color: #7cc4ff;
}
.contact-minimal {
    margin-top: 3.5rem;
    padding: 1.5rem 0 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}
.contact-minimal__intro {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    color: #dbe4ff;
}
.contact-minimal__eyebrow {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #7cc4ff;
}
.contact-minimal__intro h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    color: #f7f8ff;
}
.contact-minimal__intro p {
    margin: 0;
    line-height: 1.6;
}
.contact-minimal__success,
.contact-minimal__error {
    margin: 0.4rem 0 0;
    font-size: 0.95rem;
}
.contact-minimal__success {
    color: #86efac;
}
.contact-minimal__error {
    color: #fda4af;
}
.contact-minimal__form {
    display: grid;
    gap: 0.9rem;
}
.contact-minimal__form input,
.contact-minimal__form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 16, 28, 0.7);
    color: #f8fafc;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-minimal__form input:focus,
.contact-minimal__form textarea:focus {
    outline: none;
    border-color: rgba(124, 196, 255, 0.8);
    box-shadow: 0 0 0 2px rgba(124, 196, 255, 0.15);
}
.contact-minimal__form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-minimal__submit {
    justify-self: start;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-minimal__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(59, 130, 246, 0.45);
}
.contact-minimal__honeypot {
    position: absolute;
    left: -9999px;
}
@media (max-width: 640px) {
    main {
        padding: 3rem 1rem;
    }
    .card {
        padding: 1.5rem;
    }
    .contact-minimal {
        grid-template-columns: 1fr;
    }
    .contact-minimal__submit {
        width: 100%;
        text-align: center;
    }
    .gallery-mission {
        padding: 1.4rem;
    }
    .gallery-mission__media {
        grid-template-columns: 1fr;
    }
    .gallery-mission__image {
        min-height: 220px;
    }
    .construction-button {
        display: inline-flex;
    }
}
footer {
    margin-top: 4rem;
    width: 100%;
    box-sizing: border-box;
    background: radial-gradient(circle at top, rgba(15, 30, 60, 0.85), #05080f);
    color: #f8fafc;
    padding: 2.5rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.footer-content small {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #aab6e8;
}
.footer-tagline {
    margin: 0;
    max-width: 640px;
    color: #d1d7ff;
    line-height: 1.6;
    font-size: 1rem;
}
.footer-author {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9cd3ff;
    margin-top: -0.75rem;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.social-links .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 -2px 4px rgba(255, 255, 255, 0.15);
}
.social-links .icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
@media (max-width: 520px) {
    .social-links {
        gap: 1rem;
    }
    .social-links .icon {
        width: 34px;
        height: 34px;
    }
    .social-links .icon svg {
        width: 16px;
        height: 16px;
    }
}
.icon.telegram {
    background: linear-gradient(135deg, #34b3f1, #229ed9);
}
.icon.x {
    background: #111;
}
.icon.facebook {
    background: #1877f2;
}
.icon.github {
    background: #0d1117;
}
.icon.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fdf497 20%, #fd5949 60%, #d6249f 80%);
}
.icon.linkedin {
    background: #0a66c2;
}
.social-links .icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}
.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}
.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.45);
}
@media (max-width: 520px) {
    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        width: 44px;
        height: 44px;
    }
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}
.language-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.15rem;
    border-radius: 10px;
    background: rgba(7, 12, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    min-width: 85px;
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
}















.search-highlight {
    background: #f1c40f;
    color: #05080f;
    padding: 0 2px;
    border-radius: 4px;
}
