/* ===================================================================
   GlobalBridge.site - CSS Oficial Estilo ThemeWagon VaultEdge
   Rutas relativas limpias (sin barras iniciales)
   =================================================================== */

:root {
    --v-primary: #0f172a;
    --v-secondary: #0284c7;
    --v-accent: #0ea5e9;
    --v-dark-bg: #0b0f19;
    --v-light-bg: #f8fafc;
    --v-white: #ffffff;
    --v-text: #475569;
    --v-border: #e2e8f0;
    --v-warning-bg: #fefce8;
    --v-warning-border: #fef08a;
    --v-warning-text: #854d0e;
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--v-light-bg);
    color: var(--v-text);
    line-height: 1.8;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Topbar Disclaimer */
.topbar-disclaimer {
    background-color: var(--v-warning-bg);
    border-bottom: 1px solid var(--v-warning-border);
    color: var(--v-warning-text);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    text-align: center;
}

/* Header Top Bar */
.header-top-bar {
    background-color: var(--v-dark-bg);
    color: #94a3b8;
    font-size: 0.85rem;
    padding: 0.6rem 0;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-info {
    display: flex;
    gap: 2rem;
}

.top-contact-info span i, .top-social-links a {
    color: var(--v-accent);
    margin-right: 0.4rem;
}

.top-social-links {
    display: flex;
    gap: 1.25rem;
}

.top-social-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.top-social-links a:hover {
    color: var(--v-white);
}

/* Main Site Header Sticky */
.main-site-header {
    background-color: var(--v-white);
    border-bottom: 1px solid var(--v-border);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.brand-logo a {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--v-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand-logo span {
    color: var(--v-secondary);
}

.navigation-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navigation-menu a {
    text-decoration: none;
    color: var(--v-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.navigation-menu a:hover,
.navigation-menu a.active {
    color: var(--v-secondary);
}

.btn-theme-header {
    background-color: var(--v-secondary);
    color: var(--v-white);
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.btn-theme-header:hover {
    background-color: var(--v-primary);
}

/* Hero Section */
.hero-section-vault {
    background-color: var(--v-white);
    padding: 6rem 0;
    border-bottom: 1px solid var(--v-border);
}

.hero-grid-vault {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge-vault {
    display: inline-block;
    background-color: #e0f2fe;
    color: var(--v-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 1.25rem;
}

.hero-content-vault h1 {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--v-primary);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-content-vault p {
    font-size: 1.05rem;
    color: var(--v-text);
    margin-bottom: 2rem;
}

.hero-btns-vault {
    display: flex;
    gap: 1rem;
}

.btn-primary-vault {
    background-color: var(--v-primary);
    color: var(--v-white);
    padding: 0.8rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-primary-vault:hover {
    background-color: var(--v-secondary);
}

.btn-secondary-vault {
    background-color: transparent;
    color: var(--v-primary);
    border: 2px solid var(--v-border);
    padding: 0.8rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary-vault:hover {
    border-color: var(--v-primary);
}

.hero-real-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 25px 30px -5px rgba(15, 23, 42, 0.08);
}

/* Counters Section */
.counters-section-vault {
    background-color: var(--v-dark-bg);
    color: var(--v-white);
    padding: 4rem 0;
}

.counters-grid-vault {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.counter-item-vault h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--v-accent);
    margin-bottom: 0.5rem;
}

.counter-item-vault p {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Services Section */
.services-section-vault {
    padding: 6rem 0;
    background-color: var(--v-light-bg);
}

.section-title-vault {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem auto;
}

.section-title-vault span {
    color: var(--v-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title-vault h2 {
    font-size: 2.25rem;
    color: var(--v-primary);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title-vault p {
    color: var(--v-text);
    font-size: 1rem;
}

.services-grid-vault {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-vault {
    background-color: var(--v-white);
    border: 1px solid var(--v-border);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card-vault:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.05);
}

.service-icon-vault {
    font-size: 2.25rem;
    color: var(--v-secondary);
    margin-bottom: 1.5rem;
}

.service-card-vault h3 {
    font-size: 1.25rem;
    color: var(--v-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card-vault p {
    color: var(--v-text);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link-vault {
    color: var(--v-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link-vault:hover {
    color: var(--v-primary);
}

/* Why Us Section */
.why-us-vault {
    padding: 6rem 0;
    background-color: var(--v-white);
    border-top: 1px solid var(--v-border);
}

.why-grid-vault {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text-vault span {
    color: var(--v-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.why-text-vault h2 {
    font-size: 2.25rem;
    color: var(--v-primary);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.why-text-vault p {
    color: var(--v-text);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.why-list-vault {
    list-style: none;
}

.why-list-vault li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--v-primary);
    font-size: 0.95rem;
}

.why-list-vault li i {
    color: var(--v-secondary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.why-real-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05);
}

/* Insights Section */
.insights-section-vault {
    padding: 6rem 0;
    background-color: var(--v-light-bg);
    border-top: 1px solid var(--v-border);
}

.insights-grid-vault {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insight-card-vault {
    background-color: var(--v-white);
    border: 1px solid var(--v-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.insight-card-vault:hover {
    transform: translateY(-5px);
}

.insight-img-box {
    position: relative;
    height: 220px;
}

.insight-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--v-primary);
    color: var(--v-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    text-transform: uppercase;
}

.insight-content-box {
    padding: 2rem;
}

.insight-date {
    color: #94a3b8;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.75rem;
}

.insight-content-box h3 {
    font-size: 1.15rem;
    color: var(--v-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.insight-content-box p {
    color: var(--v-text);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.insight-read-more {
    color: var(--v-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-read-more:hover {
    color: var(--v-primary);
}

/* Footer */
.vault-main-footer {
    background-color: var(--v-dark-bg);
    color: var(--v-white);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid #1e293b;
}

.footer-grid-vault {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-widget-vault h3, .footer-widget-vault h4 {
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-widget-vault p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-widget-vault ul {
    list-style: none;
}

.footer-widget-vault ul li {
    margin-bottom: 0.75rem;
}

.footer-widget-vault ul a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-widget-vault ul a:hover {
    color: var(--v-white);
}

.footer-bottom-vault {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .hero-grid-vault, .why-grid-vault, .counters-grid-vault, .services-grid-vault, .insights-grid-vault, .footer-grid-vault {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .navigation-menu, .header-top-bar {
        display: none;
    }
}