.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 0;
    min-height: 600px;
}

.services-nav {
    width: 300px;
    background: white;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-button {
    display: flex;
    align-items: center;
    width: 90%;
    padding: 20px 25px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #3c3c3c;
    border-bottom: 3px solid #03a53a;
    transition: all 0.3s ease;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    gap: 5px;
}

.nav-button:first-child {
    border-radius: 8px 0 0 0;
}

.nav-button:last-child {
    border-bottom: none;
    border-radius: 0 0 0 8px;
}

.nav-button:hover {
    background-color: #f8f8f8;
    color: #03a53a;
}

.nav-button.active {
    background-color: #03a53a;
    color: white;
    border-left: 4px solid #08cf4a;
}

.nav-buttons .icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: currentColor;
}

.services-content {
    flex: 1;
    background: white;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.content-panel {
    display: none;
    height: 100%;
}

.content-panel.active {
    display: flex;
}

.content-text {
    flex: 1;
    padding: 40px;
}

.content-image {
    width: 45%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-title {
    color: #03a53a;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.content-title::before {
    content: "▶";
    margin-right: 10px;
    font-size: 20px;
}

.content-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.content-list {
    list-style: none;
    margin-bottom: 25px;
}

.content-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 13px;
}

.content-list li::before {
    content: "●";
    color: #03a53a;
    position: absolute;
    left: 0;
}

.content-additional {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.contact-infos {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
    border-left: 4px solid #03a53a;
    font-size: 13px;
}

.contact-button {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.contact-btn {
    background-color: #03a53a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #cd550b;
}


@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        gap: 20px;
    }

    .services-nav {
        width: 100%;
        border-radius: 8px;
    }

    .services-content {
        border-radius: 8px;
    }

    .content-panel {
        flex-direction: column;
    }

    .content-image {
        width: 100%;
        height: 200px;
    }

    .nav-button:first-child {
        border-radius: 8px 8px 0 0;
    }

    .nav-button:last-child {
        border-radius: 0 0 8px 8px;
    }
}


/* banner */

.about-sns {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.left-imagens {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('../content/servicios/portadasv.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.right-sectionns {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    z-index: 1;
}

.content-wrapperns {
    position: relative;
    z-index: 3;
    width: 50%;
    margin-left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.titlens {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 3px;
}

/* Triángulos decorativos */
.triangle-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 80px 0 0 120px;
    border-color: transparent transparent transparent #03a53a;
    z-index: 2;
}

.triangle-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 60px 0;
    border-color: #03a53a transparent transparent transparent;
    z-index: 2;
}

.triangle-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 70px 90px;
    border-color: transparent transparent #03a53a transparent;
    z-index: 2;
}

.triangle-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 80px 0 0;
    border-color: transparent #03a53a transparent transparent;
    z-index: 2;
}

/* Triángulos adicionales más pequeños */
.small-triangle-1 {
    position: absolute;
    top: 40px;
    left: 150px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 35px 0 0;
    border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent;
    z-index: 2;
}

.small-triangle-2 {
    position: absolute;
    bottom: 30px;
    right: 120px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 40px;
    border-color: transparent transparent rgba(255, 255, 255, 0.1) transparent;
    z-index: 2;
}

/* Responsivo */
@media (max-width: 768px) {
    .about-sns {
        height: 180px;
    }

    .left-imagens,
    .right-sectionns {
        width: 100%;
    }

    .content-wrapperns {
        width: 100%;
        margin-left: 0;
    }

    .titlens {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .triangle-top-left {
        border-width: 60px 0 0 80px;
    }

    .triangle-top-right {
        border-width: 0 70px 40px 0;
    }

    .triangle-bottom-left {
        border-width: 0 0 50px 60px;
    }

    .triangle-bottom-right {
        border-width: 35px 60px 0 0;
    }
}

@media (max-width: 480px) {
    .about-sns {
        height: 150px;
    }

    .left-imagens,
    .right-sectionns {
        width: 100%;
    }

    .content-wrapperns {
        width: 100%;
        margin-left: 0;
    }

    .titlens {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
}

/* ROTULAR */

.btn-open-modal {
            background-color: #03a53a;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-open-modal:hover {
            background: linear-gradient(135deg, #03a53a, #f4e500);
            transform: translateY(-2px);
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: white;
            border-radius: 15px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal {
            transform: scale(1);
        }

        .modal-header {
            background: linear-gradient(135deg, #03a53a, #f4e500);
            color: white;
            padding: 25px;
            border-radius: 15px 15px 0 0;
            position: relative;
        }

        .modal-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .modal-subtitle {
            font-size: 14px;
            opacity: 0.9;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }

        .close-btn:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .modal-body {
            padding: 30px;
        }

        .step {
            margin-bottom: 30px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #03a53a;
        }

        .step-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .step-number {
            background-color: #03a53a;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
        }

        .step-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }

        .step-content {
            padding-left: 50px;
        }

        .step-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 15px;
        }

        .info-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #eee;
        }

        .info-label {
            font-weight: bold;
            color: #03a53a;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-value {
            color: #666;
            font-size: 14px;
        }

        .package-preview {
            background: white;
            border: 2px dashed #03a53a;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            position: relative;
            min-height: 200px;
        }

        .package-label {
            position: absolute;
            background: white;
            border: 1px solid #ccc;
            border-radius: 5px;
            padding: 10px;
            font-size: 12px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .sender-label {
            top: 20px;
            left: 20px;
            border-left: 4px solid #28a745;
        }

        .receiver-label {
            bottom: 20px;
            right: 20px;
            border-left: 4px solid #03a53a;
        }

        .warning-box {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
        }

        .warning-title {
            color: #856404;
            font-weight: bold;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .warning-text {
            color: #856404;
            font-size: 14px;
        }

        .tips-list {
            background: #e8f5e8;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }

        .tips-title {
            color: #28a745;
            font-weight: bold;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tips-list ul {
            padding-left: 20px;
        }

        .tips-list li {
            color: #2d5a2d;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .modal {
                width: 95%;
                margin: 10px;
            }

            .modal-body {
                padding: 20px;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .step-content {
                padding-left: 0;
            }

            .step-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .package-preview {
                min-height: 150px;
            }

            .sender-label,
            .receiver-label {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
                margin: 10px 0;
            }
        }