/* ============================================================
   SkyTechSV Technology — Main Stylesheet
   Colores: Primary #1351A8 | Dark #0A3278 | Accent #4A90D9
   ============================================================ */

/* ── AOS Fallback: si AOS no inicializa, mostrar contenido siempre ── */
body:not(.aos-init) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --primary:      #1351A8;
    --primary-dark: #0A3278;
    --accent:       #4A90D9;
    --bg-light:     #F8FAFF;
    --text-dark:    #1A1A2E;
    --text-muted:   #6B7C9E;
    --border:       #DCE8F8;
    --white:        #ffffff;
    --success:      #25D366;
    --navbar-h:     80px;
    --radius:       12px;
    --radius-lg:    20px;
    --shadow-sm:    0 2px 12px rgba(19,81,168,.08);
    --shadow-md:    0 8px 32px rgba(19,81,168,.14);
    --shadow-lg:    0 20px 60px rgba(19,81,168,.18);
    --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset / Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    padding-top: var(--navbar-h);
    line-height: 1.65;
}
img { max-width: 100%; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

/* ── Utilidades ────────────────────────────────────────────── */
.section-pad      { padding: 80px 0; }
.bg-light-blue    { background: var(--bg-light); }
.bg-dark-blue     { background: var(--primary-dark); }
.text-accent      { color: var(--accent); }
.text-muted-light { color: rgba(255,255,255,.65); }
.mb-6             { margin-bottom: 4rem; }
.mt-6             { margin-top: 4rem; }
.z-2              { position: relative; z-index: 2; }

/* ── Botones personalizados ────────────────────────────────── */
.btn-primary-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    padding: .55rem 1.6rem;
    font-weight: 600;
    letter-spacing: .3px;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(19,81,168,.3);
}
.btn-primary-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(19,81,168,.4);
    background: linear-gradient(135deg, #0A3278 0%, #1351A8 100%);
    color: #fff !important;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(19,81,168,.4);
    transition: var(--transition);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(19,81,168,.5);
    color: #fff !important;
}

.btn-hero-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
    transition: var(--transition);
}
.btn-hero-wa:hover {
    transform: translateY(-3px);
    color: #fff !important;
    box-shadow: 0 12px 32px rgba(37,211,102,.45);
}

.btn-hero-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.55);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
}

.btn-filter {
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 500;
    padding: .4rem 1.2rem;
    transition: var(--transition);
}
.btn-filter.active, .btn-filter:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ── Navbar ────────────────────────────────────────────────── */
.stk-navbar {
    background: rgba(10,50,120,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: var(--navbar-h);
    transition: background .4s, box-shadow .4s;
    box-shadow: none;
}
.stk-navbar.scrolled {
    background: rgba(10,50,120,1) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,.22);
}
.brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: -.3px;
}
.brand-accent { color: var(--accent); }
.logo-img { object-fit: contain; }

.nav-link {
    font-weight: 500;
    font-size: .92rem;
    color: rgba(255,255,255,.85) !important;
    padding: .45rem .8rem !important;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,.12);
}
.lang-btn {
    border-color: rgba(255,255,255,.4);
    color: #fff !important;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 500;
}
.lang-btn:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── Sección Header (breadcrumb pages) ─────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
    padding: 70px 0 50px;
    margin-top: 0;
}
.page-header .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-header .breadcrumb-item.active { color: #fff; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
.page-header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem;
}
.page-header-sub { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.product-badge-header {
    display: inline-block;
    background: rgba(255,255,255,.18);
    color: #fff;
    border-radius: 50px;
    padding: .3rem 1rem;
    font-size: .85rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.25);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero-section {
    min-height: calc(100vh - var(--navbar-h));
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    animation: floatShape 8s ease-in-out infinite;
}
.shape-1 { width: 480px; height: 480px; top: -120px; right: -80px; }
.shape-2 { width: 280px; height: 280px; bottom: 40px; left: -60px; animation-delay: 2s; }
.shape-3 { width: 160px; height: 160px; top: 35%; left: 42%; animation-delay: 4s; }
@keyframes floatShape {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-18px) scale(1.04); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    padding: .4rem 1.1rem;
    font-size: .85rem;
    font-weight: 600;
}
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.82);
    max-width: 560px;
    line-height: 1.7;
}
.hero-stats { border-top: 1px solid rgba(255,255,255,.18); padding-top: 22px; }
.stat-item  { display: flex; flex-direction: column; }
.stat-number { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800; color: #fff; }
.stat-label  { font-size: .8rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* Hero illustration */
.hero-illustration { position: relative; padding: 20px; min-height: 320px; }
.hero-img { max-height: 380px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.2)); }

