/* homepage-fabiano-styles.css */

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content {
        width: 80% !important;
        max-width: 80% !important;
    }
    
    .text-item {
        font-size: 4.5vw !important;
    }
    
    .fun-section {
        flex-direction: column !important;
    }
    
    .fun-text-column, .fun-image-column {
        width: 100% !important;
    }
    
    .fun-image-column {
        min-height: 300px !important;
        padding: 20% !important;
    }
    
    .inspiration-section {
        flex-direction: column !important;
    }
    
    .gray-column, .slideshow-column {
        width: 100% !important;
        border-right: none !important;
    }
    
    .gray-column {
        border-bottom: 5px solid #000000 !important;
    }
    
    .products-section {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .product-card {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 0 20px 0 !important;
    }
    
    .voice-title {
        font-size: 8vw !important;
        -webkit-text-stroke: 1px #FFFFFF !important;
    }
    
    .fun-button {
        font-size: 4vw !important;
    }
}

@media (max-width: 768px) {
    /* Esconder hero no mobile como configurado no JSON */
    .hero-section {
        display: none !important;
    }
    
    .voice-title {
        font-size: 12vw !important;
    }
    
    .fun-section h3 {
        font-size: 22px !important;
    }
    
    .fun-description div {
        font-size: 18px !important;
    }
    
    .fun-button {
        font-size: 18px !important;
        padding: 12px 24px !important;
    }
    
    .gray-column h4 {
        font-size: 10vw !important;
    }
    
    .gray-column p {
        font-size: 3vw !important;
    }
    
    .slideshow-column {
        padding: 30vw 0 !important;
    }
    
    .products-section {
        padding: 20px !important;
    }
    
    .product-card {
        margin: 0 0 20px 0 !important;
    }
    
    .product-title {
        font-size: 30px !important;
    }
    
    .product-spacer {
        height: 300px !important;
    }
    
    .product-card.slideshow .product-spacer {
        height: 250px !important;
    }
}

/* Para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-card {
        width: calc(50% - 20px) !important;
    }
    
    .product-card:last-child {
        width: 100% !important;
        margin-top: 20px !important;
    }
}