/* Estilos premium para o fundo da seção Sobre Nós */

.about-section {
    position: relative;
    background: linear-gradient(135deg, #f9f7f5 0%, #f0f5f5 100%); /* Gradiente suave */
    padding: 120px 0 100px;
    overflow: hidden;
}

/* Elementos decorativos de fundo */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(128, 216, 208, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(128, 216, 208, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Padrão sutil de flores no fundo */
.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2380d8d0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

/* Elementos decorativos flutuantes */
.about-section .container {
    position: relative;
    z-index: 2;
}

/* Elemento decorativo superior esquerdo */
.about-section .container::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -120px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(128, 216, 208, 0.15) 0%, rgba(128, 216, 208, 0.05) 60%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Elemento decorativo inferior direito */
.about-section .container::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(128, 216, 208, 0.1) 0%, rgba(128, 216, 208, 0.03) 60%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Borda superior elegante */
.about-section {
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

/* Ajustes para a imagem principal */
.storefront-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 10px solid white;
    position: relative;
}

/* Efeito de brilho na imagem */
.storefront-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, rgba(128, 216, 208, 0.1), transparent, rgba(128, 216, 208, 0.1));
    z-index: -1;
    border-radius: 5px;
}

/* Ajustes para a seção de essência */
.essence-section {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border-left: 3px solid var(--primary-color);
}

/* Ajustes para a galeria */
.gallery-showcase {
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.gallery-grid {
    position: relative;
}

.gallery-item {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    transition: all 0.4s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Botão CTA com efeito premium */
.cta-button-minimal {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.cta-button-minimal::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.cta-button-minimal:hover::after {
    left: 100%;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-section .container::before,
    .about-section .container::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .essence-section {
        padding: 30px 20px;
    }
    
    .gallery-showcase {
        margin-top: 50px;
    }
}
