@font-face {
    font-family: 'Share Tech Mono';
    src: url('../fonts/Share_Tech_Mono-20260325T154249Z-1-001/Share_Tech_Mono/ShareTechMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/Space_Grotesk-20260325T154250Z-1-001/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Space Grotesk', sans-serif;
}

.background-matrix {
    position: relative;
    background-color: #000;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    color: #fff;
    background-image: url(../img/background.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.background-matrix .row {
    position: relative;
    z-index: 1;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
    .navbar:not(.is-solid):not(.is-light) {
        background-color: transparent !important;
        border-bottom: none;
        box-shadow: none;
    }
}

.navbar.is-solid {
    background-color: rgba(0, 0, 0, 0.92) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.navbar.is-light {
    background-color: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 46, 96, 0.12);
    box-shadow: 0 8px 24px rgba(15, 46, 96, 0.08);
}

.navbar.is-light.navbar-dark .nav-link {
    color: #0f2e60 !important;
}

.navbar.is-light.navbar-dark .nav-link:hover,
.navbar.is-light.navbar-dark .nav-link:focus,
.navbar.is-light.navbar-dark .nav-link.active {
    color: #f18821 !important;
}

.navbar.is-light .navbar-toggler-icon {
    filter: invert(1);
}

.navbar.is-light.navbar-dark .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 46, 96, 0.12);
}

.navbar.is-light.navbar-dark .dropdown-item {
    color: #0f2e60;
}

.navbar.is-light.navbar-dark .dropdown-item:hover,
.navbar.is-light.navbar-dark .dropdown-item:focus,
.navbar.is-light.navbar-dark .dropdown-item.active {
    background-color: rgba(241, 136, 33, 0.12);
    color: #f18821;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 10px 15px !important;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #f18821 !important;
}

.navbar-dark .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.navbar-dark .dropdown-item {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.55rem 1.25rem;
}

.navbar-dark .dropdown-item:hover,
.navbar-dark .dropdown-item:focus,
.navbar-dark .dropdown-item.active {
    background-color: rgba(241, 136, 33, 0.15);
    color: #f18821;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .navbar-nav .dropdown-menu {
        border: none;
        background: transparent;
        padding-left: 0.5rem;
    }
}

.img-logo {
    height: 35px;
    width: auto;
}

@media (min-width: 768px) {
    .img-logo {
        height: 45px;
    }
}

p {
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 767.98px) {
    p {
        font-size: 1rem;
        font-weight: inherit;
    }
}

@media (min-width: 768px) {
    p {
        font-size: 2rem;
    }
}

.text-white {
    color: white;
}

.text-orange {
    color: #f18821;
}

.text-red {
    color: #fe0001;
}

.text-description {
    font-weight: 200;
    color: white;
    font-size: 1rem;
}

.btn-see {
    background: linear-gradient(45deg, #f7c071, #4b63fc);
    background-size: 200% auto;
    background-position: left center;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-position 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease,
                color 0.3s ease;
    color: white;
    width: auto;
    max-width: 100%;
    height: auto;
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 8px 20px rgba(75, 99, 252, 0.25), 0 4px 10px rgba(247, 192, 113, 0.15);
    will-change: transform, box-shadow, background-position;
    
    /* Animation settings */
    --glow-primary: rgba(75, 99, 252, 0.25);
    --glow-secondary: rgba(247, 192, 113, 0.15);
    --glow-primary-hover: rgba(75, 99, 252, 0.45);
    --glow-secondary-hover: rgba(247, 192, 113, 0.25);
    animation: cta-pulse 3.5s infinite ease-in-out;
}

.btn-see-wide {
    width: 100%;
    max-width: 25rem;
}

a:has(> .btn-see) {
    display: block;
    width: fit-content;
    max-width: 100%;
    text-decoration: none;
}

@media (min-width: 768px) {
    .btn-see {
        font-size: 1rem;
    }
}

@media (max-width: 991.98px) {
    a:has(> .btn-see) {
        width: 100%;
    }

    .btn-see,
    .btn-see-wide {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        white-space: normal;
        word-break: break-word;
        padding: 12px 16px;
        font-size: 0.82rem;
        letter-spacing: 0.2px;
    }
}

.btn-see:hover {
    animation: none !important;
    transform: translateY(-3px) scale(1.02);
    background-position: right center;
    box-shadow: 0 15px 30px rgba(75, 99, 252, 0.4), 0 6px 15px rgba(247, 192, 113, 0.25);
    opacity: 1;
    color: white;
}

.btn-see:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 20px rgba(75, 99, 252, 0.25), 0 4px 10px rgba(247, 192, 113, 0.15);
}

