/* NEOMED — LANDING CSS */

/*  1) Variables y base */
:root {
    --primary-color: #00cfff;
    --secondary-color: #0056b3;
    --accent-color: #ffc107;
    --dark-color: #1a1a1a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --gray: #f5f5f5;
    --text-color: #333;

    --gradient-bg: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);

    /* Efecto “escalones” (si se usa) */
    --stair-duration: 900ms;
    --stair-gap: 230ms;
    --stair-offset: 28px;

    /* Icono toggler navbar (hamburguesa Blanca) */
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}




/* Reset mínimo y base tipográfica */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* 2) Utilidades y animaciones */

/* Utilidad: fade-up “lento” (se usa en textos/CTA) */
@keyframes fadeUpSlow {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up-slow {
    animation: fadeUpSlow 1s ease-out both;
}

/* Flotación sutil genérica (usada en pantallas/íconos) */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

/* Staggers utilitarios */
.stagger-1 {
    animation-delay: .1s;
}

.stagger-2 {
    animation-delay: .2s;
}

.stagger-3 {
    animation-delay: .3s;
}

.stagger-4 {
    animation-delay: .4s;
}

/* Respeto “reducir movimiento” */
@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* 3) Navbar */
.navbar {
    background: rgba(0, 207, 255, .95);
    transition: all .3s ease;
}

.navbar.scrolled {
    background: var(--primary-color);
    box-shadow: 0 2px 20px rgba(0, 207, 255, .3);
}

.navbar.fixed-top {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}

.navbar-brand img {
    height: 65px;
    transition: transform .3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg) !important;
}

.nav-link {
    position: relative;
    color: var(--white);
    font-weight: 600;
    padding: 6px 14px;
    transition: color .3s ease;
    z-index: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 80%;
    width: 0;
    height: 9%;
    background: var(--white);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    transition: width .3s ease, background .3s ease;
    z-index: -1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #fff;
}

/* asegura legibilidad en hover */
.nav-link.active {
    color: rgb(221, 219, 219) !important;
}

.nav-mobile {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .5rem;
    padding: .25rem 0;
}

.nav-mobile .navbar-brand {
    justify-self: center;
}

/* Padding superior cuando usas nav fija (opcional) */
body.has-fixed-nav {
    padding-top: 72px;
}

/* 4) Hero + Mock */
.hero {
    background: var(--gradient-bg);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:transparent"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23grad)"/><circle cx="800" cy="600" r="400" fill="url(%23grad)"/></svg>') no-repeat center/cover;
    opacity: .1;
}

/* Contenedor del mock: laptop + 3 “pantallas” */
.hero-mock.pro {
    position: relative;
    width: min(900px, 95%);
    margin: 0 auto;
    aspect-ratio: 16/10;
    perspective: 1200px;
    transform-style: preserve-3d;
    isolation: isolate;
    /* Tilt controlado por JS (landing.js) */
    --rx: 0deg;
    --ry: 0deg;
    transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
    transition: transform .35s ease;
}

/* Brillo en diagonal al pasar el mouse (desktop) */
.hero-mock.pro::after {
    content: "";
    position: absolute;
    inset: -12% -28% 42% -28%;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .28) 50%, transparent 65%);
    transform: translateX(-130%);
    transition: transform 1.8s cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
}

.hero-mock.pro:hover::after {
    transform: translateX(130%);
}

/* Elementos base del mock */
.device {
    position: absolute;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform .65s cubic-bezier(.2, .8, .2, 1),
        filter .65s cubic-bezier(.2, .8, .2, 1),
        opacity .35s ease;
    will-change: transform, filter, opacity;
}

.device--laptop {
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%) scale(.8);
    transform-origin: bottom center;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, .18));
}

/* “Pantallas” (capas) */
.device--screen {
    position: absolute;
    /* estas 3 variables posicionan el “escenario” */
    --stage-top: 20%;
    --stage-left: 50%;
    --stage-width: 68%;
    left: var(--stage-left);
    top: var(--stage-top);
    width: var(--stage-width);
    height: auto;
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 0 !important;
    transform: translate(-50%, -50%) translateX(var(--tx, 0)) translateY(var(--ty, 0)) rotate(var(--rot, 0deg)) scale(.88);
    opacity: .95;
    z-index: 1;
    filter: none;
    animation: floatSoft 8.4s ease-in-out infinite;
    transition: opacity .55s ease, filter .55s ease, z-index .3s ease;
}

/* Offsets finos por capa (ligero “abanico”) */
.screen--left {
    --tx: -12px;
    --rot: -1.2deg;
}

