
.section-soluciones-one {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solution-card-one {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
    line-height: 1.2;
}

.solution-desc {
    font-size: 0.95rem;
    font-weight: 400;
    color: #666666;
    margin-bottom: 1.5rem;
    opacity: 1;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
    line-height: 1.6;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    width: 100%;
    z-index: 2;
    position: relative;
}

.solution-list li {
    color: #555555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.solution-list li::before {
    content: "•";
    color: #0ea5e9;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0ea5e9;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: auto;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.solution-link i, .solution-link iconify-icon {
    transition: transform 0.3s ease;
}

.solution-link:hover i, .solution-link:hover iconify-icon {
    transform: translateX(4px);
}

.solution-card-one:hover {
    background: #101235;
    border-color: #0ea5e9;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(14, 165, 233, 0.15);
}

.solution-card-one:hover .solution-title {
    color: #ffffff;
}

.solution-card-one:hover .solution-desc {
    color: rgba(255, 255, 255, 0.7);
}

.solution-card-one:hover .solution-list li {
    color: rgba(255, 255, 255, 0.6);
}

.solution-card-one:hover .solution-link {
    color: #0ea5e9;
}

.star-ribbon-one {
    position: absolute;
    top: 0;
    right: 2rem;
    width: 32px;
    height: 48px;
    background: #0ea5e9;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
    color: black;
    z-index: 5;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
    transition: transform 0.3s ease;
}

.solution-card-one:hover .star-ribbon-one {
    transform: translateY(-5px);
}

.logo-placeholder {
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.solution-card-one:hover .logo-placeholder {
    opacity: 1;
    filter: grayscale(0%);
    filter: brightness(0) invert(1);
}

.one-solution-modal {
    --one-modal-bg: #ffffff;
    --one-modal-panel: #f3f9ff;
    --one-modal-border: rgba(16, 18, 53, 0.08);
    --one-modal-text: #101235;
    --one-modal-muted: #4b5563;
    --one-modal-accent: #0ea5e9;
}

.one-solution-modal .modal-dialog {
    max-width: min(940px, 94vw);
    margin-inline: auto;
}

.one-solution-modal .one-modal-content {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fafdff 100%);
    border: 1px solid var(--one-modal-border);
    border-radius: 24px;
    box-shadow: 0 28px 64px -38px rgba(16, 18, 53, 0.5);
    padding: 0;
    max-height: 90dvh;
    overflow: hidden;
}

.one-solution-modal .one-modal-content::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 55%, #7dd3fc 100%);
}

.one-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem 0.5rem;
}

.one-modal-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(14, 165, 233, 0.22);
    background: rgba(14, 165, 233, 0.08);
    color: #0369a1;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.one-modal-close.btn-close {
    position: static;
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid rgba(16, 18, 53, 0.18);
    border-radius: 999px;
    opacity: 1;
    background-size: 0.72rem;
}

.one-modal-close.btn-close:hover {
    border-color: rgba(14, 165, 233, 0.5);
    background-color: rgba(14, 165, 233, 0.08);
}

.one-modal-body {
    padding: 0.2rem 1.75rem 1.75rem;
    overflow-y: auto;
}

.one-modal-hero {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.one-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0369a1;
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.16), rgba(14, 165, 233, 0.08));
    border: 1px solid rgba(14, 165, 233, 0.2);
    flex: 0 0 auto;
}

.one-modal-title {
    margin: 0;
    color: var(--one-modal-text);
    font-size: clamp(1.45rem, 1.9vw, 1.9rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.one-modal-lead {
    margin: 0.8rem 0 0;
    color: var(--one-modal-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.one-modal-panel {
    border: 1px solid rgba(14, 165, 233, 0.16);
    border-radius: 16px;
    padding: 1rem 1rem 0.55rem;
    background: var(--one-modal-panel);
}

.one-modal-subtitle {
    margin: 0 0 0.75rem;
    color: #101235;
    font-size: 1rem;
    font-weight: 600;
}

.one-modal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 0.8rem;
}

.one-modal-list li {
    position: relative;
    margin: 0;
    padding: 0.62rem 0.7rem 0.62rem 2.05rem;
    color: #1f2937;
    font-size: 0.9rem;
    line-height: 1.42;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 18, 53, 0.1);
    border-radius: 12px;
}

.one-modal-list li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0.72rem;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid var(--one-modal-accent);
    transform: translateY(-50%);
}

.one-modal-list li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.03rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--one-modal-accent);
    transform: translateY(-50%);
}

.one-modal-actions {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 18, 53, 0.12);
}

.one-modal-cta {
    min-height: 44px;
}

.one-modal-cta iconify-icon {
    transition: transform 0.2s ease;
}