/* Code mockup (fallback cuando no hay hero-illustration.svg) */
.hero-code-mockup {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    overflow: hidden;
    max-width: 360px;
    margin: 0 auto 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.mockup-bar {
    background: rgba(0,0,0,.2);
    padding: .6rem 1rem;
    display: flex;
    align-items: center;
    gap: .45rem;
}
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.mockup-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; }
.line {
    height: 10px;
    border-radius: 6px;
    background: rgba(255,255,255,.25);
    display: block;
}
.line.short   { width: 55%; }
.line.indent  { margin-left: 1.4rem; width: 75%; }
.line.l1      { width: 85%; background: rgba(74,144,217,.6); }
.line.l2      { background: rgba(255,255,255,.18); }
.line.l3      { background: rgba(255,255,255,.3); }
.line.l4      { background: rgba(255,255,255,.15); }
.line.l5      { width: 70%; background: rgba(74,144,217,.4); }
.line.l6      { background: rgba(255,255,255,.18); }
.line.l7      { background: rgba(255,255,255,.28); }
.floating-card {
    position: absolute;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 12px;
    padding: .7rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    animation: floatCard 4s ease-in-out infinite;
}
.floating-card i { font-size: 1.1rem; }
.card-1 { top: -18px;  left: -10px;  animation-delay: 0s; }
.card-2 { top: 42%;   right: -10px; animation-delay: 1.5s; }
.card-3 { bottom: -18px; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
@keyframes floatCard {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { display: block; height: 60px; }

/* ── Sección headers ───────────────────────────────────────── */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.section-tag.light {
    background: none;
    -webkit-text-fill-color: rgba(255,255,255,.65);
    color: rgba(255,255,255,.65);
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}
.section-sub   { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.section-header { max-width: 720px; margin: 0 auto; }

/* ── Service Cards ─────────────────────────────────────────── */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity .4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon-box {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(19,81,168,.1) 0%, rgba(74,144,217,.1) 100%);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}
.service-icon-box i { font-size: 1.6rem; color: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon-box { background: rgba(255,255,255,.18); }
.service-card:hover .service-icon-box i { color: #fff; }
.service-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: .6rem; transition: var(--transition); }
.service-desc { color: var(--text-muted); font-size: .92rem; line-height: 1.7; transition: var(--transition); }
.service-card:hover .service-name, .service-card:hover .service-desc { color: rgba(255,255,255,.9); }
.service-link { font-weight: 600; font-size: .88rem; color: var(--primary); transition: var(--transition); display: inline-flex; align-items: center; gap: 4px; }
.service-card:hover .service-link { color: rgba(255,255,255,.9); }

/* Services page: big icon */
.service-big-icon {
    width: 160px; height: 160px;
    background: linear-gradient(135deg, rgba(19,81,168,.08) 0%, rgba(74,144,217,.12) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    border: 3px solid var(--border);
}
.service-big-icon i { font-size: 4rem; color: var(--icon-color, var(--primary)); }
.service-detail-title { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.service-detail-desc  { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.service-benefits     { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.service-benefits li  { padding: .4rem 0; font-size: .95rem; }
.service-divider      { border: none; border-top: 2px dashed var(--border); margin: 4rem 0; }

/* ── Why cards ─────────────────────────────────────────────── */
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.why-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.why-icon i { font-size: 1.4rem; color: #fff; }
.why-title { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.why-desc  { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }

/* ── Product Cards ─────────────────────────────────────────── */
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.product-img-wrap { position: relative; overflow: hidden; height: 200px; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0fd 100%);
    display: flex; align-items: center; justify-content: center;
}
.product-img-placeholder i { font-size: 3.5rem; color: var(--accent); opacity: .6; }
.product-badge {
    position: absolute; top: 12px; left: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    font-size: .75rem; font-weight: 700;
    border-radius: 50px;
    padding: .25rem .8rem;
    letter-spacing: .3px;
}
.product-body  { padding: 1.4rem; flex: 1; }
.product-name  { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; }
.product-desc  { color: var(--text-muted); font-size: .88rem; line-height: 1.65; margin-bottom: .5rem; }
.product-price { font-weight: 700; color: var(--primary); font-size: .9rem; }
.product-footer { padding: 0 1.4rem 1.4rem; display: flex; gap: .5rem; }

/* Product detail */
.product-detail-img-main { border-radius: var(--radius); overflow: hidden; }
.product-detail-placeholder {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0fd 100%);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex; align-items: center; justify-content: center;
}
.product-detail-placeholder i { font-size: 6rem; color: var(--accent); opacity: .5; }
.gallery-thumb { width: 80px; height: 60px; overflow: hidden; border-radius: 8px; cursor: pointer; border: 2px solid var(--border); }
.gallery-thumb img { width:100%;height:100%;object-fit:cover; transition:.3s; }
.gallery-thumb:hover { border-color: var(--primary); }
.product-detail-title { font-family:'Poppins',sans-serif; font-size:1.8rem; font-weight:800; }
.product-detail-lead  { font-size:1.05rem; color:var(--text-muted); }
.product-quick-info { border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.2rem; }
.info-row { display:flex; gap:.8rem; padding:.4rem 0; font-size:.92rem; }
.info-label { font-weight:600; color:var(--primary); min-width:160px; }
.price-value { font-weight:700; font-size:1.05rem; color:var(--accent); }
.product-features-box { background:var(--bg-light); border-radius:var(--radius); padding:1.2rem 1.4rem; margin-top:1rem; }
.features-title { font-weight:700; font-size:1rem; margin-bottom:.8rem; }
.features-list { list-style:none; padding:0; margin:0; }
.features-list li { padding:.35rem 0; font-size:.92rem; }
.product-full-desc { background:var(--bg-light); border-radius:var(--radius-lg); padding:2rem; }
.product-full-desc h3 { font-weight:700; margin-bottom:1rem; }
.rich-text p, .rich-text br+br { margin-bottom:.8rem; }

/* ── Clients marquee ───────────────────────────────────────── */
.clients-marquee { overflow: hidden; }
.clients-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.client-logo-item {
    display: flex; align-items: center; justify-content: center;
    min-width: 140px; height: 60px;
    background: rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 8px 16px;
}
.client-logo-item img { max-height: 44px; width: auto; filter: brightness(0) invert(1); opacity: .75; }
.client-name-text { color: rgba(255,255,255,.75); font-weight: 600; white-space: nowrap; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Clients page */
.client-logo-card { padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.client-logo-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateY(-3px); }
.client-logo-img { max-height: 64px; width: auto; object-fit: contain; }
.client-placeholder-logo {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
}
.client-placeholder-logo span { color: #fff; font-weight: 700; font-size: 1.3rem; }
.client-name { color: var(--text-muted); font-weight: 500; }

/* ── Testimonios ───────────────────────────────────────────── */
.testimonial-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.testimonial-stars i { color: #F5C518; font-size: .9rem; margin-right: 2px; }
.testimonial-text { color: rgba(255,255,255,.85); font-style: italic; line-height: 1.7; margin: .8rem 0 1.2rem; flex: 1; }
.testimonial-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; background: #fff; padding: 4px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
    top: -200px; right: -150px;
    pointer-events: none;
}
.cta-title { font-family:'Poppins',sans-serif; font-size:clamp(1.6rem,3vw,2.4rem); font-weight:800; color:#fff; }
.cta-sub   { color: rgba(255,255,255,.82); font-size:1.05rem; max-width:560px; margin:0 auto; }

/* ── Formularios ───────────────────────────────────────────── */
.stk-input {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: .65rem 1rem;
    font-size: .93rem;
    transition: border-color .25s, box-shadow .25s;
    background: var(--white);
}
.stk-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(19,81,168,.12);
    outline: none;
}
.contact-quick-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    box-shadow: var(--shadow-sm);
}

/* Contact page */
.contact-info-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i { color: #fff; font-size: 1rem; }
.contact-wa-icon   { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.contact-info-item strong { font-weight: 600; display: block; font-size: .9rem; color: var(--text-dark); }
.contact-info-item a, .contact-info-item span { font-size: .88rem; color: var(--text-muted); }
.contact-info-item a:hover { color: var(--primary); }
.contact-map-box { border-radius: var(--radius); overflow: hidden; }
.contact-map-placeholder {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0fd 100%);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

/* ── About page ────────────────────────────────────────────── */
.about-quick-stats { border-top: 2px solid var(--border); padding-top: 1.5rem; }
.about-stat { display: flex; flex-direction: column; }
.about-stat-num { font-family:'Poppins',sans-serif; font-size:2rem; font-weight:800; color:var(--primary); }
.about-stat span { font-size:.8rem; color:var(--text-muted); font-weight:500; }
.lead-text { font-size:1.05rem; color:var(--text-muted); line-height:1.8; }
.mv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}
.mv-card:hover { box-shadow: var(--shadow-md); }
.mv-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.mv-icon i { font-size: 1.4rem; color: #fff; }
.mv-card h3 { font-weight:700; font-size:1.15rem; margin-bottom:.6rem; }
.mv-card p  { color:var(--text-muted); line-height:1.7; }
.valor-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    transition: var(--transition);
}
.valor-card:hover { border-color: var(--v-color,var(--primary)); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.valor-card i { font-size: 2rem; color: var(--v-color, var(--primary)); display: block; margin-bottom: .6rem; }
.valor-card span { font-weight:600; font-size:.9rem; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.about-img-placeholder {
    height: 360px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0fd 100%);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
}

/* ── Footer ────────────────────────────────────────────────── */
.stk-footer { background: var(--primary-dark); padding: 0; }
.footer-brand span { font-family:'Poppins',sans-serif; }
.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex; align-items: flex-start; gap: .8rem;
    margin-bottom: .8rem;
    color: rgba(255,255,255,.7);
    font-size: .88rem;
}
.footer-contact-list i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.7); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-divider { border-color: rgba(255,255,255,.1); margin: 0; }
.social-links { gap: 10px; }
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: 1rem;
    transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.social-wa:hover   { background: #25D366; }

/* ── WhatsApp flotante ─────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: var(--transition);
    animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 32px rgba(37,211,102,.6);
    animation: none;
}
@keyframes waPulse {
    0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
    50%      { box-shadow: 0 6px 36px rgba(37,211,102,.7); }
}
.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: #fff;
    padding: .35rem .8rem;
    border-radius: 8px;
    font-size: .82rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── Paginación ────────────────────────────────────────────── */
.page-link { border-radius: 8px !important; border-color: var(--border); color: var(--primary); font-weight: 500; }
.page-item.active .page-link { background: var(--primary); border-color: var(--primary); }
.page-link:hover { background: var(--bg-light); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    body { padding-top: 70px; }
    .stk-navbar { height: auto; min-height: 70px; }
    .hero-section { padding: 60px 0 80px; }
    .section-pad { padding: 60px 0; }
    .hero-illustration { display: none; }
    .navbar-actions { flex-direction: row !important; }

    /* Menú móvil — fondo sólido para que no se vea transparente */
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        background: rgb(10, 50, 120);
        border-radius: 0 0 12px 12px;
        padding: .75rem 1rem 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,.3);
        margin-top: 4px;
    }
}
@media (max-width: 575.98px) {
    .hero-title { font-size: 1.9rem; }
    .section-pad { padding: 50px 0; }
    .contact-quick-card { padding: 1.6rem; }
    .page-header-title { font-size: 1.8rem; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.7rem; bottom: 20px; right: 20px; }
}
