.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/flota/portadafl.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;
    }
}


/* flota */
.fleet-section {
    background-color: #03a53a;
    padding: 60px 40px;
    text-align: center;
    margin: 0 auto;
}

.fleet-title {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    position: relative;
}

.fleet-title::before {
    content: '‹';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

.fleet-title::after {
    content: '›';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

.fleet-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.fleet-card {
    background-color: transparent;
    border: 3px solid white;
    border-radius: 10px;
    padding: 40px 30px;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fleet-card:hover {
    background-color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fleet-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.fleet-card:hover .fleet-icon {
    color: #03a53a;
}

.fleet-text {
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    transition: color 0.3s ease;
}

.fleet-card:hover .fleet-text {
    color: #03a53a;
}

.fleet-number {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .fleet-container {
        flex-direction: column;
        align-items: center;
    }

    .fleet-card {
        width: 100%;
        max-width: 300px;
    }

    .fleet-title {
        font-size: 2rem;
    }

    .fleet-title::before,
    .fleet-title::after {
        display: none;
    }
}



/* FLota */

.flota-containerf {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
    background: #fff;
    padding: 40px 20px;
}

.btnflo {
    color: #3c3c3c;
}

.content-leftf {
    padding: 40px;
    z-index: 2;
}

.flota-titlef {
    color: #3c3c3c;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    line-height: 34px;
}

.flota-titlef::after {
    content: '▶';
    color: #03a53a;
    margin-left: 15px;
    font-size: 2.5rem;
}

.flota-descriptionf {
    color: #3c3c3c;
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 40px;
    text-align: justify;
    font-weight: 400;
}


.content-rightf {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-backgroundf {
    position: absolute;
    width: 450px;
    height: 450px;
    background: #03a53a;
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.trucks-imagef {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Decorative elements */
.geometric-accentf {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    border: 3px solid #03a53a;
    transform: rotate(45deg);
    opacity: 0.3;
}

.geometric-accentf::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: #03a53a;
    transform: rotate(-45deg);
}

/* Responsive design */
@media (max-width: 1024px) {
    .flota-containerf {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .content-rightf {
        order: -1;
        height: 400px;
    }

    .flota-titlef {
        font-size: 2.5rem;
    }

    .circle-backgroundf {
        width: 350px;
        height: 350px;
    }

    .trucks-imagef {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .flota-containerf {
        padding: 20px;
    }

    .content-leftf {
        padding: 20px;
    }

    .flota-titlef {
        font-size: 2rem;
    }

    .flota-descriptionf {
        font-size: 1rem;
    }

    .circle-backgroundf {
        width: 280px;
        height: 280px;
    }

    .content-rightf {
        height: 300px;
    }
}


/* carga description flota */

.container-fl {
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            min-height: 550px;
            margin: 0 auto;
            padding: 20px 20px;
        }

        .left-section-fl {
            flex: 1;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .truck-circle-fl {
            width: 350px;
            height: 350px;
            background: #03a53a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: pulse-fl 3s ease-in-out infinite;
        }

        @keyframes pulse-fl {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .truck-image-fl {
            width: 280px;
            height: auto;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
        }

        .right-section-fl {
            flex: 1;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .header-text-fl {
            color: #3c3c3c;
            font-size: 13px;
            line-height: 21px;
            font-weight: 400;
            margin-bottom: 40px;
        }

        .stats-container-fl {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .stat-card-fl {
            flex: 1;
            border: 3px solid #03a53a;
            border-radius: 12px;
            padding: 15px 8px;
            text-align: center;
            background: white;
            box-shadow: 0 5px 20px rgba(255, 71, 87, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card-fl:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 71, 87, 0.2);
        }

        .stat-number-fl {
            font-size: 82px;
            font-weight: bold;
            color: #03a53a;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .stat-label-fl {
            font-size: 16px;
            color: #3c3c3c;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .stat-sublabel-fl {
            font-size: 12px;
            color: #7f8c8d;
            font-weight: 400;
        }

        .description-fl {
            color: #3c3c3c;
            font-size: 13px;
            line-height: 21px;
            margin-bottom: 20px;
        }

        .description-highlight-fl {
            color: #3c3c3c;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .logo-fl {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            padding: 10px 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .logo-text-fl {
            font-size: 24px;
            font-weight: bold;
            color: #03a53a;
        }

        .logo-subtitle-fl {
            font-size: 12px;
            color: #3c3c3c;
            margin-top: 2px;
        }

        .decorative-arrow-fl {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 0;
            height: 0;
            border-left: 20px solid #03a53a;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            .container-fl {
                flex-direction: column;
                margin: 10px;
            }

            .left-section-fl {
                min-height: 300px;
            }

            .truck-circle-fl {
                width: 250px;
                height: 250px;
            }

            .truck-image-fl {
                width: 200px;
            }

            .right-section-fl {
                padding: 40px 30px;
            }

            .stats-container-fl {
                flex-direction: column;
            }

            .stat-number-fl {
                font-size: 36px;
            }
        }