.one-modal-cta:hover iconify-icon {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .one-solution-modal .modal-dialog {
        max-width: min(92vw, 760px);
    }

    .one-modal-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .one-modal-header {
        padding: 0.95rem 0.95rem 0.25rem;
    }

    .one-modal-body {
        padding: 0.2rem 0.95rem 1.1rem;
    }

    .one-modal-hero {
        gap: 0.75rem;
    }

    .one-modal-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .one-modal-title {
        font-size: 1.25rem;
    }

    .one-modal-lead {
        font-size: 0.93rem;
        line-height: 1.55;
    }

    .one-modal-subtitle {
        font-size: 0.94rem;
    }

    .one-modal-list li {
        font-size: 0.86rem;
    }
}

.gradient-wrapper-one {

    background: linear-gradient(180deg, #0c2e44 0%, #000000 100%);
    position: relative;
    padding-top: 1px;
}

.certificaciones-one {
    padding: 6rem 0;

    background-color: transparent;
    position: relative;
    overflow: visible;
}

.section-soluciones-one + .gradient-wrapper-one {
    margin-top: -1px;
}

.cert-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cert-title span.blue-highlight {
    color: #0ea5e9;
    display: block;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cert-desc {
    color: rgba(255,255,255,0.5);
    line-height: 1.625;
    margin-bottom: 0;
    font-size: 1rem;
}

.cert-desc strong.text-white {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.cert-grid-one {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .cert-grid-one {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cert-card-one {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
}

.cert-card-one:hover {

}

.cert-img-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 1rem;
}

.cert-img-container img {

    width: 100%;
    height: 100%;
    object-fit: contain;

    transition: transform 0.3s ease;
}

.cert-card-one:hover .cert-img-container img {
    transform: scale(1.05);
}

.cert-label {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: auto;
}

.one-cert-inline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow: visible;
    padding: 0.2rem 0.1rem 0.9rem;
}

.one-cert-item {
    position: relative;
    width: 186px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.25s ease;
    cursor: pointer;
    z-index: 1;
}

.one-cert-item:hover {
    transform: translateY(-3px);
    z-index: 15;
}

.one-cert-box {
    width: 100%;
    height: 206px;
    border: 1px solid rgba(3, 23, 59, 0.14);
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -18px rgba(3, 23, 59, 0.5);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.one-cert-item:hover .one-cert-box {
    border-color: rgba(3, 23, 59, 0.28);
    box-shadow: 0 16px 34px -22px rgba(3, 23, 59, 0.6);
}

.one-cert-icon {
    width: 74%;
    height: 74%;
    object-fit: contain;
}

.one-cert-name {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    color: #1e1e1f;
    min-height: 2.6rem;
}

.one-cert-tooltip {
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    width: 286px;
    transform: translateY(-50%) translateX(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    background: #03173b;
    color: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1rem;
    box-shadow: 0 16px 36px -16px rgba(3, 23, 59, 0.7);
    z-index: 12;
}

.one-cert-tooltip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -7px;
    width: 12px;
    height: 12px;
    background: #03173b;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-50%) rotate(45deg);
}

.one-cert-item-left .one-cert-tooltip {
    left: auto;
    right: calc(100% + 12px);
    transform: translateY(-50%) translateX(-8px);
}

.one-cert-item-left .one-cert-tooltip::before {
    left: auto;
    right: -7px;
    border-left: none;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.one-cert-item:hover .one-cert-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.one-cert-item-left:hover .one-cert-tooltip {
    transform: translateY(-50%) translateX(0);
}

.one-cert-tooltip h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.4rem;
    letter-spacing: -0.2px;
}

.one-cert-tooltip p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.one-awards-title {
    margin: 0 0 1.4rem;
    font-size: 1.28rem;
    font-weight: 600;
    color: #03173b;
    text-align: center;
}

.one-awards-carousel .certificado .ct-imagen {
    width: 212px;
    height: 126px;
    margin: 0 auto;
    border: 1px solid rgba(3, 23, 59, 0.12);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 22px -18px rgba(3, 23, 59, 0.5);
    padding: 1rem;
}

.one-awards-carousel .certificado .ct-imagen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.one-awards-carousel .certificado h3 {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    margin-top: 0.65rem;
}

.cta-one-blue {
    position: relative;
    padding: 8rem 0;

    background: transparent;
    overflow: hidden;
    text-align: center;
    margin-bottom: -1px;
}

body footer.site-footer {
    margin-top: 0 !important;
    background-color: #000000;
}

.cta-one-blue .waves-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
    bottom: 0;
}

.cta-content-one {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading-one {
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .cta-heading-one {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .one-cert-inline {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1.2rem;
    }

    .one-cert-item {
        width: 164px;
    }

    .one-cert-box {
        height: 178px;
    }

    .one-cert-tooltip {
        top: calc(100% + 10px);
        left: 50%;
        right: auto;
        width: min(76vw, 320px);
        transform: translateX(-50%) translateY(8px);
    }

    .one-cert-tooltip::before {
        top: -7px;
        left: 50%;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateX(-50%) rotate(135deg);
    }

    .one-cert-item-left .one-cert-tooltip {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(8px);
    }

    .one-cert-item-left .one-cert-tooltip::before {
        right: auto;
        top: -7px;
        left: 50%;
        border-right: none;
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateX(-50%) rotate(135deg);
    }

    .one-cert-item:hover .one-cert-tooltip,
    .one-cert-item-left:hover .one-cert-tooltip {
        transform: translateX(-50%) translateY(0);
    }

    .one-awards-title {
        font-size: 1.15rem;
    }
}

.cta-heading-one span {
    background: linear-gradient(to bottom, #0ea5e9, #7dd3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text-one {
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cyan-glow {
    background: #0ea5e9;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
}

.btn-cyan-glow:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
    color: white;
}

.btn-outline-glow {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
}

.btn-outline-glow:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

.one-page .one-section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(14, 165, 233, 0.18);
    background: rgba(14, 165, 233, 0.06);
    color: #0284c7;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.one-page .one-solutions-section .text-center {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.one-page .one-solutions-section .titulo2 {
    font-size: clamp(2.35rem, 3.2vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.045em !important;
    margin-bottom: 0.95rem !important;
    text-wrap: balance;
}

.one-page .one-section-bridge {
    max-width: 40rem !important;
    font-size: 1.02rem;
    line-height: 1.82;
    color: #64748b !important;
}

.one-page .solution-card-one {
    min-height: 430px;
    padding: 2.65rem 2.35rem 2.2rem;
}

.one-page .solution-title {
    font-size: clamp(1.42rem, 1.7vw, 1.74rem);
    line-height: 1.14;
    letter-spacing: -0.03em !important;
    margin-bottom: 1rem;
    max-width: 14ch;
    text-wrap: balance;
}

.one-page .solution-desc {
    font-size: 0.99rem;
    line-height: 1.74;
    color: #64748b;
    margin-bottom: 1.8rem;
}

.one-page .solution-link {
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.one-page .cert-title {
    font-size: clamp(2.4rem, 3.3vw, 3.7rem);
    line-height: 1.02;
    letter-spacing: -0.05em !important;
    margin-bottom: 1rem;
    max-width: 12ch;
    text-wrap: balance;
}

.one-page .cert-title span.blue-highlight {
    margin-bottom: 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.one-page .cert-desc {
    max-width: 38rem;
    font-size: 1rem;
    line-height: 1.88;
    color: #64748b !important;
}

.one-page .one-cert-name {
    margin-top: 1rem;
    font-size: 1.02rem;
    line-height: 1.35;
    letter-spacing: -0.01em !important;
}

.one-page .one-cert-tooltip h4 {
    letter-spacing: -0.02em !important;
}

.one-page .one-awards-title {
    margin-bottom: 1.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em !important;
    color: #0284c7;
}

.one-page .one-awards-carousel .certificado h3 {
    font-size: 0.95rem;
    line-height: 1.4;
    letter-spacing: -0.01em !important;
    color: #0f172a;
}

.one-page .certificaciones-one,
.one-page .cta-one-blue {
    margin-top: 0;
    margin-bottom: 0;
}

.one-page .certificaciones-one {
    padding-bottom: 3rem;
}

.one-page .one-awards-row {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
}

.one-page .cta-one-blue {
    padding-top: 4rem;
}

.one-page .cta-heading-one {
    font-size: clamp(1.95rem, 3vw, 2.85rem);
    line-height: 1.08;
    letter-spacing: -0.028em !important;
    max-width: 22ch;
    margin: 0 auto 1.15rem;
    text-wrap: balance;
}

.one-page .cta-heading-one span {
    display: block;
    margin-top: 0;
}

.one-page .cta-heading-one span + span {
    margin-top: 0.24rem;
}

.one-page .cta-text-one {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.08rem;
    line-height: 1.82;
    color: #64748b !important;
}

.one-page .one-modal-tag,
.one-page .one-modal-subtitle {
    letter-spacing: 0.16em !important;
    font-weight: 700;
}

.one-page .one-modal-title {
    line-height: 1.08;
    letter-spacing: -0.03em !important;
}

.one-page .one-modal-lead {
    font-size: 1rem;
    line-height: 1.72;
}

.one-page .one-modal-subtitle {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: #0284c7;
}

@media (max-width: 991px) {
    .one-page .cert-title,
    .one-page .cta-heading-one,
    .one-page .one-solutions-section .titulo2 {
        max-width: none;
    }

    .one-page .solution-card-one {
        min-height: 380px;
    }
}
