@charset "utf-8";
/* CSS Document */






































.perfil-album-de-fotos{
    background-color: #ecc6d9;
    height: auto;
    padding-bottom: 60px;
    padding: 16px;
}
.perfil-album-de-fotos-mid{
        display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: #ffb3d9;
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
padding-bottom: 25px;
padding: 8px;
    }
       
            .galeria-container {
            width: 100%;
            max-width: 1200px;
        }
        .grade-fotos {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .foto-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            aspect-ratio: 1 / 1;
            background-color: #000;
            user-select: none;
            -webkit-user-drag: none;
            width: 290px;  /* Aumentado de 270px para 320px (Largura) */
    height: 320px; /* Aumentado de 320px para 380px (Altura) */
    border: 20px solid #ff3399;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
		
    border-image-source:url(  "textura/1.jpg");
    border-image-slice:40;
    border-image-repeat:stretch;
        }
        .foto-item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: transform 0.4s ease, filter 0.4s ease;
			
        }
        .foto-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(233, 30, 99, 0.18);
            z-index: 2;
            transition: background-color 0.4s ease;
        }
        .foto-item::after {
            content: '@karine4realz';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            color: #ff69b4;
            font-family: sans-serif;
            font-weight: bold;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            z-index: 3;
            transition: opacity 0.35s ease;
            pointer-events: none;
        }
        .foto-item:hover img {
            transform: scale(1.06);
            filter: blur(3px);
        }
        .foto-item:hover::before {
            background-color: transparent;
        }
        .foto-item:hover::after {
            opacity: 1;
        }
        .spinner {
            text-align: center;
            font-family: sans-serif;
            color: #ff69b4;
            padding: 40px;
            font-size: 1.1rem;
        }
        #btnCarregarMais {
            display: block;
            margin: 40px auto;
            padding: 12px 30px;
            background-color: #e91e63;
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s;
        }
        #btnCarregarMais:hover {
            background-color: #c2185b;
        }