@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Barlow+Condensed:wght@500;700;900&display=swap');

/* DESIGN TOKENS */
:root {
    /* Core palette — Pantone 308C base */
    --ink:          #00293d;   /* Deep dark blue — text & base */
    --ink-mid:      #00435a;   /* Mid dark blue — section bg */
    --ink-light:    #00566e;   /* Lighter dark blue */

    /* Accent family — Pantone 311C (light) & 308C (dark) */
    --sky:          #00c1de;   /* Pantone 311C — primary accent */
    --sky-light:    #33cce4;   /* Lighter tint of 311C */
    --sky-pale:     #b3edf6;   /* Very pale 311C */
    --mint:         #00c1de;   /* Replaced — maps to sky */
    --solar:        #00567d;   /* Replaced — maps to dark blue mid */
    --coral:        #00c1de;   /* Replaced — maps to sky */

    /* Backgrounds */
    --bg-white:     #f4fbfd;
    --bg-pale:      #e0f5fa;
    --bg-dark:      #00293d;

    /* Transparency helpers */
    --sky-glass:    rgba(0, 193, 222, 0.12);
    --sky-border:   rgba(0, 193, 222, 0.3);
    --ink-glass:    rgba(0, 41, 61, 0.7);
    --white-glass:  rgba(255, 255, 255, 0.15);

    /* Type */
    --font-head:  'Barlow Condensed', sans-serif;
    --font-body:  'Nunito', sans-serif;

    /* Shapes */
    --r-sm: 6px;
    --r-md: 14px;
    --r-lg: 24px;
    --r-pill: 999px;

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t: 0.3s;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    background: var(--bg-white);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }

/* NAVBAR */
.navbar {
    background: var(--ink);
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--sky);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Logo */
.logo-area { display: flex; align-items: center; }

.brand-logo-text {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--bg-white);
    text-transform: uppercase;
    position: relative;
}

.brand-logo-text::before {
    content: '◆';
    color: var(--sky);
    margin-right: 8px;
    font-size: 14px;
    vertical-align: middle;
    animation: spin-diamond 6s linear infinite;
    display: inline-block;
}

@keyframes spin-diamond {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    height: 64px;
    align-items: center;
    gap: 0;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: color var(--t) var(--ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--sky);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t) var(--ease);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--sky); }
.nav-links a.active::after { transform: scaleX(1); }

/* Social */
.social-header a {
    color: rgba(255,255,255,0.6) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--r-pill);
    padding: 5px 10px !important;
    transition: var(--t);
    height: auto !important;
}
.social-header a:hover {
    color: var(--sky) !important;
    border-color: var(--sky);
}

/* DROPDOWN */
.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    background: var(--ink);
    border: 1px solid var(--sky-border);
    border-top: 3px solid var(--sky);
    min-width: 170px;
    z-index: 9999;
    border-radius: 0 0 var(--r-md) var(--r-md);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    list-style: none;
    flex-direction: column;
}

.dropdown:hover .dropdown-content { display: flex; }

.dropdown-content li { width: 100%; height: auto !important; }

.dropdown-content li a {
    height: auto !important;
    padding: 13px 20px;
    font-size: 11px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    color: rgba(255,255,255,0.7);
}

.dropdown-content li a::after { display: none; }

.dropdown-content li a:hover {
    background: var(--sky-glass);
    color: var(--sky);
}

.dropdown-content li:last-child a { border-bottom: none; }

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #00c1de 0%, #00567d 100%);
    color: #fff;
    padding: 90px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* Decorative circles */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    pointer-events: none;
}
.hero-section::before {
    width: 500px; height: 500px;
    top: -200px; right: -100px;
}
.hero-section::after {
    width: 300px; height: 300px;
    bottom: -100px; left: -80px;
    border-style: dashed;
    animation: rotate-ring 20s linear infinite;
}

@keyframes rotate-ring {
    to { transform: rotate(360deg); }
}

.hero-section h1,
.hero-container h1 {
    font-family: var(--font-head);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.05;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero-section h1 span,
.hero-container h1 span {
    color: var(--sky);
}

.hero-container { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }

/* HERO VIDEO AREA */
.hero-video-area {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-area h1 {
    position: absolute;
    font-family: var(--font-head);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
    z-index: 3;
    color: #fff;
}

.hero-video-area h1 span { color: var(--sky); }

.video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,27,42,0.7) 0%,
        rgba(0,86,125,0.3) 50%,
        rgba(13,27,42,0.8) 100%
    );
}

.video-container video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* GRID CONTAINER (cards section) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 5%;
    position: relative;
    z-index: 1;
}

/* CARDS */
.card {
    background: #fff;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13,27,42,0.1);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0,86,125,0.2);
    border-color: var(--sky);
}

.card-img {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: var(--bg-pale);
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.card:hover .card-img img { transform: scale(1.07); }

.card-label {
    padding: 18px 22px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--t);
}

.card-label::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--sky);
    border-radius: 2px;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: background var(--t), transform var(--t);
}

