/* CSS Refactorizado, Unificado y Limpio (Optimizacion de Reglas) */

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-page: #050505;
    --bg-surface: #0f0f0f;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    
    --text-main: #d1d5db;
    
    --text-muted: #9ca3af;
    
    
    --primary: #2563eb;
    
    --primary-glow: rgba(37, 99, 235, 0.4);
    --accent: #00d4ff;
    
    --accent-gradient: linear-gradient(90deg, #2563eb, #00d4ff);
    
    --border-color: #333;
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --max-width: 1280px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-2 {
    padding-bottom: 2rem !important;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.grid {
    display: grid;
    gap: 2rem;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden-mobile {
    display: block;
}

.main-header {
    height: var(--header-height);
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    height: 100%;
    display: flex;
    
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-right: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-contact-btn {
    padding: 0.1rem 0.5rem;
    font-size: 0.9rem;
}

.contact-info-header {
    display: flex;
    align-items: center;
}

.whatsapp-btn-header {
    background: #10b981;
    
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.whatsapp-btn-header:hover {
    background: #059669;
}

.hero-container {
    min-height: 60vh;
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    margin: 1.5rem 0 2.5rem;
}

.hero-actions {
    gap: 1.5rem;
    flex-wrap: wrap;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.about-grid,
.about-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-tag {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.about-title {
    margin: 1rem 0 1.5rem;
}

.about-image-placeholder {
    background: #141414;
    height: 400px;
    border-radius: 20px;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 5rem;
}

.about-image-glow {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent-gradient);
    filter: blur(40px);
}

.industries-list {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.industries-btn {
    border-radius: 8px;
}

.cta-box {
    background: var(--accent-gradient);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-btn {
    background: #fff;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: #fff;
    margin-top: 2rem;
    padding: 1rem 5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
    z-index: 1;
}

.footer-logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-description {
    font-size: 0.9rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-social {
    gap: 1rem;
}

.footer-contact-links {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 1280px) {
    .container {
        width: 96%;
    }

}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .logo .logo-text {
        font-size: 1.1rem;
                line-height: 1.2;
    }

    .about-image-wrapper.hidden-mobile {
        display: block;
    }

    .about-image-placeholder {
        height: 250px;
    }

    .about-content {
        background: var(--bg-card);
                padding: 2rem;
                border-radius: 12px;
                border: 1px solid rgba(255, 255, 255, 0.05);
                
                text-align: left;
    }

    .about-text-wrapper {
        max-width: 100%;
                margin: 0;
                text-align: inherit;
    }

    .about-btn {
        display: inline-block;
                width: 100%;
                
                text-align: center;
                margin-top: 2rem;
    }

    .about-content h2 {
        font-size: 1.75rem;
                
                margin-bottom: 1rem;
    }

    .about-grid,
    .about-split-grid {
        grid-template-columns: 1fr;
                
                gap: 2rem;
    }

}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.opacity-50 {
    opacity: 0.5;
}



.mt-2-text-white {
    margin-top: 2rem;
    color: #fff;
}

.max-w-800-mx-auto {
    max-width: 800px;
    margin: 0 auto;
}



.faq-title-style {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.m-0-text-1-1rem {
    margin:0;
    font-size: 1.1rem;
}

.text-left-ml-0 {
    text-align: left;
    margin-left: 0;
}

.text-0-9rem {
    font-size: 0.9rem;
}





.mt-2-gap-1 {
    margin-top: 2rem;
    gap: 1rem;
}





.extracted-style-1 {
    margin-top: 2rem;
}

.extracted-style-3 {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}









.extracted-style-9 {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.extracted-style-10 {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.extracted-style-11 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    opacity: 0.7;
}

.extracted-style-12 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.extracted-style-13 {
    margin-top: 1rem;
}

.extracted-style-14 {
    text-align: left;
}

.extracted-style-15 {
    display: block;
    font-weight: bold;
    color: var(--accent-primary);
}



.extracted-style-17 {
    margin-top: 1rem;
    font-size: 0.9rem;
}





.extracted-style-24 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.extracted-style-25,
.faq-text-style {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
    background: #1d4ed8;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}

.main-header {
    
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flex,
.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover,
.text-white {
    color: #fff;
}

.logo-text-group {
    display: flex;
    gap: 0.3rem;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.whatsapp-btn-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.whatsapp-btn-header:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: scale(1.05);
}

.phone-btn-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.phone-btn-header:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

@media (max-width: 1250px) {
    .main-header {
        height: var(--header-height);
                padding-top: 0.5rem;
                padding-bottom: 0;
    }

    .nav-container {
        flex-wrap: wrap;
                padding-bottom: 0;
                
                justify-content: space-between;
                align-items: center;
    }

    .logo {
        font-size: 1.1rem;
                gap: 0.4rem;
    }

    .logo img {
        height: 32px;
                
                width: auto;
    }

    .logo-text-group {
        flex-direction: column;
                align-items: flex-start;
                line-height: 1;
                gap: 0;
    }

    .contact-info-header {
        display: flex;
                gap: 0.4rem;
                
                margin-left: auto;
    }

    .phone-btn-header,
    .whatsapp-btn-header {
        padding: 0.3rem 0.6rem;
                font-size: 0.75rem;
                
                gap: 0.3rem;
                border-radius: 12px;
    }

    .phone-btn-header svg,
    .whatsapp-btn-header svg {
        width: 14px;
                height: 14px;
    }

    .nav-links {
        position: static;
                width: 100%;
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                gap: 6px;
                row-gap: 8px;
                padding: 0.8rem 0 0.8rem;
                margin-right: 0;
                background: transparent;
                transform: none;
                border-bottom: none;
    }

    .nav-links a {
        padding: 0.2rem 0.2rem;
                font-size: 0.85rem;
                color: var(--text-muted);
                white-space: nowrap;
                letter-spacing: -0.3px;
    }

    .nav-links a.active {
        color: #fff;
                border-bottom: 2px solid var(--primary);
    }

}

.card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    
    color: inherit;
}

.card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #25d366;
    
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
    
    transition: all 0.3s ease;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
                gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
                gap: 1rem;
                text-align: center;
    }

}

.extracted-style-2 {
    padding-bottom: 2rem;
}



.about-why-card-placeholder {
    height: 350px;
    background: linear-gradient(135deg, #050505, #1a1a1a);
    border-radius: 20px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-why-check,
.footer-links a:hover,
.logo span {
    color: var(--primary);
}

.about-why-title {
    margin-bottom: 0.5rem;
    color: #fff;
}

.about-why-desc {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.methodology-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.text-center {
    text-align: center;
}

.methodology-number {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary);
}

.industries-header,
.tools-subtitle {
    margin-bottom: 3rem;
}

.tools-wrapper {
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.tool-badge {
    font-size: 1.2rem;
    border: 1px solid #333;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.about-team-placeholder-wrapper {
    border: 0;
    background: var(--bg-surface);
}

.about-team-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #111, #222);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-padding-top {
    padding-top: 0;
}

.services-process-section {
    background: var(--bg-surface);
    margin-top: 5rem;
}

.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.process-card {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.process-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.faq-title-main {
    margin-bottom: 3rem;
    text-align: center;
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}



.faq-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-box-services {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}



.faq-title {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.empresa-hero-section {
    background: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)), url('../img/hero-empresa.jpg');
    
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
}

.empresa-intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.empresa-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}



.empresa-value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.empresa-value-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.empresa-value-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.empresa-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.empresa-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.empresa-stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}



.card-link-hover:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.card-link-hover .card-title,
.nav-links a.active,
.nav-links a:hover {
    color: var(--text-main);
}

.empresa-categories-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.empresa-category-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.empresa-diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    
    gap: 3rem;
}

.diff-block h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.diff-block p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.diff-list {
    list-style: none;
    padding: 0;
}

.diff-list-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.diff-check {
    color: var(--primary);
    font-weight: bold;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-table td,
.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.comparison-arrow {
    color: var(--primary);
    font-size: 1.2rem;
    text-align: center;
}

.bg-surface {
    background: var(--bg-surface);
}

.consultoria-image-placeholder,
.industry-image-placeholder {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.industry-image-placeholder.min-h-400 {
    min-height: 400px;
}

.consultoria-image-text,
.cta-content,
.industry-image-text {
    position: relative;
    z-index: 2;
}

.consultoria-image-overlay,
.industry-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1), transparent 70%);
}





.about-btn,
.diff-list-mt,
.extracted-style-19,
.list-mt-1-5 {
    margin-top: 1.5rem;
}

.diff-list-item.align-start,
.extracted-style-20,
.list-item-start {
    align-items: flex-start;
}

.check-mt-4,
.diff-check.mt-4px,
.extracted-style-21 {
    margin-top: 4px;
}

.table-responsive {
    overflow-x: auto;
}

.col-45,
.col-width-45 {
    width: 45%;
}

.col-10,
.col-width-10 {
    width: 10%;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

.blog-thumbnail-placeholder {
    height: 200px;
    background: #222;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumbnail-icon {
    font-size: 3rem;
}

.blog-tag {
    font-size: 0.8rem !important;
}

.blog-entry-title {
    margin-top: 0.5rem;
}

.article-header {
    background-color: var(--bg-surface);
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-body);
}

.article-content h2 {
    font-size: 2rem;
    color: var(--text-heading);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content ol,
.article-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--accent-primary);
    background: rgba(37, 99, 235, 0.05);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    color: var(--text-heading);
}

.article-table-wrapper {
    overflow-x: auto;
    margin: 2.5rem 0;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    font-size: 1rem;
}

.article-table td,
.article-table th {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.article-table th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.article-table tr:last-child td,
.comparison-table tr:last-child td {
    border-bottom: none;
}

.highlight-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.highlight-box h4 {
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.article-content p,
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-submit-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}





.info-card .icon {
    font-size: 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #fff;
}

.info-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-link-white {
    color: white;
}

.comparison-table td,
.contact-link-muted {
    color: var(--text-muted);
}

.map-container {
    flex-grow: 1;
    
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    padding: 0;
    height: 100%;
}

.contact-iframe {
    border: 0;
    min-height: 300px;
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) contrast(115%);
    mix-blend-mode: normal;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 350px;
    }

}


/* ================================ */
/* FAMILIAS FUNDAMENTALES SECCIONES */
/* ================================ */

.bg-dark {
    background: #0a0a0a;
}

.relative {
    position: relative;
}

.border-t {
    border-top: 1px solid var(--border-color);
}


/* ================================ */
/* FAMILIAS FUNDAMENTALES DE CARDS  */
/* ================================ */

.card-transparent {
    background: transparent !important;
}

.card-interactive {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100px;
    cursor: pointer;
}

.card-side {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
}

.card-center {
    text-align: center;
}

.card-ghost {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.card-ghost:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Utilities */
.p-0 { padding: 0 !important; }
.p-md { padding: 1.5rem !important; }
.card-padding-lg { padding: 2.5rem !important; }
.overflow-hidden { overflow: hidden !important; }
.text-left { text-align: left !important; }
.mb-1 { margin-bottom: 1rem !important; }
.border-0 { border: none !important; }
.grid-cards-1 { display: grid; grid-template-columns: 1fr; gap: 1rem; }

/* ================================ */
/* FAMILIA FUNDAMENTAL DE IMAGENES  */
/* ================================ */
.img-featured {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ================================ */
/* PÁGINA DE CONTACTO (LAYOUT PREMIUM) */
/* ================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    background: #111;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.2rem;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.contact-trust-badge {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
}

.contact-link-white {
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link-white:hover {
    color: var(--primary);
}

.contact-link-muted {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-link-muted:hover {
    color: var(--primary);
}

.contact-map-card {
    height: 350px;
    border-radius: 16px;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* Breadcrumbs Stickys */
.breadcrumb-sticky {
    position: sticky;
    top: var(--header-height, 80px);
    z-index: 990;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    margin: 0 !important;
    font-size: 0.8rem;
    
    width: 100% !important;
    max-width: 100% !important;
    left: 0;
    border-radius: 0 !important;
    
    /* Fórmula matemática exacta para alinear el texto de una barra de 100% width con un .container de 90% (max 1280px) */
    padding-left: calc(max(5vw, 50vw - 640px) + 1rem) !important;
    padding-right: calc(max(5vw, 50vw - 640px) + 1rem) !important;
}

@media (max-width: 1250px) {
    :root {
        --header-height: 120px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 145px;
    }
    .breadcrumb-sticky {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Global Sticky Wrapper */
.sticky-wrapper {
    display: contents;
}
