/* Seção About - Fundo Claro e Texto Preto */
.about {
    padding: 45px 0;
    background: #f3f4f6;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    justify-items: center;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    height: 650px;
    margin-left: 0;
    width: 100%;
    max-width: 650px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
    border-radius: 12px;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-content {
    padding: 40px 0;
    margin-right: 0;
    text-align: left;
    max-width: 650px;
}

/* Título principal - Texto Preto */
.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 34px;
    color: #151c23;
    line-height: 1.3;
    font-weight: 700;
    text-align: left;
    max-width: 100%;
}

/* Parágrafo - Texto Cinza Escuro */
.about-content p {
    font-size: 1.25rem;
    margin-bottom: 34px;
    color: #374151;
    line-height: 1.7;
    text-align: left;
    text-indent: 0;
    max-width: 100%;
}

.about-content strong {
    color: #72939c;
    font-size: 1.35rem;
}

/* Lista - Texto Cinza Escuro */
.features-list {
    list-style: none;
    margin: 40px 0 50px 0;
    padding: 0;
    display: block;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #374151;
    text-align: left;
    padding-left: 0;
}

/* Remove os marcadores antigos de bolinha */
.features-list li:before {
    display: none;
}

/* Classe base para ícones */
.feature-icon {
    flex-shrink: 0;
    object-fit: contain;
    margin-top: 2px;
}

/* Classes específicas para cada ícone */
.icon-frota {
    width: 32px;
    height: 32px;
}

.icon-motoristas {
    width: 30px;
    height: 30px;
    margin-top: 3px;
}

.icon-atendimento {
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

/* CTA section - Texto Preto */
.about-content h3 {
    font-size: 1.7rem;
    color: #151c23;
    margin: 44px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-weight: 600;
}

.about-content h3::after {
    content: "→";
    font-size: 1.5rem;
    color: #151c23;
}

/* Botão - Invertido para fundo claro */
.about-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    background: transparent !important;
    border: 2px solid #151c23 !important;
    color: #151c23 !important;
    padding: 18px 44px !important;
    transition: all 0.3s ease !important;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    margin: 0;
}

.about-content .btn:hover {
    background: #151c23 !important;
    border-color: #151c23 !important;
    color: #f3f4f6 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 28, 35, 0.3);
}

/* BADGE ATUALIZADO - Invertido para fundo escuro */
.experience-badge {
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
    background: #151c23;
    color: #f3f4f6;
    padding: 30px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow:
        0 0 20px rgba(21, 28, 35, 0.6),
        0 0 40px rgba(21, 28, 35, 0.4),
        0 0 60px rgba(21, 28, 35, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(21, 28, 35, 0.9);
    z-index: 10;
    min-width: 152px;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Animação de brilho pulsante - Atualizada para cores escuras */
@keyframes glow {
    0% {
        box-shadow:
            0 0 15px rgba(21, 28, 35, 0.5),
            0 0 30px rgba(21, 28, 35, 0.3),
            0 0 45px rgba(21, 28, 35, 0.1),
            0 10px 30px rgba(0, 0, 0, 0.3);
    }

    100% {
        box-shadow:
            0 0 25px rgba(21, 28, 35, 0.8),
            0 0 50px rgba(21, 28, 35, 0.5),
            0 0 75px rgba(21, 28, 35, 0.3),
            0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

.counter {
    font-size: 3.25rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
    color: #f3f4f6;
    text-shadow: 0 0 10px rgba(243, 244, 246, 0.5);
}

.experience-badge span {
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f3f4f6;
    text-shadow: 0 0 5px rgba(243, 244, 246, 0.3);
}

/* Responsividade */
@media (max-width: 1200px) {
    .about {
        padding: 70px 0;
        min-height: 700px;
    }

    .about-grid {
        gap: 40px;
    }

    .about-image {
        height: 600px;
        max-width: 600px;
    }

    .about-content h2 {
        font-size: 2.6rem;
    }

    .experience-badge {
        bottom: -30px;
        padding: 27px 32px;
    }
    
    .icon-frota {
        width: 30px;
        height: 30px;
    }
    
    .icon-motoristas {
        width: 26px;
        height: 26px;
    }
    
    .icon-atendimento {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 992px) {
    .about {
        padding: 60px 0;
        min-height: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 550px;
        max-width: 550px;
        order: -1;
    }

    .about-content {
        padding: 34px 0;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2.4rem;
        text-align: center;
    }

    .about-content p {
        text-align: center;
    }

    .features-list {
        text-align: center;
    }

    .features-list li {
        text-align: center;
        justify-content: center;
    }

    .about-content h3 {
        justify-content: center;
    }

    .about-content .btn {
        margin: 0 auto;
    }

    .experience-badge {
        bottom: -30px;
        padding: 25px 30px;
    }

    .counter {
        font-size: 3.05rem;
    }
    
    .icon-frota {
        width: 28px;
        height: 28px;
    }
    
    .icon-motoristas {
        width: 24px;
        height: 24px;
    }
    
    .icon-atendimento {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 50px 0;
    }

    .about-image {
        height: 500px;
        max-width: 500px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-content p {
        font-size: 1.2rem;
    }

    .features-list li {
        font-size: 1.15rem;
        gap: 12px;
    }

    .icon-frota {
        width: 26px;
        height: 26px;
    }
    
    .icon-motoristas {
        width: 22px;
        height: 22px;
        margin-top: 2px;
    }
    
    .icon-atendimento {
        width: 24px;
        height: 24px;
    }

    .experience-badge {
        bottom: -25px;
        padding: 23px 27px;
    }

    .counter {
        font-size: 2.75rem;
    }

    .experience-badge span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }

    .about-image {
        height: 450px;
        max-width: 450px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1.15rem;
    }

    .features-list li {
        font-size: 1.1rem;
        gap: 10px;
    }

    .icon-frota {
        width: 24px;
        height: 24px;
    }
    
    .icon-motoristas {
        width: 20px;
        height: 20px;
        margin-top: 1px;
    }
    
    .icon-atendimento {
        width: 22px;
        height: 22px;
    }

    .experience-badge {
        bottom: -20px;
        padding: 21px 25px;
        min-width: 132px;
    }

    .counter {
        font-size: 2.4rem;
    }

    .experience-badge span {
        font-size: 0.94rem;
        letter-spacing: 1px;
    }

    .about-content .btn {
        padding: 16px 40px !important;
        font-size: 1.15rem;
    }
}