/* CSS Atualizado para produtos com estilo similar aos serviços */

/* Seção de produtos */
.products {
    background-color: var(--light-gray);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Texto introdutório */
.products .about-text {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #4b395e;
}

/* Container de cards */
.product-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card de produto - TAMANHO REDUZIDO */
.product-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    width: 300px; /* Reduzido de 350px */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Imagem do produto - ALTURA REDUZIDA */
.product-img {
    width: 100%;
    height: 200px; /* Reduzido de 250px */
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: transform 0.5s ease;
}

/* Conteúdo do card - PADDING REDUZIDO */
.product-content {
    padding: 1.5rem 1.5rem 0.5rem; /* Reduzido de 2rem */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Título do produto - AJUSTADO PARA EVITAR CORTES */
.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-family: 'Fredoka', sans-serif;
    height: 3.6rem; /* Aumentado para permitir 3 linhas */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Aumentado para 3 linhas */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    box-orient: vertical;
}

/* Preço do produto - MARGENS REDUZIDAS */
.product-price {
    font-size: 1.2rem; /* Reduzido de 1.3rem */
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem; /* Reduzido de 1.5rem */
}

/* Botões na parte inferior do card - PADDING REDUZIDO */
.product-buttons {
    padding: 0 1.5rem 1.5rem; /* Reduzido de 0 2rem 2rem */
    display: flex;
    justify-content: center;
    gap: 0.7rem; /* Reduzido de 1rem */
}

/* Estilo dos botões - MAIS COMPACTOS */
.btn-details, .btn-buy {
    padding: 0.7rem 1.2rem; /* Reduzido de 0.8rem 1.5rem */
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.95rem; /* Reduzido de 1rem */
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-details {
    background-color: #f0e6f7;
    color: var(--primary);
    border: 1px solid #d2b7e5;
}

.btn-buy {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    display: inline-block;
}

.btn-details:hover {
    background-color: #e6d7f3;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-buy:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Destaque para produto popular */
.product-card::before {
    content: "";
    display: none;
}

.product-card#produto1::before {
    content: "Mais Popular";
    position: absolute;
    top: 15px; /* Reduzido de 20px */
    right: -25px; /* Reduzido de -30px */
    background-color: var(--accent);
    color: var(--primary);
    font-size: 0.75rem; /* Reduzido de 0.8rem */
    font-weight: 600;
    padding: 0.3rem 1.5rem; /* Reduzido de 0.3rem 2rem */
    transform: rotate(45deg);
    z-index: 1;
    display: block;
}

/* Modal estilizado com galeria */
.modal {
    display: none; /* Começa escondida */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    
    /* Centralizar o conteúdo */
    justify-content: center;
    align-items: center;
}

/* Quando o JS abrir a modal, ela usará display: flex */
.modal[style*="display: flex"] {
    display: flex !important;
}

.modal-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    max-width: 700px; /* Aumentado para acomodar a galeria */
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalAppear 0.3s ease-out;
    max-height: 85vh;
    overflow-y: auto;
}

/* Estilos para a galeria de imagens */
.modal-gallery {
    margin-bottom: 2rem;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.8rem;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.gallery-thumbnail:hover {
    transform: translateY(-3px);
}

.gallery-thumbnail.active {
    border-color: var(--primary);
}

/* Controles da galeria */
.gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    color: var(--primary);
}

.gallery-control:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.gallery-control.prev {
    left: 10px;
}

.gallery-control.next {
    right: 10px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);
    transition: color 0.3s ease;
    z-index: 2;
}

.close-btn:hover {
    color: var(--secondary);
}

.modal-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4b395e;
    text-align: left;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elementos decorativos - MAIS SUTIS */
.floating-fruits {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.fruit {
    position: absolute;
    opacity: 0.3; /* Reduzido de 0.4 */
}

/* Frutas reposicionadas */
.apple {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #E74C3C;
    top: 10%; /* Ajustado de 15% */
    left: 5%; /* Ajustado de 8% */
    animation: float 8s infinite ease-in-out;
}

.banana {
    width: 40px;
    height: 20px;
    background-color: #F1C40F;
    border-radius: 20px;
    top: 35%; /* Ajustado de 40% */
    right: 5%; /* Ajustado de 10% */
    transform: rotate(45deg);
    animation: float 7s 1s infinite ease-in-out;
}

.carrot {
    width: 10px;
    height: 30px;
    background-color: #E67E22;
    border-radius: 5px;
    top: 70%; /* Ajustado de 60% */
    left: 8%; /* Ajustado de 15% */
    animation: float 9s 2s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Estilos para os controles de paginação */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 1rem;
}

/* Botões de navegação */
.pagination-button {
    background-color: #f0e6f7;
    border: 1px solid #d2b7e5;
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-button:hover:not(:disabled) {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pagination-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Informação da página atual */
.pagination-info {
    font-size: 0.95rem;
    color: #4b395e;
    font-weight: 500;
    min-width: 100px;
    text-align: center;
}

/* Responsividade - AJUSTES PARA MOBILE */
@media (max-width: 768px) {
    .product-card {
        width: 100%;
        max-width: 280px; /* Reduzido de 340px */
    }
    
    .product-img {
        height: 180px; /* Reduzido para mobile */
    }
    
    .product-buttons {
        flex-direction: column;
        gap: 0.5rem; /* Reduzido de 0.8rem */
    }
    
    .btn-details, .btn-buy {
        width: 100%;
    }
    
    .modal-content {
        padding: 2rem;
        width: 95%;
    }
    
    .pagination-controls {
        margin-top: 2rem;
    }
    
    .pagination-button {
        width: 35px;
        height: 35px;
    }
    
    .pagination-info {
        font-size: 0.85rem;
        min-width: 80px;
    }
}