@keyframes cta-pulse {
    0% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 6px 16px var(--glow-primary, rgba(255, 255, 255, 0.1)), 
                    0 3px 8px var(--glow-secondary, rgba(255, 255, 255, 0.05));
    }
    40% {
        transform: scale(1.03) rotate(0deg);
        box-shadow: 0 12px 28px var(--glow-primary-hover, rgba(255, 255, 255, 0.2)), 
                    0 6px 14px var(--glow-secondary-hover, rgba(255, 255, 255, 0.1));
    }
    44% {
        transform: scale(1.03) rotate(-1.5deg);
    }
    48% {
        transform: scale(1.03) rotate(1.5deg);
    }
    52% {
        transform: scale(1.03) rotate(-1.5deg);
    }
    56% {
        transform: scale(1.03) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 6px 16px var(--glow-primary, rgba(255, 255, 255, 0.1)), 
                    0 3px 8px var(--glow-secondary, rgba(255, 255, 255, 0.05));
    }
}

/* Global Premium Button Transitions & Animations */
.btn:not(.btn-terminal), 
button:not(.navbar-toggler):not(.btn-terminal), 
.xentro-tab,
input[type="submit"] {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.3s ease, 
                border-color 0.3s ease, 
                color 0.3s ease, 
                filter 0.3s ease;
    will-change: transform;
}

.btn:not(.btn-terminal):hover, 
button:not(.navbar-toggler):not(.btn-terminal):hover, 
.xentro-tab:hover,
input[type="submit"]:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn:not(.btn-terminal):active, 
button:not(.navbar-toggler):not(.btn-terminal):active, 
.xentro-tab:active,
input[type="submit"]:active {
    transform: translateY(-1px) scale(0.98);
}

/* Specific buttons brand colors glow shadows and animations */
.btn-whatsapp {
    --glow-primary: rgba(37, 211, 102, 0.25);
    --glow-secondary: rgba(37, 211, 102, 0.15);
    --glow-primary-hover: rgba(37, 211, 102, 0.45);
    --glow-secondary-hover: rgba(37, 211, 102, 0.25);
    animation: cta-pulse 3.5s infinite ease-in-out;
    animation-delay: 0.5s; /* stagger */
    box-shadow: 0 8px 20px var(--glow-primary);
}
.btn-whatsapp:hover {
    animation: none !important;
    box-shadow: 0 12px 25px var(--glow-primary-hover) !important;
}

.btn-email {
    --glow-primary: rgba(26, 26, 46, 0.25);
    --glow-secondary: rgba(26, 26, 46, 0.15);
    --glow-primary-hover: rgba(26, 26, 46, 0.45);
    --glow-secondary-hover: rgba(26, 26, 46, 0.25);
    animation: cta-pulse 3.5s infinite ease-in-out;
    animation-delay: 1s; /* stagger */
    box-shadow: 0 8px 20px var(--glow-primary);
}
.btn-email:hover {
    animation: none !important;
    box-shadow: 0 12px 25px var(--glow-primary-hover) !important;
}

.btn-ia {
    background-size: 200% auto;
    background-position: left center;
    --glow-primary: rgba(75, 99, 252, 0.25);
    --glow-secondary: rgba(247, 192, 113, 0.15);
    --glow-primary-hover: rgba(75, 99, 252, 0.45);
    --glow-secondary-hover: rgba(247, 192, 113, 0.25);
    animation: cta-pulse 3.5s infinite ease-in-out;
    animation-delay: 1.5s; /* stagger */
    box-shadow: 0 8px 20px var(--glow-primary);
}
.btn-ia:hover {
    animation: none !important;
    background-position: right center !important;
    box-shadow: 0 12px 25px var(--glow-primary-hover) !important;
}

