/* showcase.css - Estilos específicos da seção Showcase */
.showcase-section {
    padding: var(--spacing-xxxl) 0;
    position: relative;
    overflow: hidden;
}

.marketing-banners {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
    overflow: hidden;
}

.marketing-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease, transform 1s ease;
    pointer-events: none;
}

.marketing-banner.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.banner-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    height: 100%;
    min-height: 550px;
    background: linear-gradient(135deg, rgba(184, 161, 230, 0.08) 0%, rgba(212, 196, 247, 0.05) 100%);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 161, 230, 0.1);
}

/* Elementos decorativos fofos do banner */
.banner-content::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Estrelinhas e corações flutuantes no banner */
.banner-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.banner-star,
.banner-heart {
    position: absolute;
    opacity: 0;
    animation: twinkle 3s ease-in-out infinite;
}

.banner-star {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.banner-heart {
    font-size: 16px;
    color: rgba(255, 182, 193, 0.5);
}

.banner-star:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.banner-star:nth-child(2) { top: 25%; right: 15%; animation-delay: 1s; }
.banner-star:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.banner-star:nth-child(4) { top: 70%; right: 25%; animation-delay: 1.5s; }

.banner-heart:nth-child(5) { top: 20%; left: 30%; animation-delay: 0.5s; }
.banner-heart:nth-child(6) { top: 40%; right: 20%; animation-delay: 2.5s; }
.banner-heart:nth-child(7) { top: 75%; left: 15%; animation-delay: 1.8s; }

@keyframes twinkle {
    0%, 100% { 
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1) rotate(180deg);
    }
}

.banner-text {
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.banner-label {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: var(--border-radius-full);
    width: fit-content;
}

.banner-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--color-secondary);
    font-weight: 600;
}

.banner-description {
    font-size: var(--font-size-base);
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.banner-cta {
    font-size: var(--font-size-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    width: fit-content;
    margin-top: var(--spacing-sm);
}

.banner-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    height: 100%;
    z-index: 2;
    padding: var(--spacing-lg);
}

.banner-image img {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(184, 161, 230, 0.3));
}

.banner-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.indicator:hover {
    transform: scale(1.1);
}

/* Responsividade Showcase */
@media (max-width: 1024px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-xl);
        min-height: 500px;
    }
    
    .banner-text {
        order: 1;
        text-align: center;
        align-items: center;
    }
    
    .banner-image {
        order: 2;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .marketing-banners {
        min-height: 500px;
    }
    
    .banner-content {
        padding: var(--spacing-lg);
        min-height: 450px;
    }
    
    .banner-text {
        padding: var(--spacing-md) 0;
        gap: var(--spacing-sm);
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-description {
        font-size: var(--font-size-sm);
    }
    
    .banner-label {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .banner-cta {
        width: 100%;
        justify-content: center;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-xs);
    }
    
    .banner-image {
        min-height: 250px;
        padding: var(--spacing-md);
    }
    
    .banner-image img {
        max-height: 300px;
    }
    
    .banner-indicators {
        margin-top: var(--spacing-xl);
    }
}