﻿:root {
    --hybrid-accent: #ee7711;
    --hybrid-header-gradient: linear-gradient(#494949, #8b8b8b);
}

/*===============HEADER===========================*/
#headerWrapper {
    background: var(--hybrid-header-gradient);
    margin: 0;
    padding: 0.5rem 0;
}

#StickyMenu > ul > li:hover,
#StickyMenu > ul > li.selected {
    background: var(--hybrid-accent);
    transition: background-color 200ms linear, border-color 200ms linear;
}

#StickyMenu span {
    font-size: 12px;
}

#ResponsiveMenu li.nav-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

    #ResponsiveMenu li.nav-item > a {
        flex: 1 1 auto;
    }

    #ResponsiveMenu li.nav-item > ul {
        flex: 1 1 100%;
        width: 100%;
    }

.rmddl {
    background: linear-gradient(#494949, #8b8b8b) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    cursor: pointer;
}

    .rmddl::after {
        content: '▼';
        display: inline-block;
        transition: transform 200ms linear;
    }

    .rmddl.rotated::after {
        transform: rotate(180deg);
    }

#ResponsiveMenu .nav-item.selected > .rmddl {
    background: #ee7711 !important;
}

#ResponsiveMenu .nav-item:hover > .rmddl {
    background: #ee7711 !important;
}

#headerWrapper .hybrid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hybrid-container {
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 2rem;
    width: 100%;
}

#headerWrapper .header-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#StickyMenu {
    display: flex;
}

    #StickyMenu > ul {
        display: flex !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        justify-content: center !important;
    }

    #StickyMenu > ul > li {
        margin: 0;
        padding: 15px;
    }

        #StickyMenu > ul > li:first-child {
            border-top-left-radius: 32px;
            border-bottom-left-radius: 32px;
        }

        #StickyMenu > ul > li:last-child {
            border-top-right-radius: 32px;
            border-bottom-right-radius: 32px;
        }

    #StickyMenu > li > ul {
        background: linear-gradient(#494949, #8b8b8b) !important;
        padding-right: 0rem !important;
        margin-left: -15px;
        border-top-right-radius: 32px;
        border-bottom-right-radius: 32px;
    }

    #StickyMenu > ul > li > a:hover {
        color: #ffffff !important;
        background: #ee7711 !important;
        -webkit-transition: background-color 200ms linear;
        -moz-transition: background-color 200ms linear;
        -moz-transition: border-color 200ms linear;
        -o-transition: background-color 200ms linear;
        -ms-transition: background-color 200ms linear;
        transition: background-color 200ms linear;
    }


    #StickyMenu > li > ul li:first-child {
        border-top-right-radius: 32px;
        overflow: hidden;
    }

    #StickyMenu > li > ul li:last-child {
        border-bottom-right-radius: 32px;
        overflow: hidden;
    }

    #StickyMenu a {
        color: var(--dnn-color-background-light, #f5f5f5);
        font-size: .89rem;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
    }

/* Escritorio (por defecto): ocultamos el botón hamburguesa */
#btn-menu2 {
    display: none;
}

.hybrid-mobile-menu {
    font-size: 40px !important;
}

@media only screen and (max-width: 992px) {
    /* Mobile/tablet: mostramos el botón hamburguesa */
    #btn-menu2 {
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* ...y ocultamos el menú de escritorio completo */
    #headerWrapper .header-sidecontent {
        display: none;
    }
}

.logo {
    background: #dddddd;
    border-radius: 40px;
}

/*===============FOOTER===========================*/
.hybrid-footer {
    background: linear-gradient(#8b8b8b, #494949);
    color: var(--dnn-color-foreground-contrast, #fff);
    margin: 0;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

    .footer-links a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
        padding: 8px 15px;
        border-radius: 5px;
    }

        .footer-links a:hover {
            color: #ee7711;
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

        .footer-links a {
            width: 100%;
            font-size: 14px;
        }
}

/*===============MOBILE-NAVBAR===========================*/
#ResponsiveMenu {
    width: 187px !important;
    background-color: #ffffff00 !important;
    display: flex;
    height: calc(100vh - 168px);
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    width: 320px;
    z-index: 100;
    -webkit-overflow-scrolling: touch;
    margin-top: 168px;
    transform: translateX(100%);
    transition: .45s;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

#ResponsiveMenu  .nav-items {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

    #ResponsiveMenu .nav-item {
        margin: 0;
        padding: 0;
    }

    #ResponsiveMenu a {
        color: #ffffff;
        text-decoration: none;
        display: block;
        padding: 15px;
        transition: background-color 200ms linear;
    }

