* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #7E4A39 0%, #5d3428 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C6AE5B;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #C6AE5B;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #C6AE5B;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C6AE5B;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Carrossel melhorado */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slides img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
    transition: filter 0.3s ease;
}

.carousel-slides img:hover {
    filter: brightness(1) contrast(1.2);
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(126, 74, 57, 0.9), rgba(93, 52, 40, 0.9));
    color: white;
    border: none;
    padding: 1.2rem;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(198, 174, 91, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: linear-gradient(135deg, rgba(198, 174, 91, 0.9), rgba(184, 160, 73, 0.9));
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Indicadores de slide */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(198, 174, 91, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.indicator.active {
    background: #C6AE5B;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(198, 174, 91, 0.5);
}

.indicator:hover {
    background: rgba(198, 174, 91, 0.8);
    transform: scale(1.1);
}

/* Overlay gradiente */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(126, 74, 57, 0.15) 0%,
            transparent 30%,
            transparent 70%,
            rgba(198, 174, 91, 0.15) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Texto sobre o carrossel */
.carousel-content {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 15;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    max-width: 90%;
}

.carousel-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff, #C6AE5B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

/* Botão do carrossel */
.carousel-btn {
    display: inline-block;
    background: linear-gradient(135deg, #C6AE5B, #b8a049);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #b8a049, #a8944a);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Animação de entrada */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-content {
    animation: slideIn 1s ease 0.5s both;
}

/* Products Section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 3rem 0 2rem;
    color: #7E4A39;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #C6AE5B, #b8a049);
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #999;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.product-card:hover .product-image::before {
    transform: translateX(100%);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #7E4A39;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.product-info p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.view-details {
    background: linear-gradient(135deg, #7E4A39, #5d3428);
    color: white;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.view-details:hover {
    background: linear-gradient(135deg, #5d3428, #4a2a1f);
    transform: translateY(-2px);
}

/* About button */
.about-btn {
    display: inline-block;
    background: linear-gradient(135deg, #7E4A39, #5d3428);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-btn:hover {
    background: linear-gradient(135deg, #5d3428, #4a2a1f);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Categories */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.category-tab {
    background: white;
    border: 2px solid #C6AE5B;
    color: #7E4A39;
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.category-tab.active,
.category-tab:hover {
    background: #C6AE5B;
    color: white;
}

/* Modal Ampliado */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    backdrop-filter: blur(5px);
    padding: 1rem;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    width: 95%;
    max-width: 1400px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-header {
    background: linear-gradient(135deg, #7E4A39, #5d3428);
    color: white;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Carrossel de Mídia no Modal */
.modal-media-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.media-container {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.media-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-item:hover img,
.media-item:hover video {
    transform: scale(1.05);
}

/* Overlay de informações sobre a imagem/vídeo */
.media-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 10;
}

.media-item:hover .media-info-overlay {
    transform: translateY(0);
}

.media-info-overlay h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #C6AE5B;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.media-info-overlay p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Alternativa - overlay sempre visível em mobile */
@media (max-width: 768px) {
    .media-info-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        padding: 1.5rem 1rem 1rem;
    }
    
    .media-info-overlay h4 {
        font-size: 1.2rem;
    }
    
    .media-info-overlay p {
        font-size: 0.9rem;
    }
}

/* Controles do carrossel no modal */
.media-prev,
.media-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(126, 74, 57, 0.9);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.modal-media-carousel:hover .media-prev,
.modal-media-carousel:hover .media-next {
    opacity: 1;
}

.media-prev:hover,
.media-next:hover {
    background: rgba(198, 174, 91, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.media-prev {
    left: 15px;
}

.media-next {
    right: 15px;
}

/* Indicadores do carrossel no modal */
.media-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.media-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-indicator.active {
    background: #C6AE5B;
    border-color: white;
    transform: scale(1.2);
}

.media-indicator:hover {
    background: rgba(198, 174, 91, 0.8);
    transform: scale(1.1);
}

/* Container da descrição */
.modal-description-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-description-container p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
    text-align: justify;
}

/* Produtos relacionados no modal */
.related-products-section {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.related-products-section h4 {
    color: #7E4A39;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

#relatedProducts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

#relatedProducts .product-card {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

#relatedProducts .product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #7E4A39;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #7E4A39 0%, #5d3428 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #C6AE5B;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(198, 174, 91, 0.3);
    opacity: 0.8;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #C6AE5B;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: white;
    color: #C6AE5B;
    transform: translateY(-3px);
}

footer .social-links img {
    width: 100%;
    height: auto;
    opacity: 0.85;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

footer .social-links img:hover {
    transform: scale(1.15);
    opacity: 1;
}

/* Responsividade Melhorada */
@media (max-width: 1024px) {
    .carousel-content h1 {
        font-size: 3rem;
    }
    
    .carousel-content p {
        font-size: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .modal-content {
        width: 98%;
        max-width: none;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .modal-media-carousel {
        height: 400px;
    }

    .modal-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #7E4A39 0%, #5d3428 100%);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-carousel {
        height: 70vh;
        border-radius: 0 0 20px 20px;
    }

    .carousel-prev,
    .carousel-next {
        width: 50px;
        height: 50px;
        padding: 1rem;
        font-size: 1.4rem;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }

    .carousel-content {
        bottom: 60px;
        max-width: 95%;
        padding: 0 1rem;
    }

    .carousel-content h1 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }

    .carousel-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .carousel-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin: 2rem 0 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .category-tabs {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }

    .category-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .modal-content {
        margin: 0.5rem;
        width: calc(100% - 1rem);
        max-height: 98vh;
    }

    .modal-header {
        padding: 1.5rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.8rem;
    }

    .modal-body {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .modal-media-carousel {
        height: 300px;
    }

    .modal-description-container p {
        font-size: 1.1rem;
        text-align: left;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 1.2rem;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .about-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    #relatedProducts {
        grid-template-columns: 1fr;
    }

    .related-products-section h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 60vh;
    }

    .carousel-content {
        bottom: 40px;
        padding: 0 0.5rem;
    }

    .carousel-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .carousel-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .carousel-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .carousel-prev,
    .carousel-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 80px;
        height: 2px;
    }

    .category-tabs {
        gap: 0.5rem;
    }

    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .product-info p {
        font-size: 0.9rem;
    }

    .view-details {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .modal-content {
        margin: 0.25rem;
        width: calc(100% - 0.5rem);
        max-height: 99vh;
    }

    .modal-header {
        padding: 1rem 0.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1rem;
        gap: 1rem;
    }

    .modal-media-carousel {
        height: 250px;
    }

    .modal-description-container p {
        font-size: 1rem;
    }

    .close-modal {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .related-products-section h4 {
        font-size: 1.3rem;
    }

    .media-prev,
    .media-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .media-prev {
        left: 10px;
    }

    .media-next {
        right: 10px;
    }
}

/* Melhorias na acessibilidade e performance */
@media (prefers-reduced-motion: reduce) {
    .carousel-slides {
        transition: none;
    }
    
    .product-card,
    .carousel-btn,
    .category-tab,
    .media-container {
        transition: none;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Fade in animation para produtos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation para múltiplos cards */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* Estilos específicos para vídeos */
.media-item video {
    cursor: pointer;
}

.media-item video::-webkit-media-controls {
    display: none;
}

.media-item video::-webkit-media-controls-enclosure {
    display: none;
}

/* Play button overlay para vídeos */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(126, 74, 57, 0.9);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.video-play-overlay:hover {
    background: rgba(198, 174, 91, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-overlay::after {
    content: '▶';
    color: white;
    font-size: 2rem;
    margin-left: 3px;
}

/* Ocultar overlay quando vídeo está tocando */
.media-item.playing .video-play-overlay {
    display: none;
}

/* Custom scrollbar para modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #C6AE5B;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #b8a049;
}