@media (max-width: 500px) {
    /* Carrossel */
    .carousel-section {
        height: 75vh;
        margin-top: 60px;
        padding: 0 15px;
    }

    .carousel-slide img {
        height: 75vh;
        object-fit: cover;
        border-radius: 10px;
    }

    .carousel-content {
        width: 85%;
        padding: 25px;
        text-align: left;
    }

    .carousel-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        text-align: left;
    }

    .carousel-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        text-align: left;
    }

    .carousel-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .carousel-indicators {
        bottom: 20px;
        margin-bottom: 20px;
    }

    
    /* Seção Equipe */
    .team-section {
        padding: 40px 15px;
    }

    .team-container h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: center;
        color: #38013f;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Animações */
    .carousel-slide {
        animation: fadeIn 0.5s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Reset e novo estilo para as seções principais */
    .company-section, .about-section {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .company-container, .about-container {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    /* Reset das restrições do desktop */
    .company-image, .about-image {
        flex: none !important;
        max-width: none !important;
        width: calc(100% - 30px) !important;
        margin: 0 15px;
    }

    .company-image img, .about-image img {
        width: 100% !important;
        height: 37.5vh;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Container de conteúdo */
    .company-content, .about-content {
        width: 100%;
        padding: 30px 0;
        max-width: 100%;
        order: 2;
        box-sizing: border-box;
    }

    /* Títulos */
    .company-content h2, .about-content h2 {
        font-size: 2.4rem;
        color: #38013f;
        margin: 0 0 25px 0;
        padding: 0 15px;
        width: auto;
        max-width: 100%;
        text-align: center;
    }

    /* Textos */
    .company-content p, .about-content p {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.8;
        margin: 0 15px 20px 15px;
        width: auto;
        max-width: 100%;
    }

    /* Botão */
    .about-cta {
        width: calc(100% - 30px);
        margin: 25px 15px;
        padding: 18px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* Destaques */
    .company-highlights {
        width: calc(100% - 30px);
        margin: 30px 15px;
        padding: 20px 0;
    }

    .highlight {
        text-align: center;
    }

    .highlight-number {
        font-size: 2.4rem;
        color: #38013f;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .highlight p {
        font-size: 1rem;
        color: #666;
        line-height: 1.4;
    }
}