.card:hover .card-label { color: var(--sky); }
.card:hover .card-label::before { background: var(--solar); transform: rotate(90deg); }

/* CONTENT WRAPPER*/
.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 5%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* TEXT BLOCK */
.text-block-cyan {
    background: linear-gradient(135deg, rgba(0,193,222,0.08) 0%, rgba(244,251,253,0.9) 100%);
    border: 1px solid var(--sky-border);
    border-left: 4px solid var(--sky);
    border-radius: var(--r-md);
    padding: 40px;
}

.points-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.points-list li {
    padding-left: 28px;
    position: relative;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.75;
}

.points-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--sky);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.highlight-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-mid);
    border-top: 1px solid var(--sky-border);
    padding-top: 22px;
    line-height: 1.8;
}

/*QUOTE BOX */
.quote-box {
    background: var(--ink);
    border-radius: var(--r-md);
    padding: 44px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 120px;
    color: var(--sky);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.25;
}

.quote-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky) 0%, var(--ink-light) 100%);
}

.quote-box p {
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.quote-box span {
    font-family: var(--font-head);
    font-size: 13px;
    color: var(--sky);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* INFO CARDS (grid 2 cols)*/
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-card {
    background: #fff;
    border: 1px solid rgba(0,193,222,0.2);
    border-top: 4px solid var(--sky);
    border-radius: var(--r-md);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(13,27,42,0.07);
    transition: var(--t);
}

.info-card:hover {
    box-shadow: 0 12px 40px rgba(0,86,125,0.15);
    transform: translateY(-4px);
}

.info-card:nth-child(2) { border-top-color: var(--sky-light); }

.info-card h2 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--ink);
}

.info-card h2 span { color: var(--sky); }

.info-card p {
    font-size: 13px;
    color: #4a6274;
    line-height: 1.8;
}

/*ESPACIO SECTION */
.espacio-section {
    background: var(--bg-pale);
    border: 1px solid rgba(0,193,222,0.15);
    border-radius: var(--r-md);
    padding: 40px;
}

.espacio-section h2 {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: var(--ink);
}

.espacio-section h2 span { color: var(--sky); }

.espacio-section h3 {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--sky);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 800;
}

.espacio-section > p {
    font-size: 14px;
    color: #4a6274;
    line-height: 1.8;
    margin-bottom: 28px;
}

.taller-details {
    background: #fff;
    border-radius: var(--r-sm);
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(13,27,42,0.06);
}

.taller-details h4 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.taller-details ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.taller-details ul li {
    font-size: 13px;
    color: #4a6274;
    padding-left: 20px;
    position: relative;
}

.taller-details ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--sky);
    font-weight: 900;
}

.taller-details ul li strong { color: var(--ink); font-weight: 700; }

/*PARTNERS SECTION*/
.partners-section {
    background: var(--ink-mid);
    padding: 50px 5%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.partners-section::before {
    content: 'TECNOLOGIES QUE UTILITZEM';
    display: block;
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--sky-light);
    text-align: center;
    margin-bottom: -10px;
    opacity: 0.6;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
}

.partners-row img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.35;
    transition: opacity var(--t), filter var(--t);
}

.partners-row img:hover {
    opacity: 1;
    filter: brightness(0) invert(1) sepia(1) saturate(4) hue-rotate(172deg);
}

/* MAP */
.map-outer {
    background: var(--ink);
    padding: 60px 5%;
    position: relative;
    z-index: 1;
}

.map-inner {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 3px solid var(--sky-border);
}

.map-inner iframe,
.map-container iframe {
    display: block;
    filter: grayscale(0.5) contrast(1.1);
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
    border-radius: var(--r-lg);
    overflow: hidden;
}

/* FOOTER */
.footer-bottom {
    background: var(--ink);
    padding: 64px 5% 40px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Colorful top bar */
.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sky);
}

.footer-col {
    flex: 1;
    min-width: 200px;
    max-width: 320px;
}

.footer-col h3 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 2;
    margin-bottom: 6px;
}

/* FORM*/
.cyan-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cyan-form input,
.cyan-form textarea {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: var(--r-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 11px 14px;
    width: 100%;
    transition: var(--t);
    outline: none;
}

.cyan-form input::placeholder,
.cyan-form textarea::placeholder {
    color: rgba(255,255,255,0.25);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cyan-form input:focus,
.cyan-form textarea:focus {
    border-color: var(--sky);
    background: rgba(0,193,222,0.08);
}

.cyan-form textarea {
    resize: vertical;
    min-height: 90px;
}

.cyan-form button {
    background: linear-gradient(135deg, #00c1de 0%, #00567d 100%);
    border: none;
    color: #fff;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: var(--t);
    align-self: flex-start;
    box-shadow: 0 4px 16px rgba(0,86,125,0.4);
}

.cyan-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,86,125,0.5);
}

/* LEGACY LAYOUT HELPERS*/
.main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 5%;
    position: relative;
    z-index: 1;
}

.video-box {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    margin-bottom: 24px;
    border: 3px solid var(--sky-border);
    background: #000;
}

