/* =================================
   PLACEHOLDER HERO IMAGE
   ================================= */

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #2066e6 50%, 
        var(--secondary-highlight) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 82, 220, 0.3);
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="family-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23family-pattern)"/></svg>');
}

.hero-image-placeholder .placeholder-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-image-placeholder .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-image-placeholder .placeholder-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-image-placeholder .placeholder-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* Animação sutil */
.hero-image-placeholder {
    animation: hero-pulse 4s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 82, 220, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 82, 220, 0.4);
    }
}
