.sobre {
    padding: 4rem 0 6rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(161, 170, 139, 0.04), transparent 70%);
    pointer-events: none;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sobre-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
}

.sobre-image-container {
    width: 100%;
    height: 100%;
    border-radius: 35% 65% 70% 30% / 30% 35% 65% 70%;
    overflow: hidden;
    background: rgba(161, 170, 139, 0.08);
    border: 4px solid rgba(161, 170, 139, 0.25);
    box-shadow:
        0 30px 80px rgba(161, 170, 139, 0.12),
        0 0 0 1px rgba(161, 170, 139, 0.05) inset;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sobre-image-container:hover {
    border-color: rgba(161, 170, 139, 0.45);
    transform: scale(1.02);
    box-shadow:
        0 40px 100px rgba(161, 170, 139, 0.2),
        0 0 0 1px rgba(161, 170, 139, 0.1) inset;
}

.sobre-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sobre-image-container:hover .sobre-photo {
    transform: scale(1.06);
}

/* Glow atrás da imagem - melhorado */
.sobre-image-container::after {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 50% 50%, rgba(161, 170, 139, 0.06), transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
    transition: all 0.6s ease;
}

.sobre-image-container:hover::after {
    background: radial-gradient(circle at 50% 50%, rgba(161, 170, 139, 0.1), transparent 70%);
    filter: blur(80px);
}

/* Anel decorativo ao redor da imagem */
.sobre-image-frame::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 40% 60% 65% 35% / 35% 40% 60% 65%;
    border: 1.5px solid rgba(161, 170, 139, 0.08);
    pointer-events: none;
    animation: ringPulseSobre 4s ease-in-out infinite;
}

@keyframes ringPulseSobre {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

/* Bolinhas decorativas - corrigidas */
.sobre-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.sobe-dot-1 {
    width: 18px;
    height: 18px;
    top: -6px;
    right: 18%;
    background: rgba(161, 170, 139, 0.2);
    border: 2px solid rgba(161, 170, 139, 0.15);
    animation: pulseSobre 3s infinite;
    box-shadow: 0 0 20px rgba(161, 170, 139, 0.05);
}

.sobe-dot-2 {
    width: 12px;
    height: 12px;
    bottom: -4px;
    left: 12%;
    background: rgba(161, 170, 139, 0.15);
    border: 2px solid rgba(161, 170, 139, 0.1);
    animation: pulseSobre 3s infinite 1.5s;
    box-shadow: 0 0 15px rgba(161, 170, 139, 0.03);
}

/* Linha decorativa - melhorada */
.sobe-line {
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    opacity: 0.12;
    box-shadow: 0 0 20px rgba(161, 170, 139, 0.05);
}

/* Terceira bolinha adicional - mais harmonia */
.sobre-image-frame::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    bottom: 30%;
    right: -10px;
    background: rgba(161, 170, 139, 0.1);
    border: 1.5px solid rgba(161, 170, 139, 0.08);
    animation: pulseSobre 3s infinite 2.5s;
    pointer-events: none;
    z-index: 2;
}

.sobre-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.sobre-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    width: fit-content;
}

.sobre-tag i {
    font-size: 0.7rem;
}

.sobre-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
}

.sobre-title .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sobre-description {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin: 0;
}

.sobre-description:last-of-type {
    margin-bottom: 0.5rem;
}

.sobre-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 0.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    border-top: 4px solid rgba(161, 170, 139, 0.4);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary-bg);
    border-color: rgba(161, 170, 139, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(161, 170, 139, 0.06);
}

.feature-item i {
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 0.65rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.feature-value {
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 500;
}

@keyframes pulseSobre {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.5;
    }
}

@media (max-width: 1024px) {
    .sobre {
        padding: 3rem 0 6rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .sobre-image {
        order: -1;
    }

    .sobre-image-frame {
        max-width: 320px;
        margin: 0 auto;
    }

    .sobe-line {
        display: none;
    }

    .sobre-image-frame::after {
        display: none;
    }

    .sobre-text {
        align-items: center;
    }

    .sobre-tag {
        align-self: center;
    }

    .sobre-description {
        text-align: center;
        max-width: 600px;
    }

    .sobre-features {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        max-width: 500px;
    }

    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sobre {
        padding: 2rem 0 4rem;
    }

    .sobre-title {
        font-size: 2.5rem;
    }

    .sobre-description {
        font-size: 1rem;
    }

    .sobre-image-frame {
        max-width: 260px;
    }

    .sobre-features {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 0.75rem;
    }

    .feature-item {
        padding: 0.6rem 1rem;
        justify-content: center;
    }

    .sobre-decoration {
        display: none;
    }

    .sobre-image-frame::before {
        display: none;
    }

    .sobre-image-frame::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .sobre {
        padding: 1.5rem 0 3rem;
    }

    .sobre-title {
        font-size: 2rem;
    }

    .sobre-description {
        font-size: 0.95rem;
    }

    .sobre-image-frame {
        max-width: 200px;
    }

    .sobre-tag {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }

    .sobre-image-container {
        border-width: 3px;
    }
}