.video-box video { width: 100%; display: block; }

.title-q {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink);
}

.title-q span { color: var(--sky); }

.bullets { display: flex; flex-direction: column; gap: 10px; }

.bullet-card {
    background: var(--bg-pale);
    border: 1px solid rgba(0,193,222,0.2);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: var(--t);
}

.bullet-card:hover {
    background: rgba(0,193,222,0.08);
    border-color: var(--sky);
    transform: translateX(4px);
}

.sq {
    width: 10px;
    height: 10px;
    background: var(--sky);
    flex-shrink: 0;
    margin-top: 3px;
    border-radius: 2px;
    transform: rotate(45deg);
}

.top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.photo-box {
    background: var(--bg-pale);
    border-radius: var(--r-sm);
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0,193,222,0.15);
    transition: var(--t);
}

.photo-box:hover { border-color: var(--sky); box-shadow: 0 6px 20px rgba(0,86,125,0.15); }

.photo-box img {
    width: 100%; height: 100px;
    object-fit: cover;
    transition: transform 0.4s;
}

.photo-box:hover img { transform: scale(1.08); }

.photo-box p {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink);
    padding: 8px;
    font-family: var(--font-head);
}

.details-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--bg-pale);
    border: 1px solid rgba(0,193,222,0.2);
    border-top: 4px solid var(--sky);
    padding: 32px;
    border-radius: var(--r-md);
    margin-top: 30px;
    text-align: center;
}

.detail-item {
    border-right: 1px solid rgba(0,193,222,0.15);
    padding: 0 16px;
}

.detail-item:last-child { border-right: none; }

.detail-item h4 {
    font-family: var(--font-head);
    color: var(--sky);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}

.detail-item p { font-size: 12px; color: #4a6274; line-height: 1.6; }

.quote-area {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding: 50px;
    border: 1px solid rgba(0,193,222,0.2);
    text-align: center;
    border-radius: var(--r-md);
    background: var(--bg-pale);
}

.quote-area p {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: var(--ink-mid);
    margin-bottom: 16px;
    line-height: 1.8;
}

.quote-area span {
    font-family: var(--font-head);
    color: var(--sky);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.espai-h {
    font-family: var(--font-head);
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink);
}

/* UTILITY*/
h1 span, h2 span { color: var(--sky); }
.text-sky   { color: var(--sky); }
.text-solar { color: var(--solar); }
.text-mint  { color: var(--mint); }
.font-head  { font-family: var(--font-head); }
/* LANG SWITCHER */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-switcher {
    position: relative;
}

.lang-current {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--r-pill);
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
}

.lang-current:hover,
.lang-switcher:hover .lang-current {
    color: var(--sky);
    border-color: var(--sky);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--ink);
    border: 1px solid var(--sky-border);
    border-top: 3px solid var(--sky);
    border-radius: 0 0 var(--r-md) var(--r-md);
    list-style: none;
    min-width: 80px;
    z-index: 9999;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    flex-direction: column;
}

.lang-switcher:hover .lang-dropdown {
    display: flex;
}

.lang-dropdown li a {
    display: block;
    padding: 11px 18px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--t);
    text-decoration: none;
}

.lang-dropdown li:last-child a {
    border-bottom: none;
}

.lang-dropdown li a:hover,
.lang-dropdown li a.lang-active {
    background: var(--sky-glass);
    color: var(--sky);
}

@media (max-width: 768px) {
    .lang-current { font-size: 10px; padding: 4px 10px; }
}
.lang-switcher::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
}
.brand-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

/* RESPONSIVE
 */
@media (max-width: 992px) {
    .main-wrapper        { grid-template-columns: 1fr; }
    .grid-2-cols         { grid-template-columns: 1fr; }
    .top-grid            { grid-template-columns: 1fr; }
    .photos-grid         { grid-template-columns: repeat(2, 1fr); }
    .details-row         { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .detail-item         { border-right: none; border-bottom: 1px solid rgba(0,193,222,0.15); padding: 16px 0; }
    .detail-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
    .navbar              { padding: 0 4%; }
    .nav-links a         { padding: 0 10px; font-size: 10px; letter-spacing: 0.5px; }
    .brand-logo-text     { font-size: 20px; }
    .hero-section        { padding: 60px 5% 50px; }
    .hero-video-area     { min-height: 340px; }
    .grid-container      { grid-template-columns: 1fr; padding: 50px 5%; }
    .footer-bottom       { flex-direction: column; gap: 36px; }
    .footer-col          { max-width: 100%; }
    .partners-row        { gap: 24px; }
    .partners-row img    { height: 26px; }
    .text-block-cyan,
    .espacio-section     { padding: 26px 22px; }
    .quote-box           { padding: 32px 24px; }
    .map-outer           { padding: 40px 4%; }
}

@media (max-width: 480px) {
    .photos-grid         { grid-template-columns: 1fr 1fr; }
    .details-row         { grid-template-columns: 1fr; }
    .nav-links           { gap: 0; }
}