.screen--center {
    --tx: 0px;
    --rot: .1deg;
}

.screen--right {
    --tx: 12px;
    --rot: 1.1deg;
}

/* Profundidad diferenciada */
.screen--left {
    left: -6%;
    top: 8%;
    width: 76%;
    transform: translateZ(30px) rotate(-2.4deg);
    z-index: 2;
    opacity: .95;
}

.screen--center {
    left: 14%;
    top: 14%;
    width: 76%;
    transform: translateZ(80px) rotate(.3deg);
    z-index: 4;
}

.screen--right {
    left: 38%;
    top: 20%;
    width: 76%;
    transform: translateZ(55px) rotate(2.1deg);
    z-index: 3;
}

/* Sombra bajo el grupo (glow elíptico) */
.hero-mock.pro::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 8%;
    height: 18%;
    background: radial-gradient(40% 80% at 50% 100%, rgba(0, 0, 0, .35), transparent 70%);
    filter: blur(12px);
    z-index: 1;
    pointer-events: none;
}

/* Hover parallax (solo desktop con mouse) */
@media (hover:hover) {
    .hero-mock.pro:hover .screen--left {
        transform: translateY(-8px) translateZ(60px) rotate(-3deg);
    }

    .hero-mock.pro:hover .screen--center {
        transform: translateY(-12px) translateZ(100px) rotate(0deg);
    }

    .hero-mock.pro:hover .screen--right {
        transform: translateY(-10px) translateZ(75px) rotate(2.6deg);
    }
}

/* Estado base/no-activas/activa + crossfade (para el rotador del JS) */
.device--screen {
    opacity: 1;
    /* filter: blur(2px); */
    filter: none;
    z-index: 2;
}

.device--screen.is-behind {
    opacity: .9;
    /* filter: blur(1.2px); */
    /* box-shadow: 0 16px 44px rgba(0, 0, 0, .16), 0 6px 16px rgba(0, 0, 0, .10); */
}

.device--screen.is-active {
    opacity: 1;
    filter: none;
    z-index: 10;
    /* box-shadow: 0 28px 80px rgba(0, 0, 0, .28), 0 10px 26px rgba(0, 0, 0, .12); */
    /* box-shadow: none; */
}

@keyframes heroSwapIn {
    0% {
        opacity: 0;
        filter: blur(12px) saturate(1.04);
    }

    60% {
        opacity: 1;
        filter: blur(0);
    }

    100% {
        opacity: 1;
        filter: none;
    }
}

@keyframes heroSwapOut {
    0% {
        opacity: 1;
        filter: none;
    }

    100% {
        opacity: .78;
        filter: blur(1.2px) saturate(.98);
    }
}

.device--screen.swap-in {
    animation: heroSwapIn .6s cubic-bezier(.2, .8, .2, 1) both;
}

.device--screen.swap-out {
    animation: heroSwapOut .5s ease both;
}

/* 5) Botones primarios */
.btn-Pruebalo,
.btn-light,
.btn-warning {
    background: linear-gradient(90deg, #ffcc33 0%, #ff8c2b 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    transition: all .3s ease;
    box-shadow: 0 4px 10px rgba(255, 140, 43, .3);
}

.btn-Pruebalo {
    font-size: 16px;
    padding: 12px 30px;
}

.btn-warning {
    font-size: 13px;
    padding: 8px 20px;
}

.btn-Pruebalo:hover {
    background: linear-gradient(90deg, #ffd84d 0%, #ff9c3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 43, .4);
    color: var(--dark-color);
}

.btn-Pruebalo:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(255, 140, 43, .3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

/* 6) Encabezados de sección */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* 7) Características (features) */
.features-compact {
    background: #fff;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width:992px) {
    .features-list {
        grid-template-columns: 1fr;
        text-align: justify;
    }
}

.feature-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1rem;
    align-items: start;
    background: #fff;
    border-radius: 5px;
    padding: 1.25rem;
    border: 1px solid rgba(0, 207, 255, .10);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(0, 207, 255, .16);
    border-color: rgba(0, 207, 255, .25);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(90deg, #ffcc33 0%, #ff8c2b 100%);
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 10px 20px rgba(255, 140, 43, .25);
}

.feature-card__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin: .1rem 0 .35rem;
}

.feature-card__text {
    color: #4b5563;
    line-height: 1.55;
    font-size: .98rem;
    margin: 0;
}

.features-list::after {
    content: "";
    display: block;
    height: 1px;
    margin-top: .25rem;
    opacity: .6;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 207, 255, .18) 30%, rgba(0, 207, 255, .18) 70%, rgba(0, 0, 0, 0) 100%);
}

