/*
Theme Name:     CodeStudio
Theme URI:      https://codestudio.com.py/
Description:    Tema oficial de CodeStudio - Soluciones Digitales de Alto Impacto.
Author:         Nestor Morel
Author URI:     https://codestudio.com.py/
Version:        2.3.0
Text Domain:    codestudio
Domain Path:    /languages
Language:       es_ES
*/

:root {
    --primary: #02273E;
    --primary-dark: #011b2c;
    --primary-light: #0a4a75;
    --primary-gradient: #02273E;
    --success: #06B6D4;
    --success-gradient: #06B6D4;
    --danger: #F43F5E;
    --danger-gradient: linear-gradient(135deg, #F43F5E 0%, #E11D48 100%);
    --warning: #F59E0B;
    --warning-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --bg-body: #ffffff;
    --bg-gradient: #f8fafc;
    --surface: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.95);
    --text-main: #02273E;
    --text-secondary: #475569;
    --border-radius: 0;
    --border-radius-lg: 0px;
    --border-radius-sm: 0px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 8px 25px rgba(6, 182, 212, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-blur: blur(10px);
}

body {
    background-color: var(--bg-body);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.9rem;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #02273E;
}

.site-content {
    overflow: visible !important;
    width: 100%;
}





























.navbar-brand img,
.custom-logo {
    max-height: 50px !important;
    width: auto !important;
}

.site-header {
    height: auto !important;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.nav-link-custom {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    color: #334155 !important;
    transition: all 0.25s ease;
    position: relative;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 8px;
    /* Un poco más arriba */
    left: 50%;
    width: 0;
    height: 1.5px;
    /* Más fina */
    background: #02273E;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link-custom:hover {
    color: #02273E !important;
}

.nav-link-custom:hover::after,
.current-menu-item .nav-link-custom::after,
.current-menu-ancestor .nav-link-custom::after,
.active .nav-link-custom::after {
    width: 60%;
}

.nav-link-cta {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    color: #334155 !important;
    background: transparent;
    border: none;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
    position: relative;
}

.nav-link-cta::after {
    content: '';
    position: absolute;
    bottom: 8px;
    /* Un poco más arriba para que no pegue con el borde */
    left: 50%;
    width: 0;
    height: 1.5px;
    background: #02273E;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link-cta:hover {
    color: #02273E !important;
}

.nav-link-cta:hover::after {
    width: 70%;
}

.pricing-card-home {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #06B6D4;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card-home:hover::before {
    transform: scaleX(1);
}

.pricing-card-home:hover {
    border-color: #011b2c;
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25);
}

.pricing-card-home.featured {
    border: none;
}

.pricing-card-home.featured::before {
    transform: scaleX(1);
}

.pricing-badge-home {
    position: absolute;
    top: 0;
    right: 0;
    background: #02273E;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 6px 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-name-home {
    color: #02273E;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-price-home {
    margin-bottom: 1.5rem;
}

.pricing-price-home .price-old-home {
    color: #9ca3af;
    font-size: 0.9rem;
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.pricing-price-home .price-main-home {
    color: #02273E;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.pricing-price-home .price-period-home {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 4px;
}

.pricing-features-home {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.pricing-features-home li {
    color: #4b5563;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f9fafb;
}

.pricing-features-home li:last-child {
    border-bottom: none;
}

.pricing-features-home li i {
    color: #06B6D4;
    flex-shrink: 0;
    font-size: 0.7rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    border-radius: 0;
}

.pricing-button-home {
    display: block;
    background: #02273E;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    border: none;
}

.pricing-button-home:hover {
    background: transparent;
    color: #02273E;
}

@media (max-width: 767.98px) {
    .pricing-card-home {
        padding: 1.5rem 1rem;
    }

    .pricing-name-home {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .pricing-price-home .price-main-home {
        font-size: 1.5rem;
    }

    .pricing-features-home li {
        font-size: 0.75rem;
    }

    .pricing-button-home {
        padding: 12px 16px;
        font-size: 0.7rem;
    }
}

.btn-productos-ver {
    display: inline-block;
    background: #02273E;
    color: #fff;
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.btn-productos-ver:hover {
    background: transparent;
    color: #02273E;
}

.btn-productos-contacto {
    display: inline-block;
    background: transparent;
    color: #02273E;
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.btn-productos-contacto:hover {
    border-color: #25d366;
    color: #25d366;
}

.producto-nav-btn {
    width: 48px;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #02273E;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.producto-nav-btn.sm {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
}

.producto-nav-btn:hover {
    background: #02273E;
    color: #fff;
    border-color: #02273E;
    transform: translateX(3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.swiper-button-prev-prod:hover {
    transform: translateX(-3px);
}

.producto-nav-btn.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.seccion-productos-overlap {
    margin-top: -120px;
    position: relative;
    z-index: 10;
    overflow-x: visible;
}

@media (min-width: 992px) {
    .swiper-productos {
        padding-right: 20px;
        overflow: visible;
    }
}


.producto-card {
    background: #ffffff;
    border: none;
    padding: 1.5rem 1.25rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    opacity: 1 !important;

    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    border-radius: 0 !important;

    overflow: hidden;

}

.producto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;

    height: 100%;

    background: #f1f5f9;

    transition: background 0.35s ease, width 0.3s;
}

.producto-card:hover::before {
    background: #02273E;

    width: 6px;

    height: 100%;
}

.producto-card:hover {
    border-color: #02273E;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15);
    transform: translateY(-3px);
}

.producto-card.featured {
    border-color: #011b2c;
}

.producto-card.featured::before {
    height: 100%;
}

.producto-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.producto-etiqueta {
    position: absolute;
    top: 0;
    right: 0;
    background: #02273E;

    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 8px 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom-left-radius: 12px;

    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}


.swiper-button-prev-prod,
.swiper-button-next-prod {
    width: 45px;
    height: 45px;
    border-radius: 0 !important;

    background: #fff;
    border: none;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.swiper-button-prev-prod:hover,
.swiper-button-next-prod:hover {
    background: #02273E;
    color: #fff;
    border-color: #02273E;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.producto-titulo {
    color: #1e293b;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.producto-precio-wrap {
    margin-bottom: 1rem;
}

.producto-precio-old {
    color: #9ca3af;
    font-size: 0.9rem;
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.producto-precio {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: block;
}

.producto-precio small {
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
}

.producto-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.producto-features li {
    color: #64748b;
    font-size: 0.8rem;
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.producto-features li i {
    color: #06B6D4;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    border-radius: 0;
    flex-shrink: 0;
}

.producto-btn,
.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #02273E;
    color: #fff;
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.producto-btn:hover,
.pricing-button:hover {
    background: transparent;
    color: #02273E;
}

.producto-btn-secundario,
.pricing-button-secundario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #4b5563;
    padding: 12px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.producto-btn-secundario:hover,
.pricing-button-secundario:hover {
    background: #f8fafc;
    color: #02273E;
    border-color: #cbd5e1;
}

@media (max-width: 991.98px) {
    .producto-card-destacado .producto-card-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .producto-card {
        padding: 1.5rem;
    }

    .producto-titulo {
        font-size: 0.95rem;
    }

    .producto-precio {
        font-size: 1.5rem;
    }

    .btn-productos-ver,
    .btn-productos-contacto {
        width: 100%;
        text-align: center;
    }
}

.no-border {
    border: none !important;
}

.shadow-tech {
    box-shadow: var(--shadow-soft);
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-tight {
    letter-spacing: -1px;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.texto-cyan,
.text-info {
    color: var(--primary) !important;
}

.shadow-green-glow {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    border: none;
    transition: all 0.3s ease;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

h1.display-1 {
    font-size: 2.8rem !important;
}

h2.display-5 {
    font-size: 2rem !important;
}

.form-control,
.form-select {
    background-color: #f8fafc;
    border: none;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(6, 182, 212, 0.25);
}

.form-label {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.btn {
    border-radius: 0 !important;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    background: var(--primary-gradient);
}

.btn-outline-primary {
    border: none;
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 0;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
}

.text-gradient-dynamic {
    color: var(--primary);
    animation: gradient-shift 3s ease infinite;
    display: inline-block;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.typing-cursor::after {
    content: '|';
    animation: blink 1s step-start infinite;
    color: var(--text-main);
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.cursor-inline,
.cursor-unico {
    color: #02273E;
    font-weight: 400;
    animation: blink 1s step-start infinite;
    margin-left: 2px;
}

.texto-variable-box {
    display: inline-block;
    min-width: 200px;
}

#texto-mecanografia {
    color: #02273E !important;
    font-weight: 800 !important;
    display: inline !important;
    opacity: 1 !important;
    visibility: visible !important;
}


.bg-light-gray {
    background-color: #f8fafc !important;
}

.text-dark-blue {
    color: #02273E !important;
}

.text-dark-slate {
    color: #1e293b !important;
}

.badge-dark-slate {
    background: #1e293b !important;
    color: #fff !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
}

.rounded-xl {
    border-radius: 0 !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.text-almost-black {
    color: #333 !important;
}


.footer-logo-img {
    height: 70px !important;
    width: auto !important;
}

.footer-slogan {
    letter-spacing: 2px !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
}

.text-xs-custom {
    font-size: 0.7rem !important;
}


.bg-pattern-dots {
    background: radial-gradient(#02273E 1px, transparent 1px) 0 0 / 20px 20px !important;
}

.tracking-wide {
    letter-spacing: 2px !important;
}


.header-shadow {
    box-shadow: 0 10px 35px rgba(2, 39, 62, 0.15) !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.header-logo-img {
    max-height: 50px !important;
    width: auto !important;
    vertical-align: middle !important;
}

.brand-text {
    font-size: 1.7rem !important;
    letter-spacing: -0.5px !important;
}


.min-h-70vh-flex {
    min-height: 70vh !important;
    display: flex !important;
    align-items: center !important;
}

.text-404-gradient {
    font-size: 8rem !important;
    color: #02273E !important;
    letter-spacing: -5px !important;
    animation: pulse404 2s ease-in-out infinite;
}

.max-w-500-centered {
    max-width: 500px !important;
    margin: 0 auto !important;
}

.max-w-400-centered {
    max-width: 400px !important;
    margin: 0 auto !important;
}

.input-radius-left {
    border-radius: 0 !important;
    border-color: #e2e8f0 !important;
}

.btn-radius-right {
    border-radius: 0 !important;
}

.error-404-section {
    background: linear-gradient(180deg, #ffffff 0%, #fff 100%);
}

.error-icon {
    animation: float404 3s ease-in-out infinite;
}

.useful-links a {
    transition: all 0.2s ease;
}

.useful-links a:hover {
    color: #02273E !important;
}

@keyframes pulse404 {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes float404 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.product-details-container {
    padding: 50px 0;
}

.product-gallery-area {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    background: #fff;
    cursor: crosshair;
    border: none;
}

.main-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.main-image-wrapper:hover img {
    transform: scale(1.5);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumb-item {
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    height: 80px;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: #02273E;
}

.product-info-col {
    padding-left: 40px;
}

.product-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #06B6D4;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #02273E;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-price {
    font-size: 2rem;
    color: #02273E;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 400;
}

.price-tag {
    font-size: 0.9rem;
    background: #06B6D4;
    color: #fff;
    padding: 5px 12px;
    border-radius: 0;
    font-weight: 600;
    vertical-align: middle;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #334155;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #06B6D4;
}

.btn-adquirir {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #02273E;
    color: white;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: auto;
    min-width: 220px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-adquirir:hover {
    background: transparent;
    color: #02273E;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-volver {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: #fff;
    border: none;
    border-radius: 0;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-volver:hover {
    border-color: #02273E;
    color: #02273E;
    background: #f8fafc;
}

.btn-volver i {
    margin-right: 6px;
    font-size: 0.8rem;
}

.btn-adquirir i {
    font-size: 1.4rem;
    margin-right: 10px;
}

.btn-help-text {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #64748b;
}

.related-products-section {
    background: #f8fafc;
    padding: 80px 0;
    margin-top: 60px;
}

.related-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    border: none;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #06B6D4;
}

.related-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.related-body {
    padding: 20px;
}

@media (max-width: 768px) {
    .product-info-col {
        padding-left: 12px;
        margin-top: 30px;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 1.5rem;
    }
}

.portfolio-category-badge {
    display: inline-block;
    background: #02273E;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 0;
    margin-right: 8px;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.portfolio-category-badge i {
    font-size: 0.65rem;
    opacity: 0.8;
}

.codestudio-edit-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #000;
    color: #fff;
    width: 25px;
    height: 25px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    z-index: 1000;
    opacity: 0.2;
    transition: opacity 0.2s;
}

.codestudio-edit-btn:hover {
    opacity: 1;
}

.editable-container {
    position: relative;
}

.seccion-portafolio-clean {
    background: #ffffff;
    background-image:
        radial-gradient(#e5e7eb 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff, #f8fafc);
    background-size: 40px 40px, 100% 100%;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.tarjeta-modulo-software {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.tarjeta-modulo-software:hover {
    transform: translateY(-10px);
    border-color: #02273E;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tarjeta-modulo-software::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    width: 40px;
    height: 8px;
    background: radial-gradient(circle, #cbd5e1 3px, transparent 3px);
    background-size: 12px 8px;
    opacity: 0.5;
}

.decoracion-codigo {
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 6rem;
    font-weight: 900;
    color: #f1f5f9;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.btn-software-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #02273E;
    color: #fff;
    border-radius: 0;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-software-cta:hover {
    background: #02273E;
    color: #fff;
    transform: scale(1.02);
}

.subtitulo-software {
    color: #02273E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

.tarjeta-portafolio-naranja {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
}

.tarjeta-portafolio-naranja:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(249, 115, 22, 0.4) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.relleno-seccion {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 991.98px) {
    .relleno-seccion {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .display-1 {
        font-size: 2.5rem !important;
    }

    .display-3 {
        font-size: 2rem !important;
    }

    .display-4 {
        font-size: 1.8rem !important;
    }

    .tarjeta-portafolio-naranja {
        padding: 2rem !important;
    }

    .tarjeta-portafolio-naranja h3 {
        font-size: 1.5rem !important;
    }
}

.boton-borde-personalizado {
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.75rem 2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.boton-borde-personalizado:hover {
    background: currentColor;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.espaciado-portada {
    padding-top: 0;
    padding-bottom: 0;
}

.etiqueta-portada {
    font-size: 0.75rem;
    letter-spacing: 2px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.titulo-portada-responsive {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2.5px;
}

.descripcion-portada {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 550px;
    color: #4b5563;
    font-weight: 400;
    margin-bottom: 2.5rem !important;
    padding-left: 20px;
    border-left: 2px solid #1abc9c;
    /* Línea de acento premium */
    opacity: 0.9;
    letter-spacing: -0.2px;
}

.boton-portada-borde {
    background: transparent;
    color: #02273E;
    border: none;
    padding: 12px 35px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.15);
}

.boton-portada-borde:hover {
    background: #02273E;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .boton-portada-borde {
        padding: 10px 25px !important;
        font-size: 0.85rem !important;
        white-space: nowrap;
    }
}

@media (max-width: 575px) {
    .boton-portada-borde {
        padding: 10px 20px !important;
        font-size: 0.8rem !important;
        width: 100%;
        text-align: center;
    }
}

.lienzo-portada {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.altura-minima-portada {
    min-height: auto;
    padding: 30px 0 40px 0;
    display: block;
}

@media (max-width: 991px) {
    .altura-minima-portada {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.texto-cyan {
    color: #02273E;
}

.icono-xs {
    font-size: 0.6rem;
}

.contenedor-cristal {
    position: relative;
    padding: 1.5rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 0;
    border: none;
}

.tarjeta-cristal-principal {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transform: rotate(-1deg);
    width: 90%;
}

.icono-tarjeta-cristal {
    width: 60px;
    height: 60px;
    background: rgba(6, 182, 212, 0.1);
    color: #011b2c;
}

.insignia-cristal {
    top: -20px;
    right: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    animation: flotar 6s ease-in-out infinite;
}

.mini-tarjeta-cristal {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    transform: rotate(2deg);
    width: 80%;
    margin-top: -20px;
}

.caja-icono-mini {
    width: 45px;
    height: 45px;
}

.contenedor-carrusel {
    background: #fff;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.mascara-logos {
    max-width: 100%;
    width: 100%;
    overflow: hidden !important;
    overflow: clip !important;
    contain: paint;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.caja-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrusel-logos {
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.pista-carrusel-logos {
    display: flex;
    width: max-content;
    animation: desplazamiento 35s linear infinite;
    gap: 80px;
}

.diapositiva-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
}

.imagen-logo {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.diapositiva-logo:hover .imagen-logo {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes desplazamiento {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.caja-icono-filosofia {
    padding: 1rem;
    border: none;
    background-color: #f8f9fa;
    height: 100%;
}

.borde-intro-servicio {
    font-weight: 500;
}

.estructura-tarjeta-servicio {
    height: 100%;
    position: relative;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grupo-titulo-portafolio p {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.grupo-titulo-portafolio h2 {
    line-height: 1.1;
    letter-spacing: -2px;
}

.fondo-gradiente-portafolio {
    background: #02273E;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.linea-deco-portafolio {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
    pointer-events: none;
}

.modal-redondeado,
.modal-content {
    border-radius: 0 !important;
    overflow: hidden;
}

.input-modal {
    border: none;
}

.retraso-200 {
    animation-delay: 0.2s;
}

.retraso-400 {
    animation-delay: 0.4s;
}

.retraso-600 {
    animation-delay: 0.6s;
}

.retraso-800 {
    animation-delay: 0.8s;
}

.retraso-1000 {
    animation-delay: 1s;
}

.retraso-1200 {
    animation-delay: 1.2s;
}

.cursor-parpadeante {
    font-weight: 100;
    font-size: 1em;
    color: #011b2c;
    animation: parpadeo 1s infinite;
}

@keyframes parpadeo {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 1 !important;
    }
}

.aparicion-arriba {
    animation: aparicionArriba 0.8s ease-out both;
}

@keyframes aparicionArriba {
    from {
        opacity: 1 !important;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.insignia-cristal {
    animation: flotar 6s ease-in-out infinite;
}

@keyframes flotar {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.tracking-mas-ancho {
    letter-spacing: 2px;
}

.tracking-ancho {
    letter-spacing: 1px;
}

.objeto-cubrir {
    object-fit: cover;
}

.hover-servicio-nitido {
    transition: all 0.3s ease;
    border: none;
}

.hover-servicio-nitido:hover {
    border-color: #02273E;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.texto-servicio-grande {
    font-size: 1.1rem;
    line-height: 1.6;
}

.escala-hover {
    transition: transform 0.3s ease;
}

.escala-hover:hover {
    transform: scale(1.05);
}

.posicion-relativa {
    position: relative !important;
}

.desbordamiento-oculto {
    overflow: hidden !important;
    max-width: 100vw;
}

.fondo-tecnico-suave {
    background-color: #ffffff;
    background-image:
        linear-gradient(rgba(241, 245, 249, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(241, 245, 249, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
}

.fondo-tecnico-suave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, #ffffff 100%);
    pointer-events: none;
}

.z-2 {
    z-index: 2 !important;
}

.z-3 {
    z-index: 3 !important;
}

.site-footer {
    background-color: #02273E;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
    padding-top: 1rem;
    padding-bottom: 0rem;
    color: #94a3b8;
    position: relative;
    overflow: hidden;
}

.punto-disponible {
    width: 6px;
    height: 6px;
    background-color: #06B6D4;
    border-radius: 0;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 10px #06B6D4;
    animation: pulsar-disponibilidad 2s infinite;
}

@keyframes pulsar-disponibilidad {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.footer-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #02273E, transparent);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.footer-brand h3 {
    font-size: 1.75rem;
}

.tracking-tight {
    letter-spacing: -0.05em;
}

.text-cyan {
    color: #06B6D4;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
    opacity: 0.8;
}

.social-btn-group a {
    width: 45px;
    height: 45px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.social-btn-group a:hover {
    background: rgba(6, 182, 212, 0.1);
    color: #02273E;
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.2);
}

.footer-heading {
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #02273E;
    transform: translateX(5px);
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.footer-contact li {
    font-size: 0.95rem;
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.whatsapp-float {
    z-index: 9999 !important;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 0;
    box-sizing: content-box;
    border: none;
}

.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 0;
}

.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0;
    animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: #fff;
    transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #22c55e;
    display: block;
    border-radius: 0;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 0;
    position: absolute;
    box-sizing: content-box;
    border: none;
}

.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #fff;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }

    5% {
        transform: rotate(-45deg);
    }

    12% {
        transform: rotate(-405deg);
    }

    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 46px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 1 !important;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide:nth-child(1) .producto-card {
    animation-delay: 0.1s;
}

.swiper-slide:nth-child(2) .producto-card {
    animation-delay: 0.2s;
}

.swiper-slide:nth-child(3) .producto-card {
    animation-delay: 0.3s;
}

.swiper-slide:nth-child(4) .producto-card {
    animation-delay: 0.4s;
}

.seccion-portafolio-clean {
    padding: 5rem 0;
    background: #f8fafc;
}

.tarjeta-modulo-software {
    background: #ffffff;
    border: none;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
}

.tarjeta-modulo-software:hover {
    border-color: #02273E;
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.12);
    transform: translateY(-5px);
}

.tarjeta-modulo-software:nth-child(1) {
    animation-delay: 0.2s;
}

.tarjeta-modulo-software:nth-child(2) {
    animation-delay: 0.4s;
}

.decoracion-codigo {
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 6rem;
    font-weight: 900;
    color: #f1f5f9;
    opacity: 0.3;
    user-select: none;
    pointer-events: none;
}

.btn-software-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1e293b;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-software-cta:hover {
    background: #02273E;
    color: #fff;
    transform: translateX(3px);
}

.row.g-0.border.border-dark {
    border: none !important;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
}

.border-end.border-dark::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e2e8f0 20%, #e2e8f0 80%, transparent);
}

.border-bottom.border-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e2e8f0 20%, #e2e8f0 80%, transparent);
}

.hover-servicio-nitido i.fa-3x,
.hover-servicio-nitido i.fa-2x {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #02273E !important;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hover-servicio-nitido:hover i.fa-3x,
.hover-servicio-nitido:hover i.fa-2x {
    background: #02273E;
    color: #ffffff !important;
    transform: scale(1.05);
}

.servicio-card-moderna::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #02273E, #011b2c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.servicio-card-moderna:hover::before {
    transform: scaleX(1);
}

.servicio-card-moderna:hover {
    border-color: #02273E;
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.15);
    transform: translateY(-5px);
}

.servicio-header {
    margin-bottom: 1.5rem;
}

.servicio-icono {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.servicio-icono i {
    font-size: 1.75rem;
    color: #02273E;
    transition: all 0.3s ease;
}

.servicio-card-moderna:hover .servicio-icono {
    background: #02273E;
    transform: scale(1.05);
}

.servicio-card-moderna:hover .servicio-icono i {
    color: #ffffff;
}

.servicio-badge {
    background: #1e293b;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.servicio-content {
    margin-bottom: 1.5rem;
}

.servicio-titulo {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.servicio-descripcion {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.servicio-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servicio-features li {
    color: #475569;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.servicio-features li:last-child {
    border-bottom: none;
}

.servicio-features li i {
    color: #06B6D4;
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.servicio-btn {
    background: #1e293b;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.servicio-btn:hover {
    background: #02273E;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.servicio-btn i {
    transition: transform 0.3s ease;
}

.servicio-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    .servicio-card-moderna {
        padding: 1.5rem 1.25rem;
    }

    .servicio-icono {
        width: 50px;
        height: 50px;
    }

    .servicio-icono i {
        font-size: 1.5rem;
    }

    .servicio-titulo {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .servicio-card-moderna {
        padding: 1.25rem 1rem;
    }
}


.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
}