.btn-contact-submit {
    background-size: 200% auto;
    background-position: left center;
    --glow-primary: rgba(75, 99, 252, 0.25);
    --glow-secondary: rgba(247, 192, 113, 0.15);
    --glow-primary-hover: rgba(75, 99, 252, 0.45);
    --glow-secondary-hover: rgba(247, 192, 113, 0.25);
    animation: cta-pulse 3.5s infinite ease-in-out;
    animation-delay: 0.75s; /* stagger */
    box-shadow: 0 8px 20px var(--glow-primary);
}
.btn-contact-submit:hover {
    animation: none !important;
    background-position: right center !important;
    box-shadow: 0 12px 25px var(--glow-primary-hover) !important;
}

/* Terminal Ubuntu Styles */
.terminal-window {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-family: 'Share Tech Mono', monospace;
    height: 300px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

@media (min-width: 992px) {
    .terminal-window {
        height: 350px;
        margin-top: 50px;
    }
}

@media (max-width: 991.98px) {
    .terminal {
        display: none !important;
    }
}

.terminal-header {
    background: rgba(64, 64, 64, 0.9);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    position: relative;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.btn-terminal {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.btn-terminal.close { background-color: #df4b33; }
.btn-terminal.minimize { background-color: #f2f2f2; opacity: 0.3; }
.btn-terminal.maximize { background-color: #f2f2f2; opacity: 0.3; }

.terminal-title {
    color: #d6d6d6;
    font-size: 1rem;
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    pointer-events: none;
}

.terminal-body {
    padding: 15px;
    color: #ffffff;
    font-size: 1rem;
    overflow-y: auto;
    flex-grow: 1;
}

/* Global `p` usa 1.5rem/2rem; forzar 1rem solo dentro de la terminal */
.terminal-body p {
    font-size: 1rem;
}

.text-green { color: #87ff5f; font-weight: bold; }
.text-blue { color: #5fafff; font-weight: bold; }

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent; }
    50% { color: #ffffff; }
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #300a24;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #5c5c5c;
    border-radius: 4px;
}

/* Ticker / Publicity Styles */
.publicity {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(241, 136, 33, 0.1);
    border-top: 1px solid rgba(241, 136, 33, 0.3);
    padding: 10px 0;
    overflow: hidden;
    z-index: 10;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
}

.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 72s linear infinite;
    color: #f18821;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.35s ease, text-shadow 0.35s ease, filter 0.35s ease;
}

@media (min-width: 768px) {
    .ticker-text {
        font-size: 1.2rem;
    }
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.publicity:hover {
    background: rgba(241, 136, 33, 0.2);
    box-shadow: 0 -6px 24px rgba(241, 136, 33, 0.35);
    transform: translateY(-2px);
}

.publicity:hover .ticker-text {
    color: #ffd56a;
    text-shadow: 0 0 10px rgba(255, 213, 106, 0.85), 0 0 18px rgba(241, 136, 33, 0.8);
    filter: saturate(1.2);
    animation-duration: 84s;
}

/* Projects Carousel & Cards */
.projects {
    background-color: #000;
}

.project-card {
    background-color: transparent;
    height: auto;
    max-width: 280px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card {
    cursor: pointer;
}

.solution-card.active {
    box-shadow: 0 0 0 2px #f18821;
    transform: translateY(-5px);
}

.solution-card.active img {
    filter: grayscale(0%);
}

.solution-featured {
    transition: opacity 0.25s ease;
}

.solution-featured.is-updating {
    opacity: 0.65;
}

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

.project-card .card-body {
    color: white;
    padding: 1rem;
}

.project-card .card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.project-card .card-text {
    font-weight: 200;
    font-size: 0.75rem;
}

.project-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
    height: 140px;
    object-fit: cover;
}

.project-card:hover img {
    filter: grayscale(0%);
}

.text-blue {
    color: #5fafff;
    font-weight: bold;
}

/* Custom Dash Indicators */
.custom-indicators {
    bottom: -3rem;
}

.custom-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    background-color: #666;
    border: none;
    border-radius: 2px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.custom-indicators .active {
    background-color: #f18821 !important;
    width: 50px;
    opacity: 1;
}

.text-description-devs {
    color: #0f2e60;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

@media (min-width: 768px) {
    .text-description-devs {
        font-size: 2rem;
    }
}

.text-orange-dev {
    color: #f18821;
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-description-devs-2 {
    color: #0f2e60;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title {
    color: #f18821
}

.text-title-who {
    color: #0f2e60;
    font-weight: bold;
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .text-title-who {
        font-size: 1.5rem;
    }
}

.background-alert {
    background-image: url(../img/alert.webp);
    background-color: black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

@media (min-width: 992px) {
    .background-alert {
        height: 100vh;
    }
}

.alert {
    color: #fe0001;
    text-align: center;
    letter-spacing: 2px;
    font-size: 3rem;
}

@media (min-width: 768px) {
    .alert {
        font-size: 2rem;
    }
}

@media (min-width: 1200px) {
    .alert {
        font-size: 2rem;
    }
}

.alert-text {
    color: white;
    text-align: center;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .alert-text {
        font-size: 3rem;
    }
}

.text-alert {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .text-alert {
        font-size: 1.5rem;
    }
}

.text-breaking {
    color: #4fabe7;
    font-weight: bold;
    letter-spacing: 2px;
}

.text-description-devs-3 {
    color: white;
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breaking-news-section .text-breaking {
    text-align: center;
}

.breaking-news-section .text-description-devs-3 {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .text-description-devs-3 {
        font-size: 1.2rem;
    }
}

/* Enterprises Logo Ticker */
.logo-ticker {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    background: transparent;
}

@media (min-width: 768px) {
    .logo-ticker {
        padding: 60px 0;
    }
}

.logo-track {
    display: flex;
    width: calc(150px * 12);
    animation: scrollLogos 20s linear infinite;
}

@media (min-width: 768px) {
    .logo-track {
        width: calc(250px * 12);
        animation-duration: 30s;
    }
}

.logo-item {
    width: 100px;
    height: 60px;
    margin: 0 20px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .logo-item {
        width: 180px;
        height: 100px;
        margin: 0 40px;
    }
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-150px * 6)); }
}

@media (min-width: 768px) {
    @keyframes scrollLogos {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-250px * 6)); }
    }
}

.logo-ticker:hover .logo-track {
    animation-play-state: paused;
}

.background-footer {
    background-image: url(../img/footer.webp);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px 0;
    color: #0f2e60;
}

.text-footer, .text-footer-list {
    color: #0f2e60;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .text-footer, .text-footer-list {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

.text-footer-list {
    padding-left: 1.2rem;
}

.text-footer-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.text-footer-list a:hover {
    color: #f18821;
}

.background-black {
    min-height: 50vh;
    background-color: black;
}

/* Helper classes */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.backgournd-team {
    position: relative;
    background-image: none;
    min-height: clamp(640px, 86vh, 920px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.backgournd-team::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/landing.png);
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

.backgournd-team::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 14rem;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 45%,
        #ffffff 100%
    );
    z-index: 0;
    pointer-events: none;
}

.backgournd-team > .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 1.75rem;
}

.backgournd-team-details {
    padding-top: 1.5rem !important;
    margin-top: 0 !important;
}

@media (max-width: 991.98px) {
    .backgournd-team {
        min-height: 0;
        align-items: stretch;
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .backgournd-team::before {
        background-image: none;
        background: linear-gradient(
            180deg,
            #d8e3f0 0%,
            #e8eef6 42%,
            #f4f7fb 100%
        );
        background-size: auto;
    }

    .backgournd-team::after {
        display: none;
    }

    .backgournd-team > .container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .backgournd-team-details {
        padding-top: 1.75rem !important;
    }
}

.background-cto {
    background-image: url(../img/cto.webp);
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-xentro {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    filter: grayscale(50%);
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
    margin: 0 auto;
}

.img-xentro:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
    .somos-hero-title,
    .hero-title,
    .auto-hero-title,
    .crm-hero-title,
    .cyber-hero-title,
    .xentro-hero-title,
    .section-title-dark,
    .section-title-light,
    .escala-title,
    .personas-title,
    .diferencia-title,
    .auto-title-light,
    .auto-integrate-title,
    .auto-difference-title,
    .crm-title-light,
    .crm-cta-title,
    .cyber-title-top,
    .cyber-title-light,
    .cyber-contact-title,
    .response-title,
    .response-subtitle,
    .cyber-cta-title,
    .xentro-title-light,
    .xentro-features-title,
    .xentro-modules-title,
    .xentro-modules-subtitle,
    .xentro-cta-title,
    .xentro-contact-title {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .somos-hero-title,
    .hero-title,
    .auto-hero-title,
    .crm-hero-title,
    .cyber-hero-title,
    .xentro-hero-title,
    .section-title-dark,
    .section-title-light,
    .escala-title,
    .personas-title,
    .diferencia-title,
    .auto-title-light,
    .auto-integrate-title,
    .auto-difference-title,
    .crm-title-light,
    .crm-cta-title,
    .cyber-title-top,
    .cyber-title-light,
    .cyber-contact-title,
    .response-title,
    .response-subtitle,
    .cyber-cta-title,
    .xentro-title-light,
    .xentro-features-title,
    .xentro-modules-title,
    .xentro-modules-subtitle,
    .xentro-cta-title,
    .xentro-contact-title,
    .xentro-problem .section-title-dark,
    .cyber-problem .section-title-dark,
    h3.title,
    .text-breaking,
    .text-description-devs {
        font-size: 1.55rem !important;
        line-height: 1.2 !important;
    }

    .title.fs-4,
    .module-title,
    .feature-title-xentro,
    .service-title,
    .generico-title,
    .auto-value-title {
        font-size: 1.15rem !important;
        line-height: 1.25 !important;
    }

    .text-description-devs-2 {
        font-size: 0.85rem !important;
        letter-spacing: 1px;
    }

    .background-matrix .container > .row > .col-lg-6 > p.text-white {
        font-size: 1.2rem !important;
        line-height: 1.35 !important;
    }

    .alert {
        font-size: 1.45rem !important;
    }

    .alert-text {
        font-size: 1.15rem !important;
    }

    .text-description,
    .text-description-devs-3,
    .text-title-who,
    .text-orange-dev,
    .text-alert,
    .text-footer,
    .text-footer-list,
    [class*="-hero-subtitle"],
    [class*="-subtitle"]:not(.response-subtitle):not(.xentro-modules-subtitle),
    .section-subtitle-orange,
    [class*="-desc"],
    [class*="-body"],
    [class*="-eyebrow"],
    [class*="-icon-label"],
    [class*="-tagline"],
    [class*="-note"]:not(.contact-note),
    .personas-body,
    .personas-icon-label,
    .escala-body,
    .generico-desc,
    .generico-tagline,
    .eterno-label,
    .eterno-tagline,
    .diferencia-list li,
    .contact-label,
    .contact-value,
    .contact-note,
    .feature-desc-xentro,
    .module-desc,
    .service-desc,
    .xentro-problem-subtitle,
    .xentro-features-subtitle,
    .chaos-list li,
    .chaos-text,
    .auto-value-desc,
    .integrate-sub,
    .integrate-main,
    .example-value {
        font-size: 1rem !important;
    }
}

.projects-section {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

@media (max-width: 991.98px) {
    .double-cap,
    .none-pipeline {
        display: none !important;
    }
}

/* Sticky CTA bar (CRM, ERP, Desarrollo a la medida) */
body.has-sticky-cta {
    padding-bottom: var(--sticky-cta-height, 5.75rem);
}

body.has-sticky-cta .background-footer {
    padding-bottom: calc(40px + var(--sticky-cta-height, 5.75rem));
}

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1025;
    background: #0f2e60;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 24px rgba(15, 46, 96, 0.28);
    padding: 0.75rem 0;
}

.sticky-cta-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.sticky-cta-bar__text {
    min-width: 0;
}

.sticky-cta-bar__headline {
    margin: 0;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.35;
}

.sticky-cta-bar__subheadline {
    margin: 0.2rem 0 0;
    font-weight: 400;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
}

.sticky-cta-bar__action {
    flex-shrink: 0;
    display: block;
    width: auto;
    max-width: none;
    text-decoration: none;
}

.sticky-cta-bar__action .btn-see {
    font-size: 0.78rem;
    padding: 0.55rem 1.1rem;
    white-space: nowrap;
    width: auto !important;
    max-width: none !important;
}

@media (max-width: 767.98px) {
    body.has-sticky-cta {
        padding-bottom: var(--sticky-cta-height, 9rem);
    }

    .sticky-cta-bar__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .sticky-cta-bar__action {
        width: 100%;
    }

    .sticky-cta-bar__action .btn-see {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (min-width: 768px) {
    .sticky-cta-bar {
        padding: 0.85rem 0;
    }

    .sticky-cta-bar__headline {
        font-size: 1rem;
    }

    .sticky-cta-bar__subheadline {
        font-size: 0.875rem;
    }

    .sticky-cta-bar__action .btn-see {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }
}