/* 8) Organización (org-*) */
.org-enterprise {
    padding: clamp(1rem, 2vw, 4rem) 0;
    background: #fff;
    overflow: hidden;
}

.org-title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 50px !important;
    color: var(--dark-color);
}

.org-title span {
    color: var(--primary-color);
}

.org-sub {
    color: #495057;
    max-width: 58ch;
    margin-bottom: 1rem;
}

.org-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: .75rem;
}

.org-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, .06);
    font-weight: 600;
    color: #3f3f3f;
}

.org-chip i {
    color: var(--primary-color);
}

.org-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .45rem;
}

.org-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: #2f2f2f;
    flex-wrap: wrap;
}

.org-item i {
    color: #16a34a;
    margin-top: .2rem;
    flex-shrink: 0;
}

.org-item .label {
    font-weight: 700;
    color: #111;
}

.org-item .desc {
    color: #2f2f2f;
}

.org-mock {
    position: relative;
    min-height: 10px;
}

.org-mock-agenda {
    position: relative;
    min-height: 10px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
}

.org-layer {
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    left: -24px;
    right: -24px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
    filter: drop-shadow(0 24px 60px rgba(0, 207, 255, .25));
    transform: rotate(-2deg);
}

.org-layer--bg {
    bottom: -10px;
}

.org-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    margin: 0;
    padding: .85rem;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
    transform: translateY(0) rotate(-.5deg);
    transition: transform .35s ease, box-shadow .35s ease;
}

.org-card:hover {
    transform: translateY(-6px) rotate(0deg);
    box-shadow: 0 36px 90px rgba(0, 0, 0, .12);
}

.org-kpi {
    position: absolute;
    background: #fff;
    color: #111;
    font-weight: 700;
    padding: .45rem .7rem;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.org-kpi i {
    color: var(--primary-color);
}

.kpi-b {
    right: -10px;
    bottom: 16px;
}

/*  9) Testimonios / Carrusel */
#testimonios {
    background-color: var(--primary-color);
    padding-top: 4rem !important;
    padding-bottom: 6rem !important;
    max-width: 100% !important;
}

#clientesCarousel {
    position: relative;
    overflow: visible;
}

#clientesCarousel .carousel-inner {
    overflow: hidden;
}

#clientesCarousel .carousel-item {
    padding: 0;
}

.client-card {
    text-align: center;
    transition: transform .22s ease;
}

.client-card:hover {
    transform: translateY(-6px);
}

.client-photo {
    width: 280px;
    height: 280px;
    margin: 10px auto 16px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 30% 30%, #eef6ff, #e7eef7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: #555;
    font-size: .9rem;
    box-shadow: 0 18px 38px rgba(16, 24, 40, .12), inset 0 0 0 8px #fff;
    overflow: hidden;
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.client-name {
    font-weight: 800;
    color: var(--white);
    margin: 8px 0 4px;
}

.client-role {
    color: #102a43;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .85rem;
}

.algunos {
    font-weight: 500 !important;
    font-size: 18px;
}

/* Controles grandes y visibles */
#clientesCarousel .carousel-control-prev,
#clientesCarousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: none;
    border: none;
    z-index: 10;
}

#clientesCarousel .carousel-control-prev {
    left: -100px;
}

#clientesCarousel .carousel-control-next {
    right: -100px;
}

#clientesCarousel .carousel-control-prev-icon,
#clientesCarousel .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-size: 60% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, .4);
    border-radius: 50%;
}

/* Fade más suave en clientesCarousel 
#clientesCarousel.carousel.carousel-fade .carousel-item {
  transition: opacity .45s ease-in-out;
}*/


/* 10) Planes (pricing) */
.pricing-card {
    background: #fff;
    border-radius: 1px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 207, 255, .2);
}

/* Icono circular (animado) */
.pricing-card .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: var(--primary-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12), inset 0 0 0 6px #fff;
    animation: planFloat 3.4s ease-in-out infinite;
    transition: background-color .3s ease, transform .3s ease, color .3s ease;
}

.pricing-card .feature-icon i {
    font-size: 1.6rem;
    line-height: 1;
}

.pricing-card:hover .feature-icon {
    background: rgba(0, 207, 255, .85);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}



@keyframes planFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

/* Suaviza el cambio */
.pricing-card .price .fw-bold {
  transition: color .25s ease;
}

