/* CSS para Template Single Marca - Minha Receita */

/* Background responsivo */
.emr-brand-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease;
}

.emr-brand-background.desktop {
    display: block;
}

.emr-brand-background.mobile {
    display: none;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .emr-brand-background.desktop {
        display: none;
    }

    .emr-brand-background.mobile {
        display: block;
    }
}

/* Container principal com z-index correto */
.emr-container {
    position: relative;
    z-index: 10;
}