/* Estilos para a página de produtos */
.products-page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffeef8 0%, #f0f8ff 50%, #fff8e1 100%);
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #e91e63;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: bounceIn 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.products-page-subtitle {
    font-size: 1.5rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.product-offer {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(45deg, #ff6b9d, #e91e63);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3);
    animation: pulse 2s infinite;
}

.discount-message {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.product-buy-button {
    background: linear-gradient(45deg, #fff, #f8f9fa);
    color: #e91e63;
    padding: 1.2rem 3rem;
    border: 3px solid white;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-buy-button:hover {
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.product-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-image-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    overflow: hidden;
}

.product-image-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e91e63;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.product-image-card:hover .product-image {
    transform: scale(1.05);
}

/* Animações */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.8);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .products-page-title {
        font-size: 2.5rem;
    }
    
    .products-page-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .discount-message {
        font-size: 2rem;
    }
    
    .product-buy-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .product-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .products-page-section {
        padding: 3rem 0;
    }
    
    .products-page-title {
        font-size: 2rem;
    }
    
    .discount-message {
        font-size: 1.5rem;
    }
    
    .product-buy-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-offer {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}


/* Estilos adicionais para overlay dos cards */
.product-image-card {
    position: relative;
}

.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(233, 30, 99, 0.9), transparent);
    color: white;
    padding: 1.5rem;
    border-radius: 0 0 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-image-card:hover .product-card-overlay {
    transform: translateY(0);
}

.product-card-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.product-card-overlay p {
    font-size: 1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.products-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.products-footer p {
    font-size: 1.3rem;
    color: #666;
    margin: 0;
    font-weight: 600;
}

.thank-you-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.thank-you-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

/* Responsividade para overlay */
@media (max-width: 768px) {
    .product-card-overlay {
        position: static;
        transform: none;
        background: linear-gradient(45deg, rgba(233, 30, 99, 0.1), rgba(255, 107, 157, 0.1));
        color: #333;
        border-radius: 15px;
        margin-top: 1rem;
    }
    
    .product-card-overlay h3 {
        color: #e91e63;
        text-shadow: none;
    }
    
    .product-card-overlay p {
        color: #666;
        text-shadow: none;
    }
}