/* Cambia SOLO el color de la letra del precio al hover o seleccionado */
.pricing-card:hover .price .fw-bold,
.pricing-card.selected .price .fw-bold {
  color: var(--primary-color) !important; /* o usa var(--primary-color) si prefieres azul */
}

.pricing-card:hover .btn.btn-outline-primary,
.pricing-card.selected .btn.btn-outline-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(0,207,255,.35);
}


/* Retrasos escalonados (1..4) */
#planes .row>div:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

#planes .row>div:nth-child(2) .feature-icon {
    animation-delay: .25s;
}

#planes .row>div:nth-child(3) .feature-icon {
    animation-delay: .5s;
}

#planes .row>div:nth-child(4) .feature-icon {
    animation-delay: .75s;
}

.price {
    color: var(--dark-color);
    font-size: 45px !important;
}

/* 11) Contacto */
#contacto {
    background: var(--gradient-bg);
    position: relative;
}

.form-control {
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, .9);
    transition: all .3s ease;
}

.form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .3);
}

/* 12) Botón Volver Arriba */
#btnVolverArriba {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #ffcc33 0%, #ff8c2b 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 1000;
}

#btnVolverArriba.show {
    opacity: 1;
    visibility: visible;
}

#btnVolverArriba:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 207, 255, .3);
}

/* 13) Footer */
.site-footer {
    --footer-bg: #0b1320;
    --footer-text: #e6eef5;
    --footer-muted: #a9b6c5;
    --footer-accent: #00cfff;
    background: var(--footer-bg);
    color: var(--footer-text);
    position: relative;
}

.site-footer .footer-top {
    padding-top: clamp(2rem, 3vw, 3rem);
    padding-bottom: clamp(2rem, 3vw, 3rem);
}

.site-footer .footer-brand img {
    height: 56px;
    width: auto;
}

.site-footer .footer-text {
    font-size: .95rem;
    color: var(--footer-muted);
    margin: .75rem 0 0;
}

.site-footer .footer-heading {
    font-weight: 800;
    letter-spacing: .02em;
    font-size: .95rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: .9rem;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: .4rem;
}

.site-footer .footer-links a {
    color: var(--footer-muted);
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
}

.site-footer .footer-links a:hover {
    color: #fff;
    opacity: 1;
}

.site-footer .social-list {
    list-style: none;
    padding: 0;
    margin: .75rem 0 0;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    color: #fff;
}

.site-footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-footer .social-link:hover {
    background: var(--footer-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 207, 255, .25);
}

.site-footer .pay-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .9rem;
    align-items: center;
}

.site-footer .pay-badges img {
    height: 28px;
    width: auto;
    transition: transform .2s ease;
}

.site-footer .pay-badges img:hover {
    transform: translateY(-1px);
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: .9rem 0;
    font-size: .92rem;
    color: var(--footer-muted);
}

.site-footer .footer-bottom .bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer .footer-bottom .legal-links {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.site-footer .legal-links a {
    color: var(--footer-muted);
    text-decoration: none;
}

.site-footer .legal-links a:hover {
    color: #fff;
}

/* 14) Responsive  */

/* ≥320px ajustes base móviles */
@media (min-width:320px) {
    .navbar {
        padding-top: .35rem;
        padding-bottom: .35rem;
    }

    .navbar-brand img {
        height: 36px;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .btn.btn-warning.btn-sm {
        padding: .5rem .9rem;
        font-size: .9rem;
        border-radius: 999px !important;
        white-space: nowrap;
    }

    /* Controles carrusel un poco más chicos dentro */
    #clientesCarousel .carousel-control-prev,
    #clientesCarousel .carousel-control-next {
        width: 56px;
    }

    #clientesCarousel .carousel-control-prev-icon,
    #clientesCarousel .carousel-control-next-icon {
        width: 48px;
        height: 48px;
    }

    #clientesCarousel .carousel-control-prev {
        left: -10px;
    }

    #clientesCarousel .carousel-control-next {
        right: -10px;
    }

    .btn-Pruebalo,
    .btn-light {
        margin-bottom: 60px;
    }
}

/* ≤1199.98px (laptop/tablet horizontal) */
@media (max-width:1199.98px) {
    .device--laptop {
        bottom: -22%;
        left: 50%;
        transform: translateX(-50%) scale(.8);
    }

    .screen--left {
        left: 10%;
        top: 6%;
        width: 70%;
    }

    .screen--center {
        left: 20%;
        top: 8%;
        width: 74%;
    }

    .screen--right {
        left: 30%;
        top: 8%;
        width: 70%;
    }
}

