.about {
    margin-top: 50px;
    background: #E09200;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(0,0,0,0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
}

.container-about-mentoria {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: rgba(0,0,0,0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.about-text {
    padding: 40px;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.about-text p:last-of-type {
    margin-bottom: 40px;
}

.button-mentoria {
    display: inline-block;
    background: linear-gradient(135deg, #121212, #1F1F1F, #34495E 100%);
    color: #FFFFFF;
    padding: 18px 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button-mentoria::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3498DB, #2980B9);
    transition: left 0.3s ease;
    z-index: 1;
}

.button-mentoria span {
    position: relative;
    z-index: 2;
}

.button-mentoria:hover::before {
    left: 0;
}

.button-mentoria:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.about-visual {
    position: relative;
    height: 680px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
}

.about-visual::after {
    position: absolute;
    font-size: 6rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

/* Responsive para Tablets */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }
    
    .about-text {
        padding: 30px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .button-mentoria {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
    }
    
    .about-visual {
        height: 700px;
    }
}

/* Responsive para Celulares */
@media (max-width: 768px) {
    .about {
        padding: 0 10px;
    }
    
    .container-about-mentoria {
        padding: 0 10px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
        /* Remove o fundo escuro em dispositivos móveis */
        background: none;
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
    }
    
    .about-text {
        padding: 20px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .about-text p:last-of-type {
        margin-bottom: 30px;
    }
    
    .button-mentoria {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .about-visual {
        height: 600px;
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .about-image {
        border-radius: 15px;
    }
}

/* Responsive para telas muito pequenas */
@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .button-mentoria {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .about-visual {
        max-width: 400px;
        height: 300px;
        margin: 0;
    }
}