#ResponsiveMenu .nav-item:hover > a,
#ResponsiveMenu .nav-item.selected > a,
#ResponsiveMenu .selected > a {
    background: #ee7711 !important;
}

#ResponsiveMenu .nav-item:first-child > a {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

#ResponsiveMenu .nav-item:last-child > a {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

#ResponsiveMenu .nav-expand-content .nav-item:hover > a {
    background: #ee7711;
}

#ResponsiveMenu .nav-expand-link {
    padding: 13.5px 10px;
    transition: background-color 200ms linear;
}

    #ResponsiveMenu .nav-expand-link:hover {
        background: #ee7711;
    }

#ResponsiveMenu .nav-back-link {
    font-weight: normal;
}

    #ResponsiveMenu .nav-item a {
        background: linear-gradient(#494949, #8b8b8b) !important;
        background-color: unset !important;
        background-color: var(--dnn-color-tertiary-light, #8b8b8b) !important;
    }

    #ResponsiveMenu a {
        color: #ffffff;
        text-decoration: none;
        display: block;
        padding: 15px;
        transition: background-color 200ms linear;
        flex: 1 1 auto;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5em;
    }

    #ResponsiveMenu .nav-items > .nav-item > .nav-expand-content > .nav-items > .nav-item:first-child > a {
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
    }

    #ResponsiveMenu .nav-items > .nav-item > .nav-expand-content > .nav-items > .nav-item:last-child > a {
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
    }

.sidenav-overlay {
    z-index: 1 !important;
}

.dropdown-content {
    background: linear-gradient(#494949, #8b8b8b) !important;
    padding-right: 0rem !important;
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
}

    .dropdown-content > li > a:hover {
        background: #ee7711;
    }

    .contact-card {
        background-color: #585958;
        color: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        max-width: 400px;
        width: 100%;
        line-height: 1.25;
        text-align: center;
    }

    .contact-card h2 {
        margin: 0 0 25px 0;
        font-size: 24px;
        font-weight: 600;
        color: white;
    }

    .contact-card h3 {
        color: #ee7711;
        margin: 20px 0 10px 0;
        font-size: 24px;
        font-weight: 600;
    }

    .contact-card h4 {
        margin: 15px 0 5px 0;
        font-size: 20px;
        font-weight: 500;
        color: white;
    }

    .contact-card p {
        margin: 8px 0;
        font-size: 18px;
        color: white;
        font-weight: bold;
    }

    .contact-card a {
        color: #ee7711;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .contact-card a:hover {
            color: #ff8822;
            text-decoration: underline;
        }

.support-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #6a6b6a;
}

.contact-container {
    display: flex;
    gap: 10px;
    margin: 0 auto;
    padding: 10px;
    align-items: flex-start;
}

.map-container {
    flex: 1;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .map-container {
        width: 100%;
    }
}

