@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5dc; /* Beige suave */
    color: #333;
}

/* HEADER */
header {
    background: #003366; /* Azul oscuro */
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 26px;
    font-weight: bold;
}

/* CONTAINER DO PRODUTO */
.produto-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LAYOUT FLEXÍVEL */
.produto-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* IMAGEM COM EFEITO DIFERENCIADO */
.produto-imagem {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.produto-imagem:hover {
    transform: scale(1.05);
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INFORMAÇÕES DO PRODUTO */
.produto-info {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

/* DESCRIÇÃO INTRODUTÓRIA */
.descricao-intro {
    font-size: 20px;
    font-weight: 600;
    color: #003366;
    background: #f9f3eb;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* LINHA DIVISÓRIA ENTRE OS TÓPICOS */
.divisor {
    border: none;
    height: 2px;
    background: #ffcc00;
    margin: 20px 0;
}

/* TÍTULOS */
.produto-info h2 {
    font-size: 26px;
    color: #003366;
    margin-top: 20px;
    padding-left: 10px;
    border-left: 5px solid #ffcc00;
}

/* PARÁGRAFOS */
.produto-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* LISTA DE BENEFÍCIOS */
.produto-info ul {
    list-style: none;
    padding: 0;
}

.produto-info ul li {
    font-size: 18px;
    background: url('images/check-icon.png') no-repeat left center;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #003366;
}

/* LINK PARA QUEIJOS VEGANOS */
.link {
    color: #ffcc00;
    font-weight: bold;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* BOTÃO */
.btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 25px;
    background: #ffcc00;
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.btn:hover {
    background: #e6b800;
    transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    header {
        padding: 5px; /* Reduz o padding do cabeçalho */
        font-size: 20px; /* Reduz o tamanho da fonte do cabeçalho */
    }

    .produto-imagem {
        width: 100%; /* Ajusta a largura da imagem para 100% */
        height: auto; /* Mantém a proporção da imagem */
    }

    .produto-info {
        padding: 0 15px;
    }

    .produto-info h2 {
        font-size: 22px; /* Reduz o tamanho da fonte do título */
        text-align: center;
    }

    .produto-info p {
        font-size: 16px; /* Reduz o tamanho da fonte do parágrafo */
    }

    .produto-info ul li {
        font-size: 16px; /* Reduz o tamanho da fonte da lista */
    }

    .btn {
        font-size: 16px; /* Reduz o tamanho do botão */
        padding: 10px 15px; /* Ajusta o padding do botão */
    }
}