/* LGPD Hero */
.lgpd-hero {
    min-height: 50vh;
    padding: 6rem 0;
    background: url("../images/lgpd/hero-bg.png") center/cover no-repeat;
}

.lgpd-hero-bg-overlay {
    position: absolute;
    inset: 0;
    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='%2300c7b3' fill-opacity='0.06'%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");
    z-index: 1;
}

.lgpd-hero .container-custom {
    position: relative;
    z-index: 2;
}

/* Scroll button */
.lgpd-scroll-btn {
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 199, 179, 0.4);
    z-index: 10;
    transition: 0.3s;
}

.lgpd-scroll-btn:hover {
    background-color: #0bbfad;
    transform: translateX(-50%) translateY(-2px);
}

/* Cards */
.lgpd-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lgpd-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.3);
}

.lgpd-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.lgpd-card:hover .lgpd-card-bg {
    transform: scale(1.1);
}

.lgpd-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.lgpd-card-icon {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

/* Shield / Visual element */
.lgpd-shield-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lgpd-shield-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, #00c7b31a 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s cubic-bezier(.4, 0, .6, 1) infinite;
}

.lgpd-shield-icon {
    filter: drop-shadow(0 4px 20px rgba(0, 199, 179, 0.3));
}

@media (max-width: 1024px) {
    .lgpd-hero {
        padding: 8rem 2rem 5rem;
    }
}

@media (max-width: 768px) {
    .lgpd-hero {
        padding: 7rem 1.5rem 5rem;
    }

    .lgpd-shield-wrapper {
        width: 220px;
        height: 220px;
    }
}
