/* css/AboutStyle.css */

.about {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary-bg);
    overflow: hidden;
}

/* --- CLASSES DE ANIMAÇÃO REVEAL --- */
.reveal-left {
    opacity: 0;
    transform: translateX(-100px); /* Começa na esquerda */
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px); /* Começa na direita */
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.active-reveal {
    opacity: 1;
    transform: translateX(0);
}

/* Texto decorativo ao fundo */
.about-bg-text {
    position: absolute;
    top: 50%;
    left: -5%;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

/* --- Lado da Imagem --- */
.about-image-side {
    flex: 1;
    position: relative;
}

.image-stack {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-glow-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(121, 40, 202, 0.2));
    padding: 1px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.image-glow-card img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 40px;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Badge Flutuante */
.about-floating-badge {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: var(--accent-gradient);
    padding: 25px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.4);
    animation: float 4s ease-in-out infinite;
}

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

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}

/* --- Lado do Texto --- */
.about-text-side {
    flex: 1;
}

.about-top-label {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.about-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    margin-bottom: 30px;
    border-radius: 2px;
}

.about-main-text {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-sub-text {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 35px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-item span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    .about-bg-text { display: none; }
    .about-divider { margin: 0 auto 30px auto; }
    .about-features { justify-content: center; }
    .image-glow-card img { height: 400px; }
    .about-floating-badge { right: 50%; transform: translateX(50%); bottom: -20px; }
    
    /* No mobile, removemos o deslocamento lateral para evitar scroll horizontal */
    .reveal-left, .reveal-right {
        transform: translateY(50px);
    }
}