/* Custom Styles - Instituto do Aprendizado */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.netflix-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.netflix-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 10;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

/* Ad Container - Fixed Dimensions for CLS Prevention */
.ad-container {
    min-height: 250px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-ad {
    min-height: 600px;
    background: #f5f5f5;
}