.politicas {
    margin-left: 10px;
    background: #e0e0e0;
    border: 1px solid #dadce0;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    margin-bottom: 30px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

    .politicas > p {
        margin-block: 3px;
        font-weight: 400;
        font-size: 18px;
    }

    .politicas ul {
        margin-left: 40px;
        font-weight: 400;
        font-size: 18px;
    }

        .politicas ul > li {
            margin-block: 5px;
            line-height: 1.5rem;
        }

    .politicas ol {
        margin-left: 40px;
        font-weight: 400;
        font-size: 18px;
    }

        .politicas ol > li {
            margin-block: 5px;
            line-height: 1.5rem;
        }

    .politicas h4 {
        font-weight: 800;
        font-size: 22px;
    }

    .politicas h5 {
        font-size: 18px;
        font-weight: 700;
    }

    .politicas table {
        width: 100%;
        border-collapse: collapse;
        font-size: 16px;
        color: #333333;
    }

    .politicas td {
        padding: 8px 12px;
        vertical-align: top;
        border-bottom: 1px solid #ccc;
        font-weight: 400;
    }

        .politicas td:first-child {
            font-weight: bold;
            width: 30%;
            text-align: center;
        }

.politicas-header h1 {
    background: linear-gradient(#494949, #8b8b8b);
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 30px;
    font-weight: normal;
    border-radius: 15px;
}

h4,
h5,
h6 {
    line-height: 1.15 !important;
    margin-bottom: 0.5rem !important;
}

.orange_link {
    color: #ee7711 !important;
}

.politicas table {
    width: 100% !important;
    border-collapse: collapse !important;
    border-radius: 16px !important;
    font-size: 16px !important;
    color: #333333 !important;
    background-color: #c0c0c0 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.politicas td {
    padding: 8px 12px !important;
    vertical-align: top !important;
    border-bottom: 1px solid #ccc !important;
    font-weight: 400 !important;
    text-align: center !important;
    border-radius: 16px !important;
}

    .politicas td:first-child {
        font-weight: bold !important;
        width: 30% !important;
        text-align: center !important;
        background-color: #c0c0c0 !important;
        border-radius: 16px !important;
    }

.politicas th {
    background-color: #c0c0c0 !important;
    padding: 12px !important;
    text-align: center !important;
    font-weight: bold !important;
    border-bottom: 2px solid #ccc !important;
    border-radius: 16px !important;
}

.session {
    color: #0066cc;
    font-style: italic;
}

.propia {
    color: #28a745;
    font-weight: 500;
}

.politicas strong {
    font-weight: bolder !important;
}



.who-we-are * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.who-we-are {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 40px 20px;
}

    .who-we-are .who-we-are-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Sección Quienes Somos */
    .who-we-are .about-section {
        background: linear-gradient(#494949, #8b8b8b);
        padding: 60px 50px;
        border-radius: 12px;
        box-shadow: 0 2px 60px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
        margin-bottom: 40px;
    }

        .who-we-are .about-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
        }

        .who-we-are .about-section h2 {
            color: #ffffff;
            font-size: 2.5em;
            font-weight: 600;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .who-we-are .about-section p {
            color: #f0f0f0;
            font-size: 1.15em;
            line-height: 1.8;
            position: relative;
            z-index: 1;
            max-width: 100%;
        }

    /* Sección Servicios */
    .who-we-are .services-section {
        background: #ffffff;
        padding: 50px;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

        .who-we-are .services-section h2 {
            color: #2d2d2d;
            font-size: 2.5em;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .who-we-are .services-section .accent-bar {
            margin-bottom: 40px;
        }

    .who-we-are .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .who-we-are .service-item {
        display: flex;
        align-items: center;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 10px;
        border: 2px solid #e0e0e0;
        transition: all 0.3s ease;
        cursor: default;
        position: relative;
        overflow: hidden;
        text-decoration: none;
    }

        .who-we-are .service-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #ff8c00, #ffa500);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .who-we-are .service-item:hover {
            border-color: #ff8c00;
            background: #ffffff;
            box-shadow: 0 8px 25px rgba(255, 140, 0, 0.15);
            transform: translateX(5px);
        }

            .who-we-are .service-item:hover::before {
                transform: scaleY(1);
            }

    .who-we-are .service-number {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #ff8c00, #ffa500);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.2em;
        margin-right: 15px;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    }

    .who-we-are .service-name {
        color: #2d2d2d;
        font-size: 1.05em;
        font-weight: 500;
        line-height: 1.3;
    }

/* Responsive */
@media (max-width: 968px) {
    .who-we-are .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .who-we-are {
        padding: 20px 15px;
    }

        .who-we-are .about-section {
            padding: 40px 30px;
        }

        .who-we-are .services-section {
            padding: 35px 25px;
        }

            .who-we-are .about-section h2,
            .who-we-are .services-section h2 {
                font-size: 2em;
            }

        .who-we-are .services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .who-we-are .service-item {
            padding: 25px 20px;
        }

        .who-we-are .service-number {
            width: 55px;
            height: 55px;
            font-size: 1.3em;
        }

        .who-we-are .service-name {
            font-size: 1.05em;
        }
}

.services * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 3rem 1rem;
}

    .services > .container {
        max-width: 1280px;
        margin: 0 auto;
    }

        .services > .container > .header {
            text-align: center;
            margin-bottom: 3rem;
        }

            .services > .container > .header h1 {
                font-size: 2.25rem;
                font-weight: bold;
                color: #1f2937;
                margin-bottom: 1rem;
            }

            .services > .container > .header p {
                color: #4b5563;
                font-size: 1.125rem;
            }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    position: relative;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

    .pricing-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

.card-header {
    padding: 1rem 1.5rem;
    color: white;
}

    .card-header.orange-400 {
        background-color: #fb923c;
    }

    .card-header.orange-500 {
        background-color: #f97316;
    }

    .card-header.orange-600 {
        background-color: #ea580c;
    }

    .card-header h3 {
        font-size: 1.5rem;
        font-weight: bold;
        text-align: center;
    }

.card-body {
    padding: 1rem;
}

.price-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1f2937;
}

.price-currency {
    color: #4b5563;
}

.price-consult {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
}

.price-section {
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.icon-orange {
    color: #f97316;
}

.price-text {
    color: #374151;
    font-weight: 500;
}

.price-list {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.price-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.price-list-text {
    font-size: 0.875rem;
}

    .price-list-text.included {
        color: #374151;
    }

    .price-list-text.not-included {
        color: #9ca3af;
    }

.icon-check {
    color: #22c55e;
}

.icon-x {
    color: #d1d5db;
}

.btn-standard {
    width: 100%;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

    .btn-standard:hover {
        transform: scale(1.05);
    }

.btn-standard {
    background-color: #f97316;
    color: white !important;
}

    .btn-standard:hover {
        background-color: #ea580c;
    }

.price-icon > svg {
    width: 100%;
    height: 100%;
}

.title-header {
    background: linear-gradient(#494949, #8b8b8b);
    color: white;
    text-align: center;
    margin-top: 10px;
    margin-inline: 300px;
    padding: 30px;
    font-size: 30px;
    font-weight: normal;
    border-radius: 10px;
}

.our-services * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.our-services {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px 0 60px 0px;
}

    .our-services .container {
        max-width: 1000px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .our-services .header {
        background: linear-gradient(#494949, #8b8b8b);
        padding: 40px;
        position: relative;
        overflow: hidden;
    }

        .our-services .header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            transform: translate(30%, -30%);
        }

    .our-services h1 {
        color: #ffffff;
        font-size: 2.5em;
        font-weight: 600;
        position: relative;
        z-index: 1;
    }

.accent-bar {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ffa500);
    margin-top: 15px;
    border-radius: 2px;
}

.our-services .content {
    padding: 30px;
}

.our-services .intro {
    color: #2d2d2d;
    font-size: 1.15em;
    line-height: 1.5;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #ff8c00;
    border-radius: 4px;
}

    .our-services .intro strong {
        color: #ff8c00;
    }

.our-services .services {
    display: grid;
    gap: 25px;
}

.our-services .service-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .our-services .service-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, #ff8c00, #ffa500);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .our-services .service-card:hover {
        border-color: #ff8c00;
        box-shadow: 0 8px 25px rgba(255, 140, 0, 0.15);
        transform: translateY(-5px);
    }

        .our-services .service-card:hover::before {
            transform: scaleY(1);
        }

.our-services .service-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.our-services .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5em;
    color: white;
    font-weight: bold;
}

.our-services .service-title {
    color: #2d2d2d;
    font-size: 1.5em;
    font-weight: 600;
}

.our-services .service-description {
    color: #5a5a5a;
    line-height: 1.7;
    font-size: 1.05em;
    padding-left: 70px;
}

.our-services .highlight {
    color: #ff8c00;
    font-weight: 600;
}

@media (max-width: 768px) {
    .our-services .content {
        padding: 30px 25px;
    }

    .our-services h1 {
        font-size: 2em;
    }

    .our-services .service-card {
        padding: 20px;
    }

    .our-services .service-description {
        padding-left: 0;
        margin-top: 15px;
    }
}

.our-services .clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.our-services .client-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

    .our-services .client-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, #ff8c00, #ffa500);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .our-services .client-card:hover {
        border-color: #ff8c00;
        box-shadow: 0 8px 25px rgba(255, 140, 0, 0.15);
        transform: translateY(-5px);
    }

        .our-services .client-card:hover::before {
            transform: scaleY(1);
        }

.our-services .client-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-radius: 8px;
    padding: 20px;
}

    .our-services .client-logo img {
        max-width: 100%;
        max-height: 100px;
        object-fit: contain;
    }

/* Placeholder para las imágenes */
.our-services .logo-placeholder {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9em;
    text-align: center;
    padding: 10px;
}

@media (max-width: 768px) {
    .our-services .clients-grid {
        grid-template-columns: 1fr;
    }

    .our-services .client-card {
        padding: 30px;
        min-height: 150px;
    }
}

.our-projects * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.our-projects {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    padding: 40px 20px;
}

    .our-projects .projects-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }

    /* Sección principal de proyectos */
    .our-projects .projects-section {
        background: #ffffff;
        padding: 50px;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

        .our-projects .projects-section h2 {
            color: #2d2d2d;
            font-size: 2.5em;
            font-weight: 600;
            margin-bottom: 15px;
        }

    .our-projects .accent-bar {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #ff8c00, #ffa500);
        margin-bottom: 40px;
        border-radius: 2px;
    }

    .our-projects .projects-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .our-projects .project-card {
        background: #ffffff;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        position: relative;
        text-decoration: none;
        display: block;
        padding: 4px;
        cursor: pointer;
    }

        .our-projects .project-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff8c00, #ffa500);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .our-projects .project-card:hover {
            border-color: #ff8c00;
            box-shadow: 0 8px 25px rgba(255, 140, 0, 0.15);
            transform: translateY(-5px);
        }

            .our-projects .project-card:hover::before {
                transform: scaleX(1);
            }

    .our-projects .project-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .our-projects .project-title {
        padding: 10px 20px 20px;
        text-align: center;
        color: #2d2d2d;
        font-size: 1.1em;
        font-weight: bold;
        margin-top: 20px;
    }

    /* Sidebar de tecnologías */
    .our-projects .technologies-sidebar {
        background: linear-gradient(#494949, #8b8b8b);
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
        align-self: start;
    }

        .our-projects .technologies-sidebar::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
        }

        .our-projects .technologies-sidebar h2 {
            color: #ffffff;
            font-size: 2em;
            font-weight: 600;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .our-projects .technologies-sidebar .accent-bar {
            margin-bottom: 30px;
        }

    .our-projects .tech-list {
        list-style: none;
        position: relative;
        z-index: 1;
    }

    .our-projects .tech-item {
        color: #f0f0f0;
        font-size: 1.05em;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

        .our-projects .tech-item:last-child {
            border-bottom: none;
        }

        .our-projects .tech-item:hover {
            color: #ff8c00;
            padding-left: 10px;
        }

    /* Modal */
    .our-projects .modal {
        display: none;
        max-height: 100%;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        animation: fadeIn 0.3s;
    }

        .our-projects .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.our-projects .modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
    }

    to {
        transform: scale(1);
    }
}

.our-projects .modal-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.our-projects .modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

    .our-projects .modal-close:hover {
        color: #ff8c00;
    }

.our-projects .modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: color 0.3s;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

    .our-projects .modal-nav:hover {
        color: #ff8c00;
        background: rgba(0, 0, 0, 0.6);
    }

.our-projects .modal-prev {
    left: 20px;
}

.our-projects .modal-next {
    right: 20px;
}

.our-projects .modal-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1200px) {
    .our-projects .projects-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .our-projects .projects-section {
        padding: 35px 25px;
    }

        .our-projects .projects-section h2 {
            font-size: 2em;
        }

    .our-projects .projects-grid {
        grid-template-columns: 1fr;
    }

    .our-projects .technologies-sidebar {
        padding: 30px 25px;
    }

        .our-projects .technologies-sidebar h2 {
            font-size: 1.8em;
        }

    .our-projects .modal-nav {
        font-size: 35px;
        padding: 15px;
    }

    .our-projects .modal-prev {
        left: 10px;
    }

    .our-projects .modal-next {
        right: 10px;
    }
}

/* Bordes redondeados para primer y último nav-link del nivel principal */