/**
 * Staycreative Custom Styles — Mito Sport Health
 * Pixel-perfect override de UIKit
 */

/* Skip to content (accessibility) */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 99999;
    padding: 15px 25px;
    background: #1D1D1B;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}
.skip-to-content:focus {
    position: fixed;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    overflow: visible;
}

/* Mobile shop icon (corporate header) */
.corporate-header .store-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: all 0.2s;
}
.corporate-header .store-icon-btn:hover {
    background: var(--primary-color, #57D9A3);
    border-color: var(--primary-color, #57D9A3);
    color: #1D1D1B;
}
.corporate-header.uk-sticky-below .store-icon-btn,
.corporate-header.header-inner .store-icon-btn {
    background: var(--primary-color, #57D9A3);
    border-color: var(--primary-color, #57D9A3);
    color: #1D1D1B;
}
.corporate-header.uk-sticky-below .store-icon-btn:hover,
.corporate-header.header-inner .store-icon-btn:hover {
    background: #1D1D1B;
    border-color: #1D1D1B;
    color: #fff;
}

/* ========================================
   VARIABLES
   ======================================== */
:root {
    --primary-color: #00E29C;
    --secondary-color: #1D1D1B;
    --text-color: #4a4a4a;
    --text-light: #888;
    --border-color: #e5e5e5;
    --white: #fff;

    --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Buvera', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================
   TIPOGRAFÍA BASE
   ======================================== */
body {
    font-family: var(--font-body);
    color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-family: var(--font-body);
    font-size: 1.2rem !important;
    font-weight: 500;
    line-height: 1.75;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6,
.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

/* Subtítulos display con Buvera */
.uk-card-title,
.uk-text-small-heading {
    font-family: var(--font-display);
    font-size: 1.4rem !important;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Secciones título — Be Vietnam Pro ExtraBold */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}

.section-title--center { text-align: center; }
.section-title--small { font-size: 1.8rem; }

/* ========================================
   HERO VIDEO
   ======================================== */
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.header.uk-cover-container { position: relative; overflow: hidden; }
.header.uk-cover-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 0;
}

/* Video en hero inline (servicio, nosotros) */
.service-hero-img video,
.about-img video {
    display: block;
    border-radius: 12px;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader img {
    width: 100px; height: 100px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ========================================
   HEADER STYLES
   ======================================== */
.hamburger-toggle { width: 40px; height: 40px; margin-left: 0; }
.hamburger-toggle svg { width: 40px; height: 40px; }

/* === HEADER STATES === */

/* DEFAULT (internas): todo negro, sin stroke */
.uk-navbar-toggle-icon svg > [class*="line-"] { stroke: none !important; fill: #1D1D1B; transition: fill 0.3s ease; }
.hamburger-toggle:hover .uk-navbar-toggle-icon svg > [class*="line-"],
.uk-navbar-toggle-icon:hover svg > [class*="line-"] { fill: var(--primary-color) !important; }
.hamburger-toggle { color: #1D1D1B !important; }
.header-inner .uk-navbar-container { border-bottom: 1px solid #000; }

/* HOME: todo blanco (alta especificidad para ganar al default) */
.corporate-header.header-home .uk-navbar-toggle-icon svg > [class*="line-"] { fill: #fff; }
.corporate-header.header-home .hamburger-toggle:hover .uk-navbar-toggle-icon svg > [class*="line-"],
.corporate-header.header-home .uk-navbar-toggle-icon:hover svg > [class*="line-"] { fill: var(--primary-color) !important; }
.corporate-header.header-home .hamburger-toggle { color: #fff !important; }
.corporate-header.header-home .uk-navbar-container { border-bottom: none !important; }

/* STICKY (home y internas): todo negro — máxima especificidad */
.corporate-header.uk-sticky-below .uk-navbar-toggle-icon svg > [class*="line-"] { fill: #1D1D1B; }
.corporate-header.uk-sticky-below .hamburger-toggle:hover .uk-navbar-toggle-icon svg > [class*="line-"],
.corporate-header.uk-sticky-below .uk-navbar-toggle-icon:hover svg > [class*="line-"] { fill: var(--primary-color) !important; }
.corporate-header.uk-sticky-below .hamburger-toggle { color: #1D1D1B !important; }
.corporate-header.uk-sticky-below .uk-navbar-container { border-bottom: 1px solid #000 !important; }

.header .uk-card-body { border-top: 1px solid white; padding: 40px 0 !important; }

/* === LOGOS === */
.logo-header { height: 45px; width: auto; max-width: 200px; }
.uk-logo { position: relative; }
.logo-light, .logo-default { transition: opacity 0.35s ease; }

/* Default: dark visible */
.logo-light { opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.logo-default { opacity: 1; }

/* HOME: light visible, dark hidden */
.corporate-header.header-home .logo-light { opacity: 1; }
.corporate-header.header-home .logo-default { opacity: 0; }

/* STICKY: siempre dark — gana a home por especificidad + orden */
.corporate-header.uk-sticky-below .logo-light { opacity: 0; }
.corporate-header.uk-sticky-below .logo-default { opacity: 1; }

/* === LANG TOGGLE === */
.lang-toggle { color: #1D1D1B !important; transition: color 0.35s ease, text-shadow 0.35s ease; }
.corporate-header.header-home .lang-toggle { color: #fff !important; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.corporate-header.uk-sticky-below .lang-toggle { color: #1D1D1B !important; text-shadow: none !important; }

/* === LANG ARROW (chevron icon) === */
.corporate-header.header-home .lang-toggle .uk-icon svg { color: #fff !important; }
.corporate-header.uk-sticky-below .lang-toggle .uk-icon svg { color: #1D1D1B !important; }

.uk-dropdown { min-width: max-content; }

main .header { min-height: 85vh; margin-top: -100px; }

.corporate-header {
    background: transparent !important;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}
.corporate-header.uk-sticky-below {
    background: var(--white) !important;
    box-shadow: none;
    padding: 0;
}

/* Nav links */
.corporate-header .uk-navbar-nav > li > a {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: var(--text-color);
    padding: 0 12px; line-height: 70px;
    transition: color 0.2s;
}
.corporate-header .uk-navbar-nav > li > a:hover,
.corporate-header .uk-navbar-nav > li.uk-active > a { color: var(--primary-color); }

/* Lang Toggle */
.lang-toggle {
    background: transparent; border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    display: flex; align-items: center; gap: 4px;
    padding: 5px 10px;
    transition: color 0.3s;
}
.lang-arrow { display: inline-flex; transition: transform 0.3s ease; }
.lang-toggle:hover .lang-arrow, .uk-open .lang-arrow { transform: rotate(180deg); }

/* ========================================
   SLIDER & DOTNAV
   ======================================== */
.uk-dotnav > * > * {
    background: rgba(255,255,255,0.4);
    border: 2px solid var(--white);
    width: 10px !important; height: 10px !important;
    border-radius: 0;
}
.uk-dotnav > .uk-active > * { background: var(--primary-color); border-color: var(--primary-color); }
hr.dark { border-top: 1px solid #1D1D1B; }

/* ========================================
   BUTTONS
   ======================================== */
.uk-button-default, .uk-button-secondary, .uk-button-primary {
    border-radius: 25px;
    padding: 8px 24px;
    font-family: var(--font-body);
    font-weight: 600; font-size: 12px;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.uk-button-default {
    background: transparent; color: var(--white);
    border: 1px solid var(--white);
}
.uk-button-default:hover {
    background: var(--secondary-color); color: var(--white);
    border-color: var(--secondary-color);
}

.uk-button-primary {
    background: var(--primary-color); color: var(--white);
    border: 1px solid var(--primary-color);
}
.uk-button-primary:hover {
    background: var(--secondary-color); color: var(--white);
    border-color: var(--secondary-color);
}

.uk-button-secondary {
    background: var(--secondary-color); color: var(--white);
    border: 1px solid var(--secondary-color);
}
.uk-button-secondary:hover {
    background: var(--primary-color); color: var(--white);
    border-color: var(--primary-color);
}

/* ========================================
   HOME — INTRO SECTION
   ======================================== */
.intro { padding: 60px 0; }
.intro .uk-text-small-heading {
    font-family: var(--font-display);
    font-size: 2rem !important;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.intro .uk-article p {
    font-family: var(--font-body);
    font-size: 0.95rem !important;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-color);
}

.uk-article p:first-of-type { text-indent: 5rem; }

/* ========================================
   SERVICE CARDS (grid 3-2-1-2)
   ======================================== */
.service-card {
    position: relative; overflow: hidden;
    background: #111; border-radius: 12px;
}
.service-card img {
    filter: grayscale(100%); opacity: 0.7;
    transition: all 0.5s ease;
}
.service-card:hover img {
    filter: grayscale(0%); opacity: 1;
    transform: scale(1.05);
}
.service-card-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    display: grid; grid-template-rows: 1fr auto;
    grid-template-columns: 1fr auto;
    align-items: end; padding: 25px; z-index: 1; gap: 15px;
}
.service-card-content { grid-column: 1; grid-row: 2; }
.service-card-overlay > a { grid-column: 2; grid-row: 2; align-self: end; }
.service-card-subtitle {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--primary-color);
    display: block; margin-bottom: 6px;
}
.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 800;
    text-transform: uppercase;
    color: var(--white); line-height: 1.1; margin: 0;
}
.service-card .uk-button { align-self: flex-end; }

/* Service card video on hover */
.service-card-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-card.has-video:hover .service-card-video {
    opacity: 1;
}

.service-card.has-video:hover .service-card-img {
    opacity: 0;
}

/* Texto descriptivo dentro de service cards (row 2) */
.service-card-desc {
    font-family: var(--font-body);
    font-size: 0.85rem; font-weight: 400;
    line-height: 1.6; color: rgba(255,255,255,0.85);
    margin-top: 8px;
}

/* ========================================
   SERVICE HIGHLIGHT (green block)
   ======================================== */
.service-highlight {
    border-radius: 12px;
    overflow: hidden;
}
/* Home page highlight: CSS grid layout (img + text) */
.service-highlight--home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}
@media (max-width: 959px) {
    .service-highlight--home { grid-template-columns: 1fr; }
}
.service-highlight-img {
    position: relative;
    background: #111;
}
.service-highlight-img img {
    filter: grayscale(100%);
    opacity: 0.75;
}
.service-highlight-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px;
    z-index: 1;
}
.service-highlight-btn-top {
    position: absolute;
    top: 20px; right: 20px;
    z-index: 2;
}
.service-highlight-text {
    background: var(--primary-color);
    border-radius: 12px;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-highlight-text p {
    font-family: var(--font-body);
    font-size: 1.35rem;
    line-height: 1.55;
    color: var(--dark);
    margin: 0;
}
.service-highlight-btn {
    align-self: flex-end;
    margin-top: 30px;
    color: var(--dark) !important;
    border-color: var(--dark) !important;
}
.service-highlight-btn:hover {
    background: var(--dark) !important;
    color: var(--white) !important;
}
@media (max-width: 959px) {
    .service-highlight-text { padding: 30px 25px; }
    .service-highlight-text p { font-size: 1.1rem; }
}

/* Service grid list (simple list inside green block) */
.service-grid-list {
    margin: 0;
    padding: 0;
}
.service-grid-list li {
    font-size: 1.25rem;
    padding: 15px 0 !important;
    color: var(--dark);
}

/* ========================================
   EXCLUSIVE BANNER
   ======================================== */
.exclusive-banner { position: relative; }
.exclusive-banner-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex; align-items: flex-end; padding: 40px;
}
.exclusive-banner-content p {
    color: var(--white); margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 0.95rem !important; line-height: 1.7;
}

/* ========================================
   ARTICLE CARDS (blog)
   ======================================== */
.article-card-img { border-radius: 8px; overflow: hidden; }
.article-card-img img { transition: transform 0.5s ease; }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body { padding: 18px 0 0; }
.article-card-date {
    font-family: var(--font-heading);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--primary-color);
}
.article-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 600;
    color: var(--secondary-color);
    margin: 10px 0 12px;
    font-style: italic;
    line-height: 1.35;
}
.article-card-title a { color: inherit; text-decoration: none; }
.article-card-title a:hover { color: var(--primary-color); }
.article-card-desc {
    font-family: var(--font-body);
    font-size: 0.85rem !important; font-weight: 400;
    color: var(--text-color); line-height: 1.65;
    margin-bottom: 14px;
}
.article-card-link {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--secondary-color);
    text-decoration: none; transition: color 0.3s;
}
.article-card-link:hover { color: var(--primary-color); }

/* ========================================
   MARQUEE
   ======================================== */
.marquee-section {
    overflow: hidden; white-space: nowrap;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.marquee-track {
    display: inline-flex;
    animation: marquee 20s linear infinite;
}
.marquee-word {
    font-family: var(--font-heading);
    font-size: 3.5rem; font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color);
    padding: 0 50px;
    letter-spacing: -0.02em;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-section { background: transparent; }
.contact-form-wrapper {
    margin: 0 auto;
    padding: 10vh;
    background: var(--primary-color); border-radius: 12px;
}
.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color);
}
.contact-form-wrapper p {
    color: var(--secondary-color) !important;
    font-size: 0.9rem !important; font-weight: 500;
}
.contact-input {
    background: transparent !important;
    border: 1px solid var(--secondary-color) !important;
    border-radius: 25px !important;
    color: var(--secondary-color) !important;
    padding: 12px 22px !important;
    font-family: var(--font-body); font-size: 13px;
}
.contact-input::placeholder { color: rgba(0,0,0,0.45) !important; }
.contact-input:focus { border-color: var(--secondary-color) !important; outline: none; }
textarea.contact-input { border-radius: 16px !important; }
.contact-section .uk-checkbox { border-color: var(--secondary-color); }
.contact-section label, .contact-section a {
    color: var(--secondary-color); font-family: var(--font-body); font-size: 12px;
}
.contact-section a { text-decoration: underline; }

/* ========================================
   CARDS (generic)
   ======================================== */
.uk-card-default { box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: all 0.3s; }
.uk-card-default:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.12); transform: translateY(-5px); }
.uk-text-primary { color: var(--primary-color) !important; }

/* ========================================
   OFFCANVAS GREEN MENU
   ======================================== */
.offcanvas-green .uk-offcanvas-bar.offcanvas-green-bar {
    background: var(--primary-color) !important;
    width: 55vw; min-width: 320px; max-width: 700px;
    padding: 60px 50px 40px;
    display: flex; flex-direction: column;
}
.offcanvas-green .uk-offcanvas-close {
    color: var(--secondary-color) !important;
    top: 25px; right: 25px;
}
.offcanvas-nav-list { flex: 1; display: flex; align-items: center; }
.offcanvas-nav-list ul { list-style: none; padding: 0; margin: 0; }
.offcanvas-nav-list ul li { margin-bottom: 4px; }
.offcanvas-nav-list ul li a {
    font-family: var(--font-heading);
    font-size: 1.5rem; font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none; transition: opacity 0.3s;
    display: inline-flex; align-items: center; gap: 15px;
    line-height: 1.6;
}
.offcanvas-nav-list ul li a:hover { opacity: 0.6; }
.offcanvas-nav-list ul li.active a { color: var(--secondary-color); }
.nav-active-line { font-weight: 400; font-size: 1.2rem; letter-spacing: 3px; }
.offcanvas-bottom { padding-top: 20px; }
.offcanvas-bottom hr { border-top: 1px solid rgba(0,0,0,0.15); margin-bottom: 25px; }
.offcanvas-cta {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    border-color: var(--secondary-color) !important;
    font-size: 11px !important; padding: 10px 25px !important;
    letter-spacing: 1px;
}
.offcanvas-cta:hover { background: #000 !important; }

/* ========================================
   STAFF CARDS
   ======================================== */
.staff-card { display: block; text-decoration: none; }
.staff-card-img { border-radius: 12px; overflow: hidden; position: relative; }
.staff-card-img img { filter: grayscale(100%); opacity: 0.8; transition: all 0.5s ease; }
.staff-card:hover .staff-card-img img { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
.staff-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    z-index: 1;
}
.staff-card-role {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--primary-color);
    display: block; margin-bottom: 6px;
}
.staff-card-name {
    font-family: var(--font-heading);
    font-size: 1.6rem; font-weight: 800;
    color: var(--white); margin: 0;
    text-transform: uppercase; letter-spacing: -0.01em;
}

/* Staff Modal */
.staff-modal { max-width: 500px; border-radius: 12px; padding: 40px; }
.staff-modal-role { font-family: var(--font-body); font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.staff-modal-name {
    font-family: var(--font-heading);
    font-size: 1.6rem; font-weight: 800;
    color: var(--secondary-color); margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.staff-modal-collegiate { font-family: var(--font-body); font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.staff-modal-bio { font-family: var(--font-body); font-size: 0.9rem; line-height: 1.75; color: var(--secondary-color); }
.staff-modal-bio ul { list-style: none; padding: 0; }
.staff-modal-bio ul li { position: relative; padding-left: 20px; margin-bottom: 12px; font-size: 1.1rem; }
.staff-modal-bio ul li::before {
    content: ''; position: absolute; left: 0; top: 12px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--primary-color);
}

/* ========================================
   NOSOTROS PAGE
   ======================================== */
.about-hero { padding: 120px 0 60px; }
.about-hero .about-title {
    font-family: var(--font-display);
    font-size: 4rem; font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 30px;
    letter-spacing: -0.03em;
    line-height: 1;
}
.about-hero .about-img { border-radius: 12px; overflow: hidden; }
.about-quote {
    font-family: var(--font-heading);
    font-style: italic; font-size: 1rem; font-weight: 500;
    color: var(--text-color);
    text-align: center; margin: 40px 0;
    line-height: 1.6;
}

.numbered-list { list-style: none; padding: 0; margin: 0; }
.numbered-list li {
    display: flex; align-items: center; gap: 25px;
    padding: 22px 30px;
    background: var(--primary-color);
    border-radius: 8px; margin-bottom: 6px;
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
}
.numbered-list li:nth-child(even) {
    background: transparent;
}
.numbered-list li .number {
    font-family: var(--font-heading);
    font-size: 2.8rem; font-weight: 800;
    color: var(--secondary-color); min-width: 40px;
    line-height: 1;
    flex-shrink: 0;
}

.green-card {
    background: var(--primary-color);
    border-radius: 12px; padding: 18px 22px;
    margin-bottom: 6px;
    color: var(--secondary-color);
    font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
}

/* ========================================
   BLOCK 1: Imagen + Lista Verde
   ======================================== */
.block-img-cover {
    border-radius: 12px 0 0 12px; overflow: hidden;
    height: 100%;
}
.block-img-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.block-green-list {
    background: var(--primary-color);
    border-radius: 0 12px 12px 0;
    padding: 50px 40px;
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
}
.block-green-list-title {
    font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin: 0 0 20px;
}
.block-green-list-items {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
}
.block-green-list-items p {
    font-family: var(--font-heading) !important;
    font-size: 1.1rem !important; font-weight: 600;
    color: var(--secondary-color) !important;
    padding: 12px 0;
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.12);
}
.block-green-list-items p:last-child { border-bottom: none; }

.block-green-list-items ol {padding-left: 0 !important;}
.block-green-list-items li {
    font-size: 1.4rem;
    border-top: 1px solid #000;
    padding: 10px 0px;
}

/* Block gallery slider nav */
.block-gallery-slider .uk-slidenav {
    color: var(--secondary-color);
}
.block-gallery-slider .uk-slidenav:hover {
    color: var(--primary-color);
}

/* Staff card "Veure formació" button overlay */
.staff-card-btn {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--secondary-color);
    background: var(--primary-color);
    border: none; border-radius: 25px;
    padding: 8px 20px;
    margin-top: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}
.staff-card:hover .staff-card-btn {
    background: var(--white);
}

/* Staff card hover verde overlay */
.staff-card:hover .staff-card-overlay {
    background: linear-gradient(to top, var(--primary-color) 0%, rgba(0,226,156,0.6) 40%, transparent 100%);
}

@media (max-width: 959px) {
    .block-img-cover { border-radius: 12px 12px 0 0; }
    .block-green-list { border-radius: 0 0 12px 12px; padding: 30px 25px; }
}

/* ========================================
   SERVICE PAGE
   ======================================== */
.service-hero { padding: 120px 0 40px; }
.service-hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem; font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color);
    line-height: 1.05; margin: 0 0 25px;
    letter-spacing: -0.02em;
}
.service-hero-img { border-radius: 12px; overflow: hidden; }
.service-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem !important; font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.45; margin: 0;
    padding: 5vh;
}
.service-highlight-quote {
    font-size: 1.2rem !important;
    padding: 3vh
}

/* Service Accordion (inside green highlight block) */
.service-accordion { margin: 0; padding: 0; }
.service-accordion > li { list-style: none; border-bottom: 1px solid rgba(0,0,0,0.15); }
.service-accordion > li:last-child { border-bottom: none; }
.service-accordion .uk-accordion-title {
    font-family: var(--font-heading); font-weight: 600;
    font-size: 1.4rem; color: var(--secondary-color);
    padding: 18px 0;
}
.service-accordion .uk-accordion-title::before {
    background-image: none !important;
    content: '+'; font-size: 1.5rem; font-weight: 300; float: right;
    color: var(--secondary-color);
}
.service-accordion .uk-open .uk-accordion-title::before { content: '—'; }
.service-accordion .uk-accordion-content {
    font-family: var(--font-body);
    font-size: 0.9rem; color: var(--secondary-color); padding: 0 0 18px;
}
.service-accordion .uk-accordion-content ul { list-style: none; padding: 0; margin: 0; }
.service-accordion .uk-accordion-content ul li {
    padding: 4px 0 4px 18px; position: relative;
    font-size: 1.1rem;
}
.service-accordion .uk-accordion-content ul li::before {
    content: '·'; position: absolute; left: 0; font-weight: 700;
}


.other-services .uk-dotnav > * > * {border: 1px solid rgba(102, 102, 102, .4) !important;}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-info-title {
    font-family: var(--font-heading);
    font-size: 2.8rem; font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.contact-info-value {
    font-family: var(--font-body);
    font-size: 1rem !important; font-weight: 400;
    color: var(--secondary-color);
}
.contact-map { border-radius: 12px; overflow: hidden; }
.contact-map iframe { width: 100%; height: 400px; border: 0; }

/* ========================================
   BLOG PAGE
   ======================================== */
.blog-title {
    font-family: var(--font-heading);
    font-size: 3.2rem; font-weight: 800;
    text-transform: uppercase; text-align: center;
    color: var(--secondary-color);
    margin: 0 0 45px;
    letter-spacing: -0.02em;
}

/* Blog Detail */
.blog-detail-date {
    font-family: var(--font-heading);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--primary-color);
    margin-bottom: 8px; display: block;
}
.blog-detail-title {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 25px; line-height: 1.2;
}
.blog-detail-img { border-radius: 12px; overflow: hidden; margin-bottom: 25px; }
.blog-detail-img img { width: 100%; height: auto; display: block; }
.blog-detail-content {
    font-family: var(--font-body);
    font-size: 0.93rem; line-height: 1.8;
    color: var(--text-color);
}
.blog-detail-content h2, .blog-detail-content h3, .blog-detail-content h4 {
    font-family: var(--font-heading); font-weight: 700;
    margin-top: 30px; color: var(--secondary-color);
}
.blog-detail-content img { border-radius: 12px; margin: 25px 0; width: 100%; height: auto; }

.blog-share {
    display: flex; align-items: center; gap: 8px;
    justify-content: flex-end; margin-bottom: 25px;
}
.blog-share span {
    font-family: var(--font-body);
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-light);
}
.blog-share a {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--primary-color); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.blog-share a:hover { background: var(--secondary-color); }

.blog-nav { border-top: 1px solid var(--border-color); padding-top: 30px; margin-top: 40px; }
.blog-nav a {
    font-family: var(--font-body); font-size: 0.9rem;
    color: var(--secondary-color); text-decoration: none;
    transition: color 0.3s;
}
.blog-nav a:hover { color: var(--primary-color); }
.blog-nav .nav-label {
    font-family: var(--font-heading);
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 1px; color: var(--primary-color);
    font-weight: 700; display: block; margin-bottom: 4px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer { background: var(--secondary-color); padding: 35px 0 20px; color: var(--white); }
.site-footer a { color: var(--white); text-decoration: none; transition: color 0.3s; }
.site-footer a:hover { color: var(--primary-color); }
.footer-main {
    display: flex; align-items: center;
    justify-content: space-between; padding-bottom: 20px;
}
.footer-copyright { font-family: var(--font-body); font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-logo img { height: 28px; width: auto; }
.footer-links {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    display: flex; gap: 8px; align-items: center;
}
.footer-links .divider { color: rgba(255,255,255,0.3); }
.footer-legal {
    text-align: center; padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem; color: rgba(255,255,255,0.4);
}
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--primary-color); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 959px) {
    .corporate-header .uk-navbar-nav > li > a {
        line-height: 60px; font-size: 10px; padding: 0 8px;
    }
    .offcanvas-green .uk-offcanvas-bar.offcanvas-green-bar { width: 85vw; }
    .offcanvas-nav-list ul li a { font-size: 1.15rem; }
    .about-hero .about-title { font-size: 3rem; }
    .service-hero-title { font-size: 2rem; }
    .blog-title { font-size: 2rem; }
    .contact-info-title { font-size: 1.8rem; }
    .section-title { font-size: 2rem; }
    .marquee-word { font-size: 2.2rem; padding: 0 25px; }
    .footer-main { flex-direction: column; gap: 20px; text-align: center; }

    .contact-form-wrapper {padding: 5vh;}
}

@media (max-width: 639px) {
     .contact-form-wrapper {padding: 20px;}
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
#cookieMessageWrapper { width: 100%; position: fixed; left: 0; top: 0; z-index: 9999; height: 100%; background: rgba(29,29,27,0.6); }
#cookieMessage { margin: 0 auto; position: absolute; padding: 40px; width: 90%; left: 50%; top: 50%; max-width: 580px; transform: translateX(-50%) translateY(-50%); background-color: #fff; border-radius: 12px; }
#cookieMessage p { margin: 20px 0; color: #444; font-size: 0.9rem; line-height: 1.6; }
.cookie-consent-options { margin-top: 10px; color: #1D1D1B; }
#cookieMessageWrapper label { margin-right: 10px; text-transform: uppercase; font-size: 0.8rem; }
#cookieMessageWrapper .uk-checkbox { border-color: #1D1D1B !important; margin-right: 5px; }
#cookieMessageWrapper .uk-checkbox:checked { background-color: #1D1D1B; }
#cookieMessageWrapper .uk-checkbox:disabled:checked { background-color: #ccc; border-color: #ccc !important; }
.uk-button-accept { background-color: #1D1D1B; color: #fff !important; border: 1px solid #1D1D1B; padding: 7px 12px !important; margin: 2px; border-radius: 20px; font-size: 0.85rem; }
.uk-button-accept:hover { background-color: var(--primary-color); color: #1D1D1B !important; border-color: var(--primary-color); }
.uk-button-decline { background-color: transparent; color: #1D1D1B !important; border: 1px solid #1D1D1B; padding: 7px 12px !important; margin: 2px; border-radius: 20px; font-size: 0.85rem; }
.uk-button-decline:hover { background-color: #1D1D1B; color: #fff !important; }
.uk-button-decline-all { background-color: transparent; color: #1D1D1B !important; border: 1px solid #1D1D1B; padding: 7px 12px !important; margin: 2px; border-radius: 20px; font-size: 0.85rem; }
.uk-button-decline-all:hover { background-color: #ccc; color: #1D1D1B !important; }