/* ≤1024.98px (intermedio) */
@media (max-width:1024.98px) {
    .device--laptop {
        bottom: -22%;
        left: 50%;
        transform: translateX(-50%) scale(.7);
    }

    .screen--left {
        left: 10%;
        top: 6%;
        width: 70%;
    }

    .screen--center {
        left: 20%;
        top: 8%;
        width: 74%;
    }

    .screen--right {
        left: 30%;
        top: 8%;
        width: 70%;
    }
}

/* ≤991.98px (tablet y abajo) */
@media (max-width:991.98px) {
    body.has-fixed-nav {
        padding-top: 58px;
    }

    .navbar {
        padding-top: .35rem;
        padding-bottom: .35rem;
    }

    .navbar .container {
        max-width: 100%;
    }

    .navbar-brand img {
        height: 70px;
    }

    .org-mock {
        min-height: 300px;
    }

    .kpi-b {
        right: -6px;
        bottom: 10px;
    }

    .client-photo {
        width: 220px;
        height: 220px;
    }

    #clientesCarousel .carousel-control-prev {
        left: -12px;
    }

    #clientesCarousel .carousel-control-next {
        right: -12px;
    }

    /* Mock en tablet: centra y reduce */
    .device--laptop {
        position: absolute;
        bottom: -16%;
        left: 20%;
        transform: translateX(-30%) scale(.97);
    }

    .screen--left,
    .screen--center,
    .screen--right {
        left: 18%;
        top: 8%;
        width: 68%;
    }

    /* Footer centrado en tablet */
    .site-footer .footer-brand-wrap {
        text-align: center;
    }

    .site-footer .footer-brand-wrap .social-list {
        justify-content: center;
    }

    .site-footer .pay-badges {
        justify-content: center;
    }

    .site-footer .footer-top .col-md-4 {
        margin-bottom: 1.25rem;
    }
}

/* 577px–767.98px: tablet chico */
@media (min-width:577px) and (max-width:767.98px) {
    .section-title {
        font-size: 2rem;
    }

    .btn-Pruebalo {
        margin-bottom: 10px;
    }

    .device--laptop {
        position: absolute;
        bottom: -10%;
        left: 8%;
        transform: translateX(-20%) scale(.9);
    }

    .screen--left,
    .screen--center,
    .screen--right {
        left: 18%;
        top: 8%;
        width: 68%;
    }
}

/* ≤575.98px: móvil */
@media (max-width:575.98px) {
    .feature-card {
        grid-template-columns: 56px 1fr;
        padding: 1rem;
        gap: .85rem;
    }

    .feature-card__icon {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }

    .feature-card__title {
        font-size: 1.05rem;
    }

    .feature-card__text {
        font-size: .95rem;
    }

    .client-photo {
        width: 180px;
        height: 180px;
    }
}

/* 413px–495px: móviles grandes vertical */
@media (min-width:413px) and (max-width:495px) {
    .device--laptop {
        position: absolute;
        bottom: 2%;
        left: 50%;
        transform: translateX(-50%) scale(.5);
    }

    .screen--left,
    .screen--center,
    .screen--right {
        left: 25%;
        top: 12%;
        width: 52%;
    }
}

/* 321px–412px: móviles medianos */
@media (min-width:321px) and (max-width:412px) {
    .device--laptop {
        margin-top: 10px;
        position: absolute;
        bottom: 2%;
        left: 50%;
        transform: translateX(-50%) scale(.5);
    }

    .screen--left,
    .screen--center,
    .screen--right {
        left: 25%;
        top: 5%;
        width: 52%;
    }
}

/* ≤320px: muy pequeñas */
@media (max-width:320px) {
    .device--laptop {
        position: absolute;
        bottom: 2%;
        left: 50%;
        transform: translateX(-50%) scale(.4);
    }

    .screen--left,
    .screen--center,
    .screen--right {
        left: 25%;
        top: 5%;
        width: 52%;
    }
}

/* 15) Redes sociales “generales” (íconos redondos fuera del footer) */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1.4rem;
    transition: background-color .3s ease, transform .3s ease;
    margin-right: 12px;
    text-decoration: none;
    animation: socialFloat 3.6s ease-in-out infinite;
}

.social-links a:hover {
    background-color: rgba(0, 207, 255, .8);
    transform: scale(1.06);
}

.social-links a i {
    line-height: 1;
}

@keyframes socialFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.social-links a:nth-child(1) {
    animation-delay: 0s;
}

.social-links a:nth-child(2) {
    animation-delay: .4s;
}

.social-links a:nth-child(3) {
    animation-delay: .8s;
}