/* Seção Sobre Moderno */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

.sobre-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 20;
    clear: both;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.sobre-content {
    flex: 1;
}

.sobre-title-wrapper {
    margin-bottom: 30px;
}

.sobre-subtitle {
    font-family: 'Dancing Script', cursive;
    color: #d0a23c;
    font-size: 32px;
    display: block;
    margin-bottom: 5px;
}

.sobre-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    text-transform: uppercase;
}

.sobre-text {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 40px;
    text-align: justify;
}

.sobre-text p {
    margin-bottom: 20px;
}

.sobre-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #fff8e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0a23c;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    background: #d0a23c;
    color: #fff;
    transform: rotate(10deg);
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.sobre-image {
    flex: 1;
    position: relative;
}

.sobre-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
    background-color: #000000;
}

.sobre-image:hover .sobre-main-img {
    transform: translateY(-5px);
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90%;
    height: 90%;
    background-image: radial-gradient(#d0a23c 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

.sobre-badge {
    position: absolute;
    bottom: -50px;
    left: -60px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 250px;
    animation: float 4s ease-in-out infinite;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0a23c;
    font-size: 24px;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

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

/* Responsividade */
@media (max-width: 992px) {
    .sobre-section {
        padding: 60px 0;
    }
    
    .sobre-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .sobre-image {
        width: 100%;
        order: -1; /* Imagem primeiro no mobile */
    }
    
    .sobre-badge {
        display: none;
    }
    
    .sobre-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .sobre-features {
        grid-template-columns: 1fr;
    }
    
    .sobre-image::before {
        display: